diff --git a/src/main/java/org/ohdsi/webapi/FlywayConfig.java b/src/main/java/org/ohdsi/webapi/FlywayConfig.java index 8c31e24318..e4523178c3 100644 --- a/src/main/java/org/ohdsi/webapi/FlywayConfig.java +++ b/src/main/java/org/ohdsi/webapi/FlywayConfig.java @@ -4,6 +4,7 @@ import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.boot.autoconfigure.flyway.FlywayConfigurationCustomizer; import org.springframework.boot.autoconfigure.flyway.FlywayDataSource; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.Bean; diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java deleted file mode 100644 index 422daa9f14..0000000000 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_6_0_20180807192421__cohortDetailsHashcodes.java +++ /dev/null @@ -1,29 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.fasterxml.jackson.core.JsonProcessingException; -import org.ohdsi.webapi.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import java.util.List; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetails; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetailsRepository; - -/** - * Flyway Java migration to update hash codes for cohort definition details. - * - * Note: NOT a @Component - Flyway discovers this via classpath scanning. - * Dependencies are retrieved from ApplicationContext to avoid circular dependency issues. - */ -public class V2_6_0_20180807192421__cohortDetailsHashcodes extends ApplicationContextAwareSpringMigration { - - @Override - public void migrate() throws JsonProcessingException { - // Get repository from Spring ApplicationContext (set by Flyway before migration runs) - CohortDefinitionDetailsRepository detailsRepository = - applicationContext.getBean(CohortDefinitionDetailsRepository.class); - - final List allDetails = detailsRepository.findAll(); - for (CohortDefinitionDetails details: allDetails) { - details.updateHashCode(); - detailsRepository.save(details); - } - } -} \ No newline at end of file diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java deleted file mode 100644 index bc29310f52..0000000000 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190410103000__migratePathwayResults.java +++ /dev/null @@ -1,181 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import com.fasterxml.jackson.core.JsonProcessingException; -import org.ohdsi.webapi.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Comparator; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; -import org.json.JSONObject; -import org.ohdsi.circe.helper.ResourceHelper; -import org.ohdsi.sql.SqlRender; -import org.ohdsi.sql.SqlSplit; -import org.ohdsi.sql.SqlTranslate; -import org.ohdsi.webapi.service.AbstractDaoService; -import org.ohdsi.webapi.source.Source; -import org.ohdsi.webapi.source.SourceDaimon; -import org.ohdsi.webapi.source.SourceRepository; -import org.ohdsi.webapi.util.CancelableJdbcTemplate; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.core.env.Environment; -import org.springframework.jdbc.core.PreparedStatementCreator; -import org.springframework.stereotype.Component; -import org.springframework.stereotype.Service; - -import static org.ohdsi.webapi.Constants.Params.GENERATION_ID; - -/** - * Flyway Java migration to migrate pathway analysis results. - * - * Note: NOT a @Component - Flyway discovers this via classpath scanning. - * Dependencies are retrieved from ApplicationContext to avoid circular dependency issues. - */ -public class V2_8_0_20190410103000__migratePathwayResults extends ApplicationContextAwareSpringMigration { - - private final static String SQL_PATH = "/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/"; - private static final Logger log = LoggerFactory.getLogger(V2_8_0_20190410103000__migratePathwayResults.class); - - @Service - public static class MigrationDAO extends AbstractDaoService { - - public void savePathwayCodes(List pathwayCodes, Source source, CancelableJdbcTemplate jdbcTemplate) { - String resultsSchema = source.getTableQualifier(SourceDaimon.DaimonType.Results); - String[] params; - String[] values; - - List creators = new ArrayList<>(); - - // clear existing results to prevent double-inserts - params = new String[]{"results_schema"}; - values = new String[]{resultsSchema}; - - // delete only codes that belongs current Atlas instance - List executionIdAndCodes = pathwayCodes.stream().map(v -> new Object[]{ v[0], v[1] }).collect(Collectors.toList()); - String deleteSql = SqlRender.renderSql("DELETE FROM @results_schema.pathway_analysis_codes WHERE pathway_analysis_generation_id = ? AND code = ?", params, values); - String translatedSql = SqlTranslate.translateSingleStatementSql(deleteSql, source.getSourceDialect()); - jdbcTemplate.batchUpdate(translatedSql, executionIdAndCodes); - - String saveCodesSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "saveCodes.sql"), params, values); - saveCodesSql = SqlTranslate.translateSingleStatementSql(saveCodesSql, source.getSourceDialect()); - jdbcTemplate.batchUpdate(saveCodesSql, pathwayCodes); - } - } - - private static class EventCohort { - - public int cohortId; - public String name; - } - - @Override - public void migrate() throws JsonProcessingException { - // Get beans from Spring ApplicationContext (set by Flyway before migration runs) - SourceRepository sourceRepository = applicationContext.getBean(SourceRepository.class); - MigrationDAO migrationDAO = applicationContext.getBean(MigrationDAO.class); - Environment env = applicationContext.getBean(Environment.class); - - String webAPISchema = env.getProperty("spring.jpa.properties.hibernate.default_schema"); - - sourceRepository.findAll().forEach(source -> { - try { - - String[] params; - String[] values; - String translatedSql; - String resultsSchema = source.getTableQualifierOrNull(SourceDaimon.DaimonType.Results); - - if (resultsSchema == null) { - return; // no results in this source - } - - CancelableJdbcTemplate jdbcTemplate = migrationDAO.getSourceJdbcTemplate(source); - - // step 1: ensure tables are created and have correct columns - params = new String[]{"results_schema"}; - values = new String[]{source.getTableQualifier(SourceDaimon.DaimonType.Results)}; - String ensureTablesSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "ensureTables.sql"), params, values); - translatedSql = SqlTranslate.translateSql(ensureTablesSql, source.getSourceDialect()); - Arrays.asList(SqlSplit.splitSql(translatedSql)).forEach(jdbcTemplate::execute); - - // step 2: populate pathway_analysis_paths - params = new String[]{"results_schema"}; - values = new String[]{source.getTableQualifier(SourceDaimon.DaimonType.Results)}; - String savePathwaysSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "migratePathwayResults.sql"), params, values); - - translatedSql = SqlTranslate.translateSql(savePathwaysSql, source.getSourceDialect()); - Arrays.asList(SqlSplit.splitSql(translatedSql)).forEach(jdbcTemplate::execute); - - // step 3: populate pathway_analysis_codes from each generated design for the given source - // load the generated designs - params = new String[]{"webapi_schema", "source_id"}; - values = new String[]{webAPISchema, Integer.toString(source.getSourceId())}; - String generatedDesignSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getPathwayGeneratedDesigns.sql"), params, values); - translatedSql = SqlTranslate.translateSingleStatementSql(generatedDesignSql, migrationDAO.getDialect()); - - Map> designEventCohorts = migrationDAO.getJdbcTemplate().query(translatedSql, rs -> { - Map> result = new HashMap<>(); - while (rs.next()) { - String design = rs.getString("design"); - JSONObject jsonObject = new JSONObject(design); - // parse design and fetch list of event cohorts - List eventCohorts = jsonObject.getJSONArray("eventCohorts").toList() - .stream().map(obj -> { - Map ecJson = (Map) obj; - EventCohort c = new EventCohort(); - c.name = String.valueOf(ecJson.get("name")); - return c; - }) - .sorted(Comparator.comparing(d -> d.name)) - .collect(Collectors.toList()); - - int index = 0; - for (EventCohort ec : eventCohorts) { - ec.cohortId = (int) Math.pow(2, index++); // assign each cohort an ID based on their name-sort order, as a power of 2 - } - result.put(rs.getLong(GENERATION_ID), eventCohorts); - } - return result; - }); - - //fetch the distinct generation_id, combo_id from the source - params = new String[]{"results_schema"}; - values = new String[]{resultsSchema}; - String distinctGenerationComboIdsSql = SqlRender.renderSql(ResourceHelper.GetResourceAsString(SQL_PATH + "getPathwayGeneratedCodes.sql"), params, values); - translatedSql = SqlTranslate.translateSingleStatementSql(distinctGenerationComboIdsSql, source.getSourceDialect()); - - // retrieve list of generation-comboId-Name-isCombo values - List generatedComboNames = jdbcTemplate.query(translatedSql, (rs) -> { - // values of String[] are: "generation_id", "code", "name", "is_combo" - List result = new ArrayList<>(); - - while (rs.next()) { - Long generationId = rs.getLong("pathway_analysis_generation_id"); - Long comboId = rs.getLong("combo_id"); - - if (!designEventCohorts.containsKey(generationId)) { - continue; // skip this record, since we do not have a design for it - } - List eventCohorts = designEventCohorts.get(generationId); - List comboCohorts = eventCohorts.stream().filter(ec -> (ec.cohortId & comboId) > 0).collect(Collectors.toList()); - String names = comboCohorts.stream() - .map(c -> c.name) - .collect(Collectors.joining(",")); - result.add(new Object[]{generationId, comboId, names, comboCohorts.size() > 1 ? 1 : 0}); - } - return result; - }); - - migrationDAO.savePathwayCodes(generatedComboNames, source, jdbcTemplate); - - } - catch(Exception e) { - log.error(String.format("Failed to migration pathways for source: %s (%s)", source.getSourceName(), source.getSourceKey())); - } - }); - } -} diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java deleted file mode 100644 index 25e269f371..0000000000 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20190520171430__cohortExpressionHashCode.java +++ /dev/null @@ -1,34 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import org.ohdsi.webapi.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import org.ohdsi.analysis.Utils; -import org.ohdsi.circe.cohortdefinition.CohortExpression; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetails; -import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetailsRepository; - -import java.util.List; - -/** - * Flyway Java migration to update cohort expression hash codes. - * - * Note: NOT a @Component - Flyway discovers this via classpath scanning. - * Dependencies are retrieved from ApplicationContext to avoid circular dependency issues. - */ -public class V2_8_0_20190520171430__cohortExpressionHashCode extends ApplicationContextAwareSpringMigration { - - @Override - public void migrate() throws Exception { - // Get repository from Spring ApplicationContext (set by Flyway before migration runs) - CohortDefinitionDetailsRepository detailsRepository = - applicationContext.getBean(CohortDefinitionDetailsRepository.class); - - List allDetails = detailsRepository.findAll(); - for (CohortDefinitionDetails details: allDetails) { - //after deserialization the field "cdmVersionRange" is added and default value for it is set - CohortExpression expression = Utils.deserialize(details.getExpression(), CohortExpression.class); - details.setExpression(Utils.serialize(expression)); - details.updateHashCode(); - detailsRepository.save(details); - } - } -} diff --git a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java b/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java deleted file mode 100644 index c1fde9fbc6..0000000000 --- a/src/main/java/org/ohdsi/webapi/db/migartion/V2_8_0_20191106092815__migrateEventFAType.java +++ /dev/null @@ -1,70 +0,0 @@ -package org.ohdsi.webapi.db.migartion; - -import org.ohdsi.webapi.arachne.commons.config.flyway.ApplicationContextAwareSpringMigration; -import org.ohdsi.circe.helper.ResourceHelper; -import org.ohdsi.sql.SqlRender; -import org.ohdsi.sql.SqlSplit; -import org.ohdsi.webapi.service.AbstractDaoService; -import org.ohdsi.webapi.source.Source; -import org.ohdsi.webapi.source.SourceDaimon; -import org.ohdsi.webapi.source.SourceRepository; -import org.ohdsi.webapi.util.CancelableJdbcTemplate; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.stereotype.Service; - -import java.util.List; - -/** - * Flyway Java migration to migrate event FA type. - * - * Note: NOT a @Component - Flyway discovers this via classpath scanning. - * Dependencies are retrieved from ApplicationContext to avoid circular dependency issues. - */ -public class V2_8_0_20191106092815__migrateEventFAType extends ApplicationContextAwareSpringMigration { - private final static String UPDATE_VALUE_SQL = ResourceHelper.GetResourceAsString( - "/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaType.sql"); - private final static String UPDATE_VALUE_IMPALA_SQL = ResourceHelper.GetResourceAsString( - "/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaTypeImpala.sql"); - private static final Logger log = LoggerFactory.getLogger(V2_8_0_20191106092815__migrateEventFAType.class); - - @Override - public void migrate() throws Exception { - // Get beans from Spring ApplicationContext (set by Flyway before migration runs) - SourceRepository sourceRepository = applicationContext.getBean(SourceRepository.class); - MigrationDAO migrationDAO = applicationContext.getBean(MigrationDAO.class); - - List sources = sourceRepository.findAll(); - sources.stream() - .filter(source -> source.getTableQualifierOrNull(SourceDaimon.DaimonType.Results) != null) - .forEach(source -> { - try { - CancelableJdbcTemplate jdbcTemplate = migrationDAO.getSourceJdbcTemplate(source); - - migrationDAO.updateColumnValue(source, jdbcTemplate); - } catch (Exception e) { - log.error(String.format("Failed to update fa type value for source: %s (%s)", source.getSourceName(), source.getSourceKey())); - throw e; - } - }); - } - - @Service - public static class MigrationDAO extends AbstractDaoService { - public void updateColumnValue(Source source, CancelableJdbcTemplate jdbcTemplate) { - String resultsSchema = source.getTableQualifier(SourceDaimon.DaimonType.Results); - String[] params = new String[]{"results_schema"}; - String[] values = new String[]{resultsSchema}; - String translatedSql; - // Impala can't update non-kudu tables, so use special script with temp table - if (Source.IMPALA_DATASOURCE.equals(source.getSourceDialect())) { - translatedSql = SqlRender.renderSql(UPDATE_VALUE_IMPALA_SQL, params, values); - } else { - translatedSql = SqlRender.renderSql(UPDATE_VALUE_SQL, params, values); - } - for (String sql: SqlSplit.splitSql(translatedSql)) { - jdbcTemplate.execute(sql); - } - } - } -} diff --git a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/deleteFile.sql b/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/deleteFile.sql deleted file mode 100644 index b122874983..0000000000 --- a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/deleteFile.sql +++ /dev/null @@ -1,2 +0,0 @@ -delete from @webapi_schema.output_files -where id = ?; \ No newline at end of file diff --git a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/deleteFileContent.sql b/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/deleteFileContent.sql deleted file mode 100644 index 802fa86198..0000000000 --- a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/deleteFileContent.sql +++ /dev/null @@ -1,2 +0,0 @@ -delete from @webapi_schema.output_file_contents -where output_file_id = ?; \ No newline at end of file diff --git a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getOutputFileContent.sql b/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getOutputFileContent.sql deleted file mode 100644 index 981beebed7..0000000000 --- a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getOutputFileContent.sql +++ /dev/null @@ -1,6 +0,0 @@ -select - file_contents -from - @webapi_schema.output_file_contents -where - output_file_id = @id; diff --git a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getOutputFilesData.sql b/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getOutputFilesData.sql deleted file mode 100644 index bed2614bfd..0000000000 --- a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getOutputFilesData.sql +++ /dev/null @@ -1,6 +0,0 @@ -select - id, - file_name, - execution_id -from - @webapi_schema.output_files; diff --git a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getSourceData.sql b/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getSourceData.sql deleted file mode 100644 index 9a3a37de5e..0000000000 --- a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/getSourceData.sql +++ /dev/null @@ -1,25 +0,0 @@ -select - s.source_name, - out.execution_id -from - @webapi_schema.estimation_analysis_generation gen -inner join @webapi_schema.output_files out on - gen.analysis_execution_id = out.execution_id -inner join @webapi_schema.source s on - s.source_id = gen.source_id -group by - s.source_name, - out.execution_id -union -select - s.source_name, - out.execution_id -from - @webapi_schema.prediction_analysis_generation gen -inner join @webapi_schema.output_files out on - gen.analysis_execution_id = out.execution_id -inner join @webapi_schema.source s on - s.source_id = gen.source_id -group by - s.source_name, - out.execution_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/updateFileContent.sql b/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/updateFileContent.sql deleted file mode 100644 index 65bd6f3491..0000000000 --- a/src/main/resources/db/migration/java/V2_7_2_20190515164044__hideSensitiveInfo/updateFileContent.sql +++ /dev/null @@ -1,3 +0,0 @@ -update @webapi_schema.output_file_contents -set file_contents = ? -where output_file_id = ?; \ No newline at end of file diff --git a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/ensureTables.sql b/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/ensureTables.sql deleted file mode 100644 index 782c4f1d00..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/ensureTables.sql +++ /dev/null @@ -1,32 +0,0 @@ -IF OBJECT_ID('@results_schema.pathway_analysis_codes', 'U') IS NULL -CREATE TABLE @results_schema.pathway_analysis_codes -( - pathway_analysis_generation_id BIGINT NOT NULL, - code BIGINT NOT NULL, - name VARCHAR(2000) NOT NULL, - is_combo int NOT NULL -); - -IF OBJECT_ID('@results_schema.pathway_analysis_paths', 'U') IS NULL -CREATE TABLE @results_schema.pathway_analysis_paths -( - pathway_analysis_generation_id BIGINT NOT NULL, - target_cohort_id INTEGER NOT NULL, - step_1 BIGINT, - step_2 BIGINT, - step_3 BIGINT, - step_4 BIGINT, - step_5 BIGINT, - step_6 BIGINT, - step_7 BIGINT, - step_8 BIGINT, - step_9 BIGINT, - step_10 BIGINT, - count_value BIGINT NOT NULL -); - --- verify tables exist in the correct structure -select pathway_analysis_generation_id, code, name, is_combo from @results_schema.pathway_analysis_codes WHERE 0 = 1; - -select pathway_analysis_generation_id, target_cohort_id, step_1, step_2, step_3, step_4, step_5, step_6, step_7, step_8, step_9, step_10, count_value -FROM @results_schema.pathway_analysis_paths where 0=1; diff --git a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/getPathwayGeneratedCodes.sql b/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/getPathwayGeneratedCodes.sql deleted file mode 100644 index a42236931c..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/getPathwayGeneratedCodes.sql +++ /dev/null @@ -1 +0,0 @@ -select distinct pathway_analysis_generation_id, combo_id from @results_schema.pathway_analysis_events; diff --git a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/getPathwayGeneratedDesigns.sql b/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/getPathwayGeneratedDesigns.sql deleted file mode 100644 index 2600997223..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/getPathwayGeneratedDesigns.sql +++ /dev/null @@ -1,5 +0,0 @@ -select pg.id as generation_id, ag.design -from @webapi_schema.pathway_analysis_generation pg -join @webapi_schema.analysis_generation_info ag on pg.id = ag.job_execution_id -where status = 'COMPLETED' - and source_id = @source_id; diff --git a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/migratePathwayResults.sql b/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/migratePathwayResults.sql deleted file mode 100644 index 7775953a9d..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/migratePathwayResults.sql +++ /dev/null @@ -1,25 +0,0 @@ -TRUNCATE TABLE @results_schema.pathway_analysis_paths; - -INSERT INTO @results_schema.pathway_analysis_paths (pathway_analysis_generation_id, target_cohort_id, step_1, step_2, step_3, step_4, step_5, step_6, step_7, step_8, step_9, step_10, count_value) -select pathway_analysis_generation_id, target_cohort_id, - step_1, step_2, step_3, step_4, step_5, step_6, step_7, step_8, step_9, step_10, - count_big(subject_id) as count_value -from -( - select e.pathway_analysis_generation_id, e.target_cohort_id, e.subject_id, - MAX(case when ordinal = 1 then combo_id end) as step_1, - MAX(case when ordinal = 2 then combo_id end) as step_2, - MAX(case when ordinal = 3 then combo_id end) as step_3, - MAX(case when ordinal = 4 then combo_id end) as step_4, - MAX(case when ordinal = 5 then combo_id end) as step_5, - MAX(case when ordinal = 6 then combo_id end) as step_6, - MAX(case when ordinal = 7 then combo_id end) as step_7, - MAX(case when ordinal = 8 then combo_id end) as step_8, - MAX(case when ordinal = 9 then combo_id end) as step_9, - MAX(case when ordinal = 10 then combo_id end) as step_10 - from @results_schema.pathway_analysis_events e - GROUP BY e.pathway_analysis_generation_id, e.target_cohort_id, e.subject_id -) t1 -group by pathway_analysis_generation_id, target_cohort_id, - step_1, step_2, step_3, step_4, step_5, step_6, step_7, step_8, step_9, step_10 -; diff --git a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/saveCodes.sql b/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/saveCodes.sql deleted file mode 100644 index f135c04872..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20190410103000__migratePathwayResults/saveCodes.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO @results_schema.pathway_analysis_codes (pathway_analysis_generation_id, code, name, is_combo) -SELECT ? as pathway_analysis_generation_id,? as code, CAST(? AS VARCHAR(2000)) as name,? as is_combo; \ No newline at end of file diff --git a/src/main/resources/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaType.sql b/src/main/resources/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaType.sql deleted file mode 100644 index 44c6b53b8d..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaType.sql +++ /dev/null @@ -1,3 +0,0 @@ -UPDATE @results_schema.cc_results -SET fa_type = 'CRITERIA_SET' -WHERE fa_type = 'CRITERIA'; diff --git a/src/main/resources/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaTypeImpala.sql b/src/main/resources/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaTypeImpala.sql deleted file mode 100644 index 5664358e6a..0000000000 --- a/src/main/resources/db/migration/java/V2_8_0_20191106092815__migrateEventFAType/updateFaTypeImpala.sql +++ /dev/null @@ -1,8 +0,0 @@ -CREATE TABLE @results_schema.cc_results_temp LIKE @results_schema.cc_results; - -INSERT INTO TABLE @results_schema.cc_results_temp SELECT type, cast(case fa_type when 'CRITERIA' then 'CRITERIA_SET' else fa_type end as VARCHAR(255)), cc_generation_id, analysis_id, analysis_name, covariate_id, covariate_name, strata_id, strata_name, time_window, concept_id, count_value, avg_value, stdev_value, min_value, p10_value, p25_value, median_value, p75_value, p90_value, max_value, cohort_definition_id -FROM @results_schema.cc_results; - -DROP TABLE @results_schema.cc_results; - -ALTER TABLE @results_schema.cc_results_temp RENAME TO @results_schema.cc_results; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.1__schema-create_spring_batch.sql b/src/main/resources/db/migration/oracle/V1.0.0.1__schema-create_spring_batch.sql deleted file mode 100644 index a5b8ce285f..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.1__schema-create_spring_batch.sql +++ /dev/null @@ -1,79 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE ( - JOB_INSTANCE_ID NUMBER(19,0) NOT NULL PRIMARY KEY , - VERSION NUMBER(19,0) , - JOB_NAME VARCHAR2(100) NOT NULL, - JOB_KEY VARCHAR2(32) NOT NULL, - constraint JOB_INST_UN unique (JOB_NAME, JOB_KEY) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( - JOB_EXECUTION_ID NUMBER(19,0) NOT NULL PRIMARY KEY , - VERSION NUMBER(19,0) , - JOB_INSTANCE_ID NUMBER(19,0) NOT NULL, - CREATE_TIME TIMESTAMP NOT NULL, - START_TIME TIMESTAMP DEFAULT NULL , - END_TIME TIMESTAMP DEFAULT NULL , - STATUS VARCHAR2(10) , - EXIT_CODE VARCHAR2(2500) , - EXIT_MESSAGE VARCHAR2(2500) , - LAST_UPDATED TIMESTAMP, - JOB_CONFIGURATION_LOCATION VARCHAR(2500) NULL, - constraint JOB_INST_EXEC_FK foreign key (JOB_INSTANCE_ID) - references BATCH_JOB_INSTANCE(JOB_INSTANCE_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( - JOB_EXECUTION_ID NUMBER(19,0) NOT NULL , - TYPE_CD VARCHAR2(6) NOT NULL , - KEY_NAME VARCHAR2(100) NOT NULL , - STRING_VAL VARCHAR2(250) , - DATE_VAL TIMESTAMP DEFAULT NULL , - LONG_VAL NUMBER(19,0) , - DOUBLE_VAL NUMBER , - IDENTIFYING CHAR(1) NOT NULL , - constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID) - references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( - STEP_EXECUTION_ID NUMBER(19,0) NOT NULL PRIMARY KEY , - VERSION NUMBER(19,0) NOT NULL, - STEP_NAME VARCHAR2(100) NOT NULL, - JOB_EXECUTION_ID NUMBER(19,0) NOT NULL, - START_TIME TIMESTAMP NOT NULL , - END_TIME TIMESTAMP DEFAULT NULL , - STATUS VARCHAR2(10) , - COMMIT_COUNT NUMBER(19,0) , - READ_COUNT NUMBER(19,0) , - FILTER_COUNT NUMBER(19,0) , - WRITE_COUNT NUMBER(19,0) , - READ_SKIP_COUNT NUMBER(19,0) , - WRITE_SKIP_COUNT NUMBER(19,0) , - PROCESS_SKIP_COUNT NUMBER(19,0) , - ROLLBACK_COUNT NUMBER(19,0) , - EXIT_CODE VARCHAR2(2500) , - EXIT_MESSAGE VARCHAR2(2500) , - LAST_UPDATED TIMESTAMP, - constraint JOB_EXEC_STEP_FK foreign key (JOB_EXECUTION_ID) - references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( - STEP_EXECUTION_ID NUMBER(19,0) NOT NULL PRIMARY KEY, - SHORT_CONTEXT VARCHAR2(2500) NOT NULL, - SERIALIZED_CONTEXT CLOB , - constraint STEP_EXEC_CTX_FK foreign key (STEP_EXECUTION_ID) - references BATCH_STEP_EXECUTION(STEP_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( - JOB_EXECUTION_ID NUMBER(19,0) NOT NULL PRIMARY KEY, - SHORT_CONTEXT VARCHAR2(2500) NOT NULL, - SERIALIZED_CONTEXT CLOB , - constraint JOB_EXEC_CTX_FK foreign key (JOB_EXECUTION_ID) - references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE SEQUENCE ${ohdsiSchema}.BATCH_STEP_EXECUTION_SEQ START WITH 1 MINVALUE 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE SEQUENCE ${ohdsiSchema}.BATCH_JOB_EXECUTION_SEQ START WITH 1 MINVALUE 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE SEQUENCE ${ohdsiSchema}.BATCH_JOB_SEQ START WITH 1 MINVALUE 1 MAXVALUE 9223372036854775807 NOCYCLE; diff --git a/src/main/resources/db/migration/oracle/V1.0.0.2__schema-create_jpa.sql b/src/main/resources/db/migration/oracle/V1.0.0.2__schema-create_jpa.sql deleted file mode 100644 index 135074415a..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.2__schema-create_jpa.sql +++ /dev/null @@ -1,8 +0,0 @@ ---Needed for JPA/hibernate -CREATE SEQUENCE ${ohdsiSchema}.HIBERNATE_SEQUENCE START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 NOCYCLE; - ---Example -CREATE TABLE ${ohdsiSchema}.EXAMPLEAPP_WIDGET ( - ID NUMBER(19,0) NOT NULL PRIMARY KEY , - NAME VARCHAR2(50) -); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.3.1__cohort_generation.sql b/src/main/resources/db/migration/oracle/V1.0.0.3.1__cohort_generation.sql deleted file mode 100644 index 14d2b9cccf..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.3.1__cohort_generation.sql +++ /dev/null @@ -1,22 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - DROP CONSTRAINT FK_cdd_cd -; - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - ADD CONSTRAINT FK_cdd_cd - FOREIGN KEY ( id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) - ON DELETE CASCADE -; - -CREATE TABLE ${ohdsiSchema}.cohort_generation_info( - id Number(10) NOT NULL, - start_time Timestamp(3) NOT NULL, - execution_duration Number(10) NULL, - status Number(10) NOT NULL, - is_valid Number(1) NOT NULL, - CONSTRAINT PK_cohort_generation_info PRIMARY KEY ( id), - CONSTRAINT FK_cgi_cd FOREIGN KEY(id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) - ON DELETE CASCADE -); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.3.2__alter_foreign_keys.sql b/src/main/resources/db/migration/oracle/V1.0.0.3.2__alter_foreign_keys.sql deleted file mode 100644 index 1efe86c082..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.3.2__alter_foreign_keys.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - DROP CONSTRAINT FK_cdd_cd -; - -ALTER TABLE cohort_definition_details - ADD CONSTRAINT FK_cdd_cd - FOREIGN KEY ( id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.3__cohort_definition_persistence.sql b/src/main/resources/db/migration/oracle/V1.0.0.3__cohort_definition_persistence.sql deleted file mode 100644 index b0dce5f200..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.3__cohort_definition_persistence.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_definition( - id Number(10) NOT NULL , - name Varchar2(255) NOT NULL, - description Varchar2(1000) NULL, - expression_type Varchar2(50) NULL, - created_by Varchar2(255) NULL, - created_date Timestamp(3) NULL, - modified_by Varchar2(255) NULL, - modified_date Timestamp(3) NULL, - CONSTRAINT PK_cohort_definition PRIMARY KEY (id) -); - -CREATE TABLE ${ohdsiSchema}.cohort_definition_details( - id Number(10), - expression CLOB NOT NULL, - CONSTRAINT PK_cohort_def_details PRIMARY KEY (id), - CONSTRAINT FK_cdd_cd - FOREIGN KEY (id) - REFERENCES cohort_definition(id) -); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.4.1__heracles_heel.sql b/src/main/resources/db/migration/oracle/V1.0.0.4.1__heracles_heel.sql deleted file mode 100644 index b97721ce53..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.4.1__heracles_heel.sql +++ /dev/null @@ -1,6 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.HERACLES_HEEL_results -( -cohort_definition_id int, -analysis_id INT, -HERACLES_HEEL_warning VARCHAR(255) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.4.2__measurement_types.sql b/src/main/resources/db/migration/oracle/V1.0.0.4.2__measurement_types.sql deleted file mode 100644 index 0a74530db9..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.4.2__measurement_types.sql +++ /dev/null @@ -1,19 +0,0 @@ - -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1300,'Number of persons with at least one measurement occurrence, by measurement_concept_id','measurement_concept_id',null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1301,'Number of measurement occurrence records, by measurement_concept_id','measurement_concept_id',null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1302,'Number of persons by measurement occurrence start month, by measurement_concept_id','measurement_concept_id','calendar month',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1303,'Number of distinct measurement occurrence concepts per person',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1304,'Number of persons with at least one measurement occurrence, by measurement_concept_id by calendar year by gender by age decile','measurement_concept_id','calendar year','gender_concept_id','age decile',null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1305,'Number of measurement occurrence records, by measurement_concept_id by measurement_type_concept_id','measurement_concept_id','measurement_type_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1306,'Distribution of age by measurement_concept_id','measurement_concept_id','gender_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1307,'Number of measurement occurrence records, by measurement_concept_id and unit_concept_id','measurement_concept_id','unit_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1309,'Number of measurement records with invalid person_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1310,'Number of measurement records outside valid measurement period',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1312,'Number of measurement records with invalid provider_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1313,'Number of measurement records with invalid visit_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1314,'Number of measurement records with no value (numeric, string, or concept)',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1315,'Distribution of numeric values, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1316,'Distribution of low range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1317,'Distribution of high range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1318,'Number of measurement records below/within/above normal range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1320,'Number of measurement records by measurement start month','calendar month',null,null,null,null,'MEASUREMENT'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.4.3__heracles_index.sql b/src/main/resources/db/migration/oracle/V1.0.0.4.3__heracles_index.sql deleted file mode 100644 index 989c424a73..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.4.3__heracles_index.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE INDEX HRD_IDX_COHORT_DEF_ID - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id); -CREATE INDEX HRD_IDX_COHORT_ID_ANALYSIS_ID - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, analysis_id); -CREATE INDEX HRD_IDX_COHORT_DEF_ID_DT - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, last_update_time); -CREATE INDEX HRD_IDX_COHORT_ID_FIRST_RES - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, analysis_id, count_value, stratum_1); - -CREATE INDEX HR_IDX_COHORT_DEF_ID - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id); -CREATE INDEX HR_IDX_COHORT_ID_ANALYSIS_ID - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, analysis_id); -CREATE INDEX HR_IDX_COHORT_DEF_ID_DT - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, last_update_time); -CREATE INDEX HR_IDX_COHORT_ID_FIRST_RES - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, analysis_id, count_value, stratum_1); - -CREATE INDEX HH_IDX_COHORT_ID_ANALYSIS_ID -ON ${ohdsiSchema}.HERACLES_HEEL_RESULTS (cohort_definition_id, analysis_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.4__cohort_analysis_results.sql b/src/main/resources/db/migration/oracle/V1.0.0.4__cohort_analysis_results.sql deleted file mode 100644 index cd4d84f488..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.4__cohort_analysis_results.sql +++ /dev/null @@ -1,226 +0,0 @@ - -create table ${ohdsiSchema}.COHORT -( - COHORT_DEFINITION_ID int NOT NULL, - SUBJECT_ID NUMBER(19) NOT NULL, - cohort_start_date date NOT NULL, - cohort_end_date date NOT NULL -); - -create table ${ohdsiSchema}.heracles_analysis -( - analysis_id int, - analysis_name varchar(255), - stratum_1_name varchar(255), - stratum_2_name varchar(255), - stratum_3_name varchar(255), - stratum_4_name varchar(255), - stratum_5_name varchar(255), - analysis_type varchar(255) -); - -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (0,'Source name',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1,'Number of persons',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (2,'Number of persons by gender','gender_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (3,'Number of persons by year of birth','year_of_birth',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (4,'Number of persons by race','race_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (5,'Number of persons by ethnicity','ethnicity_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (7,'Number of persons with invalid provider_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (8,'Number of persons with invalid location_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (9,'Number of persons with invalid care_site_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (101,'Number of persons by age, with age at first observation period','age',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (102,'Number of persons by gender by age, with age at first observation period','gender_concept_id','age',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (103,'Distribution of age at first observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (104,'Distribution of age at first observation period by gender','gender_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (105,'Length of observation (days) of first observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (106,'Length of observation (days) of first observation period by gender','gender_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (107,'Length of observation (days) of first observation period by age decile','age decile',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (108,'Number of persons by length of observation period, in 30d increments','Observation period length 30d increments',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (109,'Number of persons with continuous observation in each year','calendar year',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (110,'Number of persons with continuous observation in each month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (111,'Number of persons by observation period start month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (112,'Number of persons by observation period end month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (113,'Number of persons by number of observation periods','number of observation periods',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (114,'Number of persons with observation period before year-of-birth',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (115,'Number of persons with observation period end < observation period start',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (116,'Number of persons with at least one day of observation in each year by gender and age decile','calendar year','gender_concept_id','age decile',null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (117,'Number of persons with at least one day of observation in each month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (200,'Number of persons with at least one visit occurrence, by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (201,'Number of visit occurrence records, by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (202,'Number of persons by visit occurrence start month, by visit_concept_id','visit_concept_id','calendar month',null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (203,'Number of distinct visit occurrence concepts per person',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (204,'Number of persons with at least one visit occurrence, by visit_concept_id by calendar year by gender by age decile','visit_concept_id','calendar year','gender_concept_id','age decile',null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (206,'Distribution of age by visit_concept_id','visit_concept_id','gender_concept_id',null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (207,'Number of visit records with invalid person_id',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (208,'Number of visit records outside valid observation period',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (209,'Number of visit records with end date < start date',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (210,'Number of visit records with invalid care_site_id',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (211,'Distribution of length of stay by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (220,'Number of visit occurrence records by visit occurrence start month','calendar month',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (400,'Number of persons with at least one condition occurrence, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (401,'Number of condition occurrence records, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (402,'Number of persons by condition occurrence start month, by condition_concept_id','condition_concept_id','calendar month',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (403,'Number of distinct condition occurrence concepts per person',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (404,'Number of persons with at least one condition occurrence, by condition_concept_id by calendar year by gender by age decile','condition_concept_id','calendar year','gender_concept_id','age decile',null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (405,'Number of condition occurrence records, by condition_concept_id by condition_type_concept_id','condition_concept_id','condition_type_concept_id',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (406,'Distribution of age by condition_concept_id','condition_concept_id','gender_concept_id',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (409,'Number of condition occurrence records with invalid person_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (410,'Number of condition occurrence records outside valid observation period',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (411,'Number of condition occurrence records with end date < start date',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (412,'Number of condition occurrence records with invalid provider_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (413,'Number of condition occurrence records with invalid visit_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (420,'Number of condition occurrence records by condition occurrence start month','calendar month',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (500,'Number of persons with death, by cause_of_death_concept_id','cause_of_death_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (501,'Number of records of death, by cause_of_death_concept_id','cause_of_death_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (502,'Number of persons by death month','calendar month',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (504,'Number of persons with a death, by calendar year by gender by age decile','calendar year','gender_concept_id','age decile',null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (505,'Number of death records, by death_type_concept_id','death_type_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (506,'Distribution of age at death by gender','gender_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (509,'Number of death records with invalid person_id',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (510,'Number of death records outside valid observation period',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (511,'Distribution of time from death to last condition',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (512,'Distribution of time from death to last drug',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (513,'Distribution of time from death to last visit',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (514,'Distribution of time from death to last procedure',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (515,'Distribution of time from death to last observation',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (600,'Number of persons with at least one procedure occurrence, by procedure_concept_id','procedure_concept_id',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (601,'Number of procedure occurrence records, by procedure_concept_id','procedure_concept_id',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (602,'Number of persons by procedure occurrence start month, by procedure_concept_id','procedure_concept_id','calendar month',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (603,'Number of distinct procedure occurrence concepts per person',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (604,'Number of persons with at least one procedure occurrence, by procedure_concept_id by calendar year by gender by age decile','procedure_concept_id','calendar year','gender_concept_id','age decile',null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (605,'Number of procedure occurrence records, by procedure_concept_id by procedure_type_concept_id','procedure_concept_id','procedure_type_concept_id',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (606,'Distribution of age by procedure_concept_id','procedure_concept_id','gender_concept_id',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (609,'Number of procedure occurrence records with invalid person_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (610,'Number of procedure occurrence records outside valid observation period',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (612,'Number of procedure occurrence records with invalid provider_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (613,'Number of procedure occurrence records with invalid visit_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (620,'Number of procedure occurrence records by procedure occurrence start month','calendar month',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (700,'Number of persons with at least one drug exposure, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (701,'Number of drug exposure records, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (702,'Number of persons by drug exposure start month, by drug_concept_id','drug_concept_id','calendar month',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (703,'Number of distinct drug exposure concepts per person',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (704,'Number of persons with at least one drug exposure, by drug_concept_id by calendar year by gender by age decile','drug_concept_id','calendar year','gender_concept_id','age decile',null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (705,'Number of drug exposure records, by drug_concept_id by drug_type_concept_id','drug_concept_id','drug_type_concept_id',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (706,'Distribution of age by drug_concept_id','drug_concept_id','gender_concept_id',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (709,'Number of drug exposure records with invalid person_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (710,'Number of drug exposure records outside valid observation period',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (711,'Number of drug exposure records with end date < start date',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (712,'Number of drug exposure records with invalid provider_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (713,'Number of drug exposure records with invalid visit_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (715,'Distribution of days_supply by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (716,'Distribution of refills by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (717,'Distribution of quantity by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (720,'Number of drug exposure records by drug exposure start month','calendar month',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (800,'Number of persons with at least one observation occurrence, by observation_concept_id','observation_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (801,'Number of observation occurrence records, by observation_concept_id','observation_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (802,'Number of persons by observation occurrence start month, by observation_concept_id','observation_concept_id','calendar month',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (803,'Number of distinct observation occurrence concepts per person',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (804,'Number of persons with at least one observation occurrence, by observation_concept_id by calendar year by gender by age decile','observation_concept_id','calendar year','gender_concept_id','age decile',null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (805,'Number of observation occurrence records, by observation_concept_id by observation_type_concept_id','observation_concept_id','observation_type_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (806,'Distribution of age by observation_concept_id','observation_concept_id','gender_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (807,'Number of observation occurrence records, by observation_concept_id and unit_concept_id','observation_concept_id','unit_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (809,'Number of observation records with invalid person_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (810,'Number of observation records outside valid observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (812,'Number of observation records with invalid provider_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (813,'Number of observation records with invalid visit_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (814,'Number of observation records with no value (numeric, string, or concept)',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (815,'Distribution of numeric values, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (816,'Distribution of low range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (817,'Distribution of high range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (818,'Number of observation records below/within/above normal range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (820,'Number of observation records by observation start month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (900,'Number of persons with at least one drug era, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (901,'Number of drug era records, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (902,'Number of persons by drug era start month, by drug_concept_id','drug_concept_id','calendar month',null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (903,'Number of distinct drug era concepts per person',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (904,'Number of persons with at least one drug era, by drug_concept_id by calendar year by gender by age decile','drug_concept_id','calendar year','gender_concept_id','age decile',null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (906,'Distribution of age by drug_concept_id','drug_concept_id','gender_concept_id',null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (907,'Distribution of drug era length, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (908,'Number of drug eras without valid person',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (909,'Number of drug eras outside valid observation period',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (910,'Number of drug eras with end date < start date',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (920,'Number of drug era records by drug era start month','calendar month',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1000,'Number of persons with at least one condition era, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1001,'Number of condition era records, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1002,'Number of persons by condition era start month, by condition_concept_id','condition_concept_id','calendar month',null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1003,'Number of distinct condition era concepts per person',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1004,'Number of persons with at least one condition era, by condition_concept_id by calendar year by gender by age decile','condition_concept_id','calendar year','gender_concept_id','age decile',null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1006,'Distribution of age by condition_concept_id','condition_concept_id','gender_concept_id',null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1007,'Distribution of condition era length, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1008,'Number of condition eras without valid person',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1009,'Number of condition eras outside valid observation period',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1010,'Number of condition eras with end date < start date',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1020,'Number of condition era records by condition era start month','calendar month',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1100,'Number of persons by location 3-digit zip','3-digit zip',null,null,null,null,'LOCATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1101,'Number of persons by location state','state',null,null,null,null,'LOCATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1200,'Number of persons by place of service','place_of_service_concept_id',null,null,null,null,'CARE_SITE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1201,'Number of visits by place of service','place_of_service_concept_id',null,null,null,null,'CARE_SITE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1700,'Number of records by cohort_definition_id','cohort_definition_id',null,null,null,null,'COHORT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1701,'Number of records with cohort end date < cohort start date',null,null,null,null,null,'COHORT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1800,'Number of persons by age, with age at cohort start','age',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1801,'Distribution of age at cohort start',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1802,'Distribution of age at cohort start by gender','gender_concept_id',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1803,'Distribution of age at cohort start by cohort start year','calendar year',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1804,'Number of persons by duration from cohort start to cohort end, in 30d increments','Cohort period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1805,'Number of persons by duration from observation start to cohort start, in 30d increments','Baseline period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1806,'Number of persons by duration from cohort start to observation end, in 30d increments','Follow-up period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1807,'Number of persons by duration from cohort end to observation end, in 30d increments','Post-cohort period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1808,'Distribution of duration (days) from cohort start to cohort end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1809,'Distribution of duration (days) from cohort start to cohort end, by gender','gender_concept_id',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1810,'Distribution of duration (days) from cohort start to cohort end, by age decile','age decile',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1811,'Distribution of duration (days) from observation start to cohort start',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1812,'Distribution of duration (days) from cohort start to observation end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1813,'Distribution of duration (days) from cohort end to observation end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1814,'Number of persons by cohort start year by gender by age decile','calendar year','gender_concept_id','age decile',null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1815,'Number of persons by cohort start month','calendar month',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1816,'Number of persons by number of cohort periods','number of cohort periods',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1820,'Number of persons by duration from cohort start to first occurrence of condition occurrence, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1821,'Number of events by duration from cohort start to all occurrences of condition occurrence, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1830,'Number of persons by duration from cohort start to first occurrence of procedure occurrence, by procedure_concept_id','procedure_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1831,'Number of events by duration from cohort start to all occurrences of procedure occurrence, by procedure_concept_id','procedure_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1840,'Number of persons by duration from cohort start to first occurrence of drug exposure, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1841,'Number of events by duration from cohort start to all occurrences of drug exposure, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1850,'Number of persons by duration from cohort start to first occurrence of observation, by observation_concept_id','observation_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1851,'Number of events by duration from cohort start to all occurrences of observation, by observation_concept_id','observation_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1860,'Number of persons by duration from cohort start to first occurrence of condition era, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1861,'Number of events by duration from cohort start to all occurrences of condition era, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1870,'Number of persons by duration from cohort start to first occurrence of drug era, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1871,'Number of events by duration from cohort start to all occurrences of drug era, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); - -create table ${ohdsiSchema}.heracles_results -( - cohort_definition_id int, - analysis_id int, - stratum_1 varchar(255), - stratum_2 varchar(255), - stratum_3 varchar(255), - stratum_4 varchar(255), - stratum_5 varchar(255), - count_value NUMBER(19), - last_update_time timestamp DEFAULT SYSDATE -); - - -create table ${ohdsiSchema}.heracles_results_dist -( - cohort_definition_id int, - analysis_id int, - stratum_1 varchar(255), - stratum_2 varchar(255), - stratum_3 varchar(255), - stratum_4 varchar(255), - stratum_5 varchar(255), - count_value NUMBER(19), - min_value float, - max_value float, - avg_value float, - stdev_value float, - median_value float, - p10_value float, - p25_value float, - p75_value float, - p90_value float, - last_update_time timestamp DEFAULT SYSDATE -); - - diff --git a/src/main/resources/db/migration/oracle/V1.0.0.5.1__alter_foreign_keys.sql b/src/main/resources/db/migration/oracle/V1.0.0.5.1__alter_foreign_keys.sql deleted file mode 100644 index 735bb8a440..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.5.1__alter_foreign_keys.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion - DROP CONSTRAINT FK_fi_fs -; - -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion - ADD CONSTRAINT FK_fi_fs - FOREIGN KEY(study_id) - REFERENCES ${ohdsiSchema}.feasibility_study (id) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.5__feasability_tables.sql b/src/main/resources/db/migration/oracle/V1.0.0.5__feasability_tables.sql deleted file mode 100644 index 9f2a4c4869..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.5__feasability_tables.sql +++ /dev/null @@ -1,61 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.feas_study_generation_info( - study_id number(10) NOT NULL, - start_time Timestamp(3) NULL, - execution_duration number(10) NULL, - status number(10) NOT NULL, - is_valid number(1) NOT NULL, - CONSTRAINT PK_fs_gen_info PRIMARY KEY (study_id) -); - -CREATE TABLE ${ohdsiSchema}.feasibility_study( - id number(10) NOT NULL, - name varchar2(255) NOT NULL, - description varchar2(1000) NULL, - index_def_id number(10) NULL, - result_def_id number(10) NULL, - generate_info_id number(10) NULL, - created_by varchar2(255) NULL, - created_date Timestamp(3) NULL, - modified_by varchar2(255) NULL, - modified_date Timestamp(3) NULL, - CONSTRAINT PK_feasibility_study PRIMARY KEY (id), - CONSTRAINT FK_fs_cd_index FOREIGN KEY(index_def_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_fs_cd_result FOREIGN KEY(result_def_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_fs_fsgi FOREIGN KEY(generate_info_id) - REFERENCES ${ohdsiSchema}.feas_study_generation_info (study_id) -); - -CREATE TABLE ${ohdsiSchema}.feasibility_inclusion( - study_id number(10) NOT NULL, - sequence number(10) NOT NULL, - name varchar2(255) NULL, - description varchar2(1000) NULL, - expression Clob NULL, - CONSTRAINT FK_fi_fs FOREIGN KEY(study_id) - REFERENCES ${ohdsiSchema}.feasibility_study (id) - ON DELETE CASCADE -); - -CREATE TABLE ${ohdsiSchema}.feas_study_result( - study_id number(10) NOT NULL, - inclusion_rule_mask number(19) NOT NULL, - person_count number(19) NOT NULL -); - -CREATE TABLE ${ohdsiSchema}.feas_study_index_stats( - study_id number(10) NOT NULL, - person_count number(19) NOT NULL, - match_count number(19) NOT NULL -); - - -CREATE TABLE feas_study_inclusion_stats( - study_id number(10) NOT NULL, - rule_sequence number(10) NOT NULL, - name varchar2(255) NOT NULL, - person_count number(19) NOT NULL, - gain_count number(19) NOT NULL, - person_total number(19) NOT NULL -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.6.1__schema-create_laertes.sql b/src/main/resources/db/migration/oracle/V1.0.0.6.1__schema-create_laertes.sql deleted file mode 100644 index 3215994eb5..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.6.1__schema-create_laertes.sql +++ /dev/null @@ -1,125 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Oracle script - --- DROP any existing objects from previous runs --- for Oracle only, this section is commented out for reference in case they need to be run manually --- the other DBMS create scripts can dynamically drop objects instead --- DROP TABLE DRUG_HOI_EVIDENCE; --- DROP SEQUENCE DRUG_HOI_EVIDENCE_SEQUENCE; --- DROP TABLE EVIDENCE_SOURCES; --- DROP SEQUENCE EVIDENCE_SOURCES_SEQUENCE; --- DROP TABLE DRUG_HOI_RELATIONSHIP; --- DROP TABLE LAERTES_SUMMARY; --- DROP SEQUENCE LAERTES_SUMMARY_SEQUENCE; - -CREATE SEQUENCE ${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ( - ID INTEGER NOT NULL, - DRUG_HOI_RELATIONSHIP VARCHAR2(50), - EVIDENCE_TYPE VARCHAR2(4000), - MODALITY VARCHAR2(1), - EVIDENCE_SOURCE_CODE_ID INTEGER, - STATISTIC_VALUE NUMERIC NOT NULL, - EVIDENCE_LINKOUT VARCHAR2(4000), - STATISTIC_TYPE VARCHAR2(4000) -); -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.DRUG_HOI_RELATIONSHIP IS 'foreign key to the drug_HOI_relationship id'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.EVIDENCE_TYPE IS 'the type of evidence (literature, product label, pharmacovigilance, EHR)'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.MODALITY IS 'Whether or not the relationship of evidence is to refute the assertion'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.EVIDENCE_SOURCE_CODE_ID IS 'a code indicating the actual source of evidence (e.g., PubMed, US SPLs, EU SPC, VigiBase, etc)'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.STATISTIC_VALUE IS 'For literature-like (e.g., PubMed abstracts, product labeling) sources this holds the count of the number of items of the evidence type present in the evidence base from that source (several rules are used to derive the counts, see documentation on the knowledge-base wiki). From signal detection sources, the result of applying the algorithm indicated in the evidence_type column is shown.'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.EVIDENCE_LINKOUT IS 'For literature-like (e.g., PubMed abstracts, product labeling), this holds a URL that will resolve to a query against the RDF endpoint for all resources used to generate the evidence_count. For signal detection sources, this holds a link to metadata on the algorithm and how it was applied to arrive at the statistical value.'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.STATISTIC_TYPE IS 'For literature-like (e.g., PubMed abstracts, product labeling), and other count based methods this holds COUNT. For signal detection sources, this holds a string indicating the type of the result value (e.g., AERS_EBGM, AERS_EB05)'; - -CREATE SEQUENCE ${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ( - ID INTEGER NOT NULL, - TITLE VARCHAR2(4000), - DESCRIPTION VARCHAR2(4000), - CONTRIBUTER VARCHAR2(4000), - CREATOR VARCHAR2(4000), - CREATION_DATE DATE NOT NULL, - RIGHTS VARCHAR2(4000), - SOURCE VARCHAR2(4000) -); - -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.DESCRIPTION IS 'Description of the evidence source. Same as http://purl.org/dc/elements/1.1/description'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.CONTRIBUTER IS 'Same as http://purl.org/dc/elements/1.1/contributor'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.CREATOR IS 'Same as http://purl.org/dc/elements/1.1/creator'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.CREATION_DATE IS 'Date that the source was created. For example, if the source was created in 2010 but added to the knowledge base in 2014, the creation date would be 2010'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.RIGHTS IS 'Same as http://purl.org/dc/elements/1.1/rights'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.SOURCE IS 'The source from which this data was derived. Same as http://purl.org/dc/elements/1.1/source'; - -CREATE TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP ( - ID VARCHAR2(50), - DRUG INTEGER, - RXNORM_DRUG VARCHAR2(4000), - HOI INTEGER, - SNOMED_HOI VARCHAR2(4000) -); -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.DRUG IS 'OMOP/IMEDS Concept ID for the drug'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.RXNORM_DRUG IS 'RxNorm Preferred Term of the Drug'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.HOI IS 'OMOP/IMEDS Concept ID for the Health Outcome of Interest'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.SNOMED_HOI IS 'SNOMED preferred term of the Health Outcome of Interest'; - -CREATE SEQUENCE ${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.LAERTES_SUMMARY ( - ID INTEGER NOT NULL, - REPORT_ORDER INTEGER, - REPORT_NAME VARCHAR2(4000), - INGREDIENT_ID INTEGER, - INGREDIENT VARCHAR2(4000), - CLINICAL_DRUG_ID INTEGER, - CLINICAL_DRUG VARCHAR2(4000), - HOI_ID INTEGER, - HOI VARCHAR2(4000), - CT_COUNT INTEGER, - CASE_COUNT INTEGER, - OTHER_COUNT INTEGER, - SPLICER_COUNT INTEGER, - EU_SPC_COUNT INTEGER, - SEMMEDDB_CT_COUNT INTEGER, - SEMMEDDB_CASE_COUNT INTEGER, - SEMMEDDB_NEG_CT_COUNT INTEGER, - SEMMEDDB_NEG_CASE_COUNT INTEGER, - EB05 NUMERIC, - EBGM NUMERIC, - AERS_REPORT_COUNT INTEGER -); -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.REPORT_ORDER IS 'there are several reports in this summary, this is an identifier for each report'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.REPORT_NAME IS 'there are several reports in this summary, this is a name of the report'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.INGREDIENT_ID IS 'a drug ingredient CONCEPT_ID'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.INGREDIENT IS 'a drug ingredient name'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CLINICAL_DRUG_ID IS 'if a clinical drug exists, the clinical drug CONCEPT_ID'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CLINICAL_DRUG IS 'if a clinical drug exists, the clinical drug name'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.HOI_ID IS 'the HOI CONCEPT_ID, this is at the SNOMED level'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.HOI IS 'the HOI name, this is at the SNOMED level'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CT_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CASE_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.OTHER_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SPLICER_COUNT IS 'counts of SPLs that mention specific drugs and hois'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.EU_SPC_COUNT IS 'counts of SPCs that mention specific drugs and hois'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_CT_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_CASE_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_NEG_CT_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_NEG_CASE_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.EB05 IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.EBGM IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.AERS_REPORT_COUNT IS ''; - --- add EVIDENCE_SOURCES table constraints -ALTER TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ADD CONSTRAINT PK_EVIDENCE_SOURCES PRIMARY KEY (ID); - --- add DRUG_HOI_RELATIONSHIP table constraints -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP ADD CONSTRAINT PK_DRUG_HOI_RELATIONSHIP PRIMARY KEY (ID); - --- add LAERTES_SUMMARY table constraints -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD CONSTRAINT PK_LAERTES_SUMMARY PRIMARY KEY (ID); - --- add DRUG_HOI_EVIDENCE table constraints -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT FK_DRUG_HOI_RELATIONSHIP FOREIGN KEY (DRUG_HOI_RELATIONSHIP) REFERENCES DRUG_HOI_RELATIONSHIP(ID); -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT FK_EVIDENCE_SOURCES FOREIGN KEY (EVIDENCE_SOURCE_CODE_ID) REFERENCES EVIDENCE_SOURCES(ID); -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT PK_DRUG_HOI_EVIDENCE PRIMARY KEY (ID); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.6.2__schema-create_laertes.sql b/src/main/resources/db/migration/oracle/V1.0.0.6.2__schema-create_laertes.sql deleted file mode 100644 index cd19bf96c9..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.6.2__schema-create_laertes.sql +++ /dev/null @@ -1,13 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Postgresql script - -ALTER TABLE EVIDENCE_SOURCES ADD coverage_start_date date; -ALTER TABLE EVIDENCE_SOURCES ADD coverage_end_date date; -COMMENT ON COLUMN evidence_sources.coverage_start_date IS 'The start date of coverage for the resource. Data can be trusted on or after this date and up to and including the coverage_end_date'; -COMMENT ON COLUMN evidence_sources.coverage_end_date IS 'The date of coverage for the resource. Data can be trusted on or after the coverage_start_date date and up to and including this date'; - - -ALTER TABLE LAERTES_SUMMARY DROP COLUMN eb05; -ALTER TABLE LAERTES_SUMMARY DROP COLUMN ebgm; -ALTER TABLE LAERTES_SUMMARY ADD prr numeric; diff --git a/src/main/resources/db/migration/oracle/V1.0.0.6.3__schema-create_laertes.sql b/src/main/resources/db/migration/oracle/V1.0.0.6.3__schema-create_laertes.sql deleted file mode 100644 index 536fca788b..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.6.3__schema-create_laertes.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Postgresql script - -ALTER TABLE DRUG_HOI_EVIDENCE MODIFY (STATISTIC_VALUE NUMERIC NULL); - - diff --git a/src/main/resources/db/migration/oracle/V1.0.0.6.4__schema-create_laertes.sql b/src/main/resources/db/migration/oracle/V1.0.0.6.4__schema-create_laertes.sql deleted file mode 100644 index 161e1d76ac..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.6.4__schema-create_laertes.sql +++ /dev/null @@ -1,18 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014 - 2016 --- oracle script - -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE RENAME COLUMN MODALITY TO SUPPORTS; - -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY RENAME COLUMN CT_COUNT TO MEDLINE_CT_COUNT; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY RENAME COLUMN CASE_COUNT TO MEDLINE_CASE_COUNT; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY RENAME COLUMN OTHER_COUNT TO MEDLINE_OTHER_COUNT; - -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD CTD_CHEMICAL_DISEASE_COUNT INT; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CTD_CHEMICAL_DISEASE_COUNT IS ''; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD SEMMEDDB_OTHER_COUNT INT; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_OTHER_COUNT IS ''; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD SEMMEDDB_NEG_OTHER_COUNT INT; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_NEG_OTHER_COUNT IS ''; - - diff --git a/src/main/resources/db/migration/oracle/V1.0.0.6.5__schema-create_penelope_laertes.sql b/src/main/resources/db/migration/oracle/V1.0.0.6.5__schema-create_penelope_laertes.sql deleted file mode 100644 index 64edc9175b..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.6.5__schema-create_penelope_laertes.sql +++ /dev/null @@ -1,33 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.penelope_laertes_universe -( - id NUMBER(19, 0), - condition_concept_id NUMBER(19, 0), - condition_concept_name VARCHAR2(255), - ingredient_concept_id NUMBER(19, 0), - ingredient_concept_name VARCHAR2(255), - evidence_type VARCHAR2(255), - supports CHAR(1), - statistic_value FLOAT, - evidence_linkouts VARCHAR2(4000) -); - -CREATE TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot( - condition_concept_id NUMBER(19,0), - condition_concept_name VARCHAR2(255), - ingredient_concept_id NUMBER(19,0), - ingredient_concept_name VARCHAR2(255), - medline_ct NUMBER(19,0), - medline_case NUMBER(19,0), - medline_other NUMBER(19,0), - semmeddb_ct_t NUMBER(19,0), - semmeddb_case_t NUMBER(19,0), - semmeddb_other_t NUMBER(19,0), - semmeddb_ct_f NUMBER(19,0), - semmeddb_case_f NUMBER(19,0), - semmeddb_other_f NUMBER(19,0), - eu_spc NUMBER(19,0), - spl_adr NUMBER(19,0), - aers NUMBER(19,0), - aers_prr FLOAT, - aers_prr_original FLOAT -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.7.0__sources.sql b/src/main/resources/db/migration/oracle/V1.0.0.7.0__sources.sql deleted file mode 100644 index d0cb46cc70..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.7.0__sources.sql +++ /dev/null @@ -1,17 +0,0 @@ -CREATE TABLE source ( - SOURCE_ID int NOT NULL, - SOURCE_NAME VARCHAR (255) NOT NULL, - SOURCE_KEY VARCHAR (50) NOT NULL, - SOURCE_CONNECTION VARCHAR (4000) NOT NULL, - SOURCE_DIALECT VARCHAR (255) NOT NULL, - CONSTRAINT PK_source PRIMARY KEY (source_id) -); - -CREATE TABLE source_daimon ( - source_daimon_id int NOT NULL, - source_id int NOT NULL, - daimon_type int NOT NULL, - table_qualifier VARCHAR (255) NOT NULL, - priority int NOT NULL, - CONSTRAINT PK_source_daimon PRIMARY KEY (source_daimon_id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.0.7.1__cohort_multihomed_support.sql b/src/main/resources/db/migration/oracle/V1.0.0.7.1__cohort_multihomed_support.sql deleted file mode 100644 index 7d1bf4f3a2..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.7.1__cohort_multihomed_support.sql +++ /dev/null @@ -1,16 +0,0 @@ -ALTER TABLE cohort_generation_info DROP CONSTRAINT FK_cgi_cd; - -DROP TABLE cohort_generation_info; - -CREATE TABLE cohort_generation_info ( - id Number(10) NOT NULL, - source_id Number(10) NOT NULL, - start_time Timestamp(3) NULL, - execution_duration Number(10) NULL, - status Number(10) NOT NULL, - is_valid Number(1) NOT NULL, - CONSTRAINT PK_cohort_generation_info PRIMARY KEY (id, source_id), - CONSTRAINT FK_cgi_cd FOREIGN KEY(id) - REFERENCES cohort_definition (id) - ON DELETE CASCADE -); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.7.2__feasability_multihomed_support.sql.sql b/src/main/resources/db/migration/oracle/V1.0.0.7.2__feasability_multihomed_support.sql.sql deleted file mode 100644 index 911eb4be41..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.7.2__feasability_multihomed_support.sql.sql +++ /dev/null @@ -1,16 +0,0 @@ -ALTER TABLE feasibility_study DROP CONSTRAINT FK_fs_fsgi; - -DROP TABLE feas_study_generation_info; - -CREATE TABLE feas_study_generation_info ( - study_id Number(10) NOT NULL, - source_id Number(10) NOT NULL, - start_time Timestamp(3) NULL, - execution_duration Number(10) NULL, - status Number(10) NOT NULL, - is_valid Number(1) NOT NULL, - CONSTRAINT PK_fs_gen_info PRIMARY KEY (study_id,source_id), - CONSTRAINT FK_fsgi_fs FOREIGN KEY (study_id) REFERENCES feasibility_study (id) -); - -ALTER TABLE feasibility_study DROP COLUMN generate_info_id; diff --git a/src/main/resources/db/migration/oracle/V1.0.0.8__heracles_data.sql b/src/main/resources/db/migration/oracle/V1.0.0.8__heracles_data.sql deleted file mode 100644 index 5b1054b4c5..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.8__heracles_data.sql +++ /dev/null @@ -1,15 +0,0 @@ -CREATE SEQUENCE HERACLES_VIZ_DATA_SEQUENCE START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 NOCYCLE; - -CREATE TABLE HERACLES_VISUALIZATION_DATA ( - id Number(10) NOT NULL , - cohort_definition_id Number(10) NOT NULL , - source_id Number(10) NOT NULL, - visualization_key VARCHAR(300) NOT NULL, - drilldown_id number(10), - data CLOB NOT NULL, - end_time Timestamp(3) NOT NULL, - CONSTRAINT PK_heracles_viz_data PRIMARY KEY (id) -); - -CREATE UNIQUE INDEX HERACLES_VIZ_DATA_UNQ_IDX ON HERACLES_VISUALIZATION_DATA (COHORT_DEFINITION_ID, SOURCE_ID, VISUALIZATION_KEY, DRILLDOWN_ID); -CREATE INDEX HERACLES_VIZ_DATA_IDX ON HERACLES_VISUALIZATION_DATA (COHORT_DEFINITION_ID, SOURCE_ID, VISUALIZATION_KEY); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.9.1__shiro_security-initial_values.sql b/src/main/resources/db/migration/oracle/V1.0.0.9.1__shiro_security-initial_values.sql deleted file mode 100644 index 0f8e62c227..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.9.1__shiro_security-initial_values.sql +++ /dev/null @@ -1,69 +0,0 @@ - --- roles --- - -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (1, 'public'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (2, 'admin'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (3, 'concept set creator'); ---INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (4, 'concept set reader'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (5, 'cohort creator'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (6, 'cohort reader'); - --- permissions --- - --- admin -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (200, 'configuration:edit:ui', 'Access to ''Configuration'' page'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (201, 'user:get', 'Get list of users'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (202, 'permission:get', 'Get list of permissions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (203, 'role:post', 'Create role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (204, 'role:get', 'Get list of roles'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (205, 'role:*:get', 'Get role by ID'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (206, 'role:*:permissions:get', 'Get list of role''s permissions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (207, 'role:*:users:get', 'Get list of role''s users'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (208, 'role:*:users:*:put', 'Add users to role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (209, 'role:*:users:*:delete', 'Remove users from role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (210, 'role:1:permissions:*:put', 'Add permissions to public role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (211, 'role:1:permissions:*:delete', 'Remove permissions from public role'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 200); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 201); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 202); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 203); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 204); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 205); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 206); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 207); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 208); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 209); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 210); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 211); - --- concept set creator -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (30, 'conceptset:post', 'Create Concept Set'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 3, 30); - --- cohort creator -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (50, 'cohortdefinition:post', 'Save new Cohort Definition'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (51, 'job:execution:get', 'Get list of jobs'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (52, 'cohortdefinition:*:copy:get', 'Copy the specified cohort definition'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 5, 50); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 5, 51); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 5, 52); - --- cohort reader -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (60, 'cohortdefinition:get', 'Get list of Cohort Definitions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (61, 'cohortdefinition:*:get', 'Get Cohort Definition by ID'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (62, 'cohortdefinition:*:info:get', ''); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (63, '*:vocabulary:lookup:identifiers:post', 'Perform a lookup of an array of concept identifiers returning the matching concepts with their detailed properties.'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (64, 'cohortdefinition:sql:post', 'Generate SQL from Cohort expression'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (65, '*:cohortresults:*:breakdown:get', 'Get breakdown with counts about people in cohort'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 6, 60); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 6, 61); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 6, 62); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 6, 63); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 6, 64); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 6, 65); diff --git a/src/main/resources/db/migration/oracle/V1.0.0.9__shiro_security.sql b/src/main/resources/db/migration/oracle/V1.0.0.9__shiro_security.sql deleted file mode 100644 index 1dabd7add9..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.0.9__shiro_security.sql +++ /dev/null @@ -1,85 +0,0 @@ --- Author: Gleb Malikov --- 2015 --- Oracle script - -CREATE SEQUENCE ${ohdsiSchema}.SEC_USER_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_USER( - ID INTEGER NOT NULL, - LOGIN VARCHAR2(50), - PASSWORD VARCHAR2(255), - SALT VARCHAR2(255), - NAME VARCHAR2(100) -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.LOGIN IS 'Login'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.PASSWORD IS 'Password'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.SALT IS 'Salt for password encoding'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.NAME IS 'Displayed name for user'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_ROLE_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_ROLE ( - ID INTEGER NOT NULL, - NAME VARCHAR2(255) -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE.NAME IS 'Role name'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_USER_ROLE_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_USER_ROLE( - ID INTEGER NOT NULL, - USER_ID INTEGER NOT NULL, - ROLE_ID INTEGER NOT NULL, - STATUS VARCHAR2(255) NULL -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.ID IS 'Primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.USER_ID IS 'Foreign key to SEC_USER'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.ROLE_ID IS 'Foreign key to SEC_ROLE'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.STATUS IS 'Status of relation between user and role'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_PERMISSION_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_PERMISSION( - ID INTEGER NOT NULL, - VALUE VARCHAR2(255) NOT NULL, - DESCRIPTION VARCHAR2(255) NULL -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_PERMISSION.ID IS 'Primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_PERMISSION.VALUE IS 'Permission'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_PERMISSION.DESCRIPTION IS 'Desctiption of permission'; - - -CREATE SEQUENCE ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ( - ID INTEGER NOT NULL, - ROLE_ID INTEGER NOT NULL, - PERMISSION_ID INTEGER NOT NULL, - STATUS VARCHAR2(255) NULL -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.ID IS 'Primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.ROLE_ID IS 'Foreign key to SEC_ROLE'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.PERMISSION_ID IS 'Foreign key to SEC_PERMISSION'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.STATUS IS 'Status of relation'; - - --- add SEC_USER table constraints -ALTER TABLE ${ohdsiSchema}.SEC_USER ADD CONSTRAINT PK_SEC_USER PRIMARY KEY (ID); - --- add SEC_ROLE table constraints -ALTER TABLE ${ohdsiSchema}.SEC_ROLE ADD CONSTRAINT PK_SEC_ROLE PRIMARY KEY (ID); - --- add SEC_PERMISSION table constraints -ALTER TABLE ${ohdsiSchema}.SEC_PERMISSION ADD CONSTRAINT PK_SEC_PERMISSION PRIMARY KEY (ID); - --- add SEC_USER_ROLE table constraints -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT PK_SEC_USER_ROLE PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT FK_USER_ROLE_TO_USER FOREIGN KEY (USER_ID) REFERENCES ${ohdsiSchema}.SEC_USER(ID); -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT FK_USER_ROLE_TO_ROLE FOREIGN KEY (ROLE_ID) REFERENCES ${ohdsiSchema}.SEC_ROLE(ID); - --- add SEC_ROLE_PERMISSION table constraints -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT PK_SEC_ROLE_PERMISSION PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT FK_ROLE_PERMISSION_TO_ROLE FOREIGN KEY (ROLE_ID) REFERENCES ${ohdsiSchema}.SEC_ROLE(ID); -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT FK_ROLE_PRMSN_TO_PRMSN FOREIGN KEY (PERMISSION_ID) REFERENCES ${ohdsiSchema}.SEC_PERMISSION(ID); diff --git a/src/main/resources/db/migration/oracle/V1.0.1.0__conceptsets.sql b/src/main/resources/db/migration/oracle/V1.0.1.0__conceptsets.sql deleted file mode 100644 index 2f89888770..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.1.0__conceptsets.sql +++ /dev/null @@ -1,23 +0,0 @@ --- DROP any existing objects from previous runs --- for Oracle only, this section is commented out for reference in case they need to be run manually --- the other DBMS create scripts can dynamically drop objects instead --- DROP TABLE concept_set; --- DROP SEQUENCE concept_set_sequence; --- DROP TABLE concept_set_item; --- DROP SEQUENCE concept_set_item_sequence; - -CREATE SEQUENCE concept_set_sequence MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE concept_set ( - concept_set_id INTEGER NOT NULL, - concept_set_name VARCHAR(255) NOT NULL -); - -CREATE SEQUENCE concept_set_item_sequence MAXVALUE 9223372036854775807 NOCYCLE; -CREATE TABLE concept_set_item ( - concept_set_item_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - concept_id INTEGER NOT NULL, - is_excluded INTEGER NOT NULL, - include_descendants INTEGER NOT NULL, - include_mapped INTEGER NOT NULL -); diff --git a/src/main/resources/db/migration/oracle/V1.0.1.1.1__penelope_data.sql b/src/main/resources/db/migration/oracle/V1.0.1.1.1__penelope_data.sql deleted file mode 100644 index 5fe7265028..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.1.1.1__penelope_data.sql +++ /dev/null @@ -1,4633 +0,0 @@ -/* COHORT_STUDY */ -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (1, 296, 1, 'Treatment Pathways in Chronic Disease', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:treatment_pathways_in_chronic_disease'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (2, 296, 1, 'Early Treatment Pathways in Chronic Disease', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:treatment_pathways_in_chronic_disease_12_mos'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (3, 296, 1, 'Drug Utilization in Childre', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:drugs_in_peds'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (4, 293, 1, 'Drug Utilization in Childre', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:drugs_in_peds'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (5, 293, 2, 'Population-level estimation of comparative risks of Celecoxib versus non-selective NSAIDs', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:celecoxib_vs_nsnsaids'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (6, 293, 3, 'Predicting outcomes for new users of celecoxib', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:celecoxib_prediction_models'); - -/* CONCEPT_OF_INTEREST */ -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (1, 4329847, 4185932) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (2, 4329847, 77670) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (3, 192671, 4247120) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (4, 192671, 201340) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (5, 192671, 4266809) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (6, 192359, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (7, 197320, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (8, 432791, 43021226) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (9, 319835, 316139) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (10, 319835, 4024552) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (11, 316139, 4024552) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (12, 312327, 4329847) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (13, 312327, 4185932) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (14, 197508, 200680) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (15, 4290333, 4174977) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (16, 4170143, 4085100) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (17, 378253, 318736) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (18, 4283893, 4138403) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (19, 312327, 321318) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (20, 4329847, 321318) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (21, 312327, 77670) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (22, 73153, 200680) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (23, 4181583, 257011) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (24, 194984, 137977) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (25, 137977, 194984) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (26, 4245975, 194984) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (27, 312327, 321318) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (28, 312327, 77670) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (29, 319835, 433595) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (30, 319835, 321319) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (31, 4181583, 4085100) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (32, 4283893, 4138403) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (33, 316139, 433595) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (34, 316139, 321319) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (35, 4181583, 254761) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (36, 437312, 192671) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (37, 381316, 381591) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (38, 4030518, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (39, 198124, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (40, 4220631, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (41, 4152839, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (42, 4148381, 441202) -; - -/* DRUG_LABELS */ -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1, 'A+D DIAPER RASH (Topical)', '916662', 'dimethicone', '297e62e4-5282-4733-b3f7-f63a16e8ddee', to_date('7/26/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2, 'Abacavir (Oral Pill)', '1736971', 'abacavir', '73ce0bc5-43e2-c57f-0a6a-bdaf9fbaa3c2', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3, 'Abacavir/Dolutegravir/lamiVUDine (Oral Pill)', '1736971', 'abacavir', '2997739a-aa91-42aa-a206-a70e2db7b84f', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4, 'Abacavir/lamiVUDine (Oral Pill)', '1736971', 'abacavir', '080e3423-5962-4465-8e78-cd8793699336', to_date('9/1/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(5, 'Abacavir/lamiVUDine/Zidovudine (Oral Pill)', '1736971', 'abacavir', '3354e50f-4dc5-413f-b5ae-87353ab8913d', to_date('4/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(6, 'ABELCET (Injectable)', '19056402', 'amphotericin B liposomal', '5587db37-f21a-4a39-a319-e1077032ced9', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(7, 'ABILIFY (Oral Pill)', '757688', 'aripiprazole', '630f15ee-b839-46d5-9e89-06af3d47e8f5', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(8, 'AbobotulinumtoxinA (Injectable)', '40165377', 'abobotulinumtoxinA', '71313a04-1349-4c26-b840-a39e4a3ddaed', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(9, 'ABREVA (Topical)', '980955', 'docosanol', 'c39b38a7-dcdd-4c32-8f35-b565c4d3cec6', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(10, 'Absidia ramosa extract (Injectable)', '40227558', 'Absidia ramosa extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(11, 'ABSORBINE (Transdermal)', '901656', 'Menthol', '4c80d544-ecb7-4994-bbc0-698970f85549', to_date('5/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(12, 'ABSORBINE JR. (Topical)', '901656', 'Menthol', 'e9e83221-84c5-49a7-9733-a9ccd97a43dd', to_date('1/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(13, 'ABSORICA (Oral Pill)', '984232', 'Isotretinoin', '8d54aab5-3349-4a41-8533-0a566fd7bbaa', to_date('8/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(14, 'ABSTRAL (Sublingual)', '1154029', 'Fentanyl', '4906457e-30ad-4da7-b3ac-bb9e6651a670', to_date('1/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(15, 'Acacia longifolia pollen extract (Injectable)', '40170299', 'Acacia longifolia pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(16, 'Acamprosate (Oral Pill)', '19043959', 'acamprosate', 'fe6f754f-62b4-4c86-805d-221332409516', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(17, 'ACANYA (Topical)', '918172', 'Benzoyl Peroxide', '3dcd2c96-72b1-4a9f-b65c-08198d63b7df', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(18, 'Acarbose (Oral Pill)', '1529331', 'Acarbose', '656769ee-e292-4950-83df-a38e6b1a9d6e', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(19, 'ACCOLATE (Oral Pill)', '1111706', 'zafirlukast', '4bf90772-58d5-456d-ad1c-fc448cc5a231', to_date('8/6/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(20, 'ACCUPRIL (Oral Pill)', '1331235', 'quinapril', 'a2de05b9-d1aa-4fbb-a9a3-6918cc306f78', to_date('4/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(21, 'Acebutolol (Oral Pill)', '1319998', 'Acebutolol', '7eee95bf-0452-4d6e-9712-33403768695a', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(22, 'ACEON (Oral Pill)', '1373225', 'Perindopril', '340846a3-896e-40bf-a4d0-419922df71a1', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(23, 'ACEPHEN (Rectal)', '1125315', 'Acetaminophen', '1922c613-a8e2-4cf2-ab8b-bbc65c394309', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(24, 'ACETADOTE (Injectable)', '1139042', 'Acetylcysteine', '472f158a-5ab9-4308-8e49-1116e6ea3d39', to_date('6/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(25, 'ACETADRYL (Oral Pill)', '1125315', 'Acetaminophen', '7731331b-4486-438b-90a7-f0b8d5a3a593', to_date('12/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(26, 'Acetaminophen (Chewable)', '1125315', 'Acetaminophen', '5c0dbae2-328b-42b6-a8b6-55009f3c78e5', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(27, 'Acetaminophen (Oral Disintegrating)', '1125315', 'Acetaminophen', '1bd01140-0ba7-4e22-be3b-664186aaddb9', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(28, 'Acetaminophen (Oral Liquid)', '1125315', 'Acetaminophen', '3d866a79-481f-4a63-84ba-f049ce83da8d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(29, 'Acetaminophen (Oral Pill)', '1125315', 'Acetaminophen', '05234545-b1c1-4bd2-bd83-34860b6f5691', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(30, 'Acetaminophen (Rectal)', '1125315', 'Acetaminophen', 'daaad04e-4fe8-40ce-9022-1115e9f3a42a', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(31, 'Acetaminophen/Aspirin (Oral Pill)', '1125315', 'Acetaminophen', '4b77be54-e962-4e6b-a244-e3d53a8fecd9', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(32, 'Acetaminophen/Aspirin (Oral Powder)', '1125315', 'Acetaminophen', '055d0288-61d4-48bc-b91f-6ecc1969beb8', to_date('11/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(33, 'Acetaminophen/Aspirin/Caffeine (Oral Pill)', '1125315', 'Acetaminophen', 'f49d3755-bb1b-4b79-baa5-52ad16b2ea64', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(34, 'Acetaminophen/Aspirin/Caffeine (Oral Powder)', '1125315', 'Acetaminophen', '16d774cc-4247-4bf8-9b5a-c338ffebda3d', to_date('11/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(35, 'Acetaminophen/Aspirin/Caffeine/Salicylamide (Oral Pill)', '1125315', 'Acetaminophen', '9fe82229-cc3e-4d79-a448-014fe3d0055b', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(36, 'Acetaminophen/Aspirin/DiphenhydrAMINE (Oral Pill)', '1125315', 'Acetaminophen', 'b3812d27-40af-40d7-864a-dfa4ae34cb9e', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(37, 'Acetaminophen/Butalbital (Oral Pill)', '1125315', 'Acetaminophen', '2cddfd28-6ce7-4708-8f11-6d4dc33fae5b', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(38, 'Acetaminophen/Butalbital/Caffeine (Oral Liquid)', '1125315', 'Acetaminophen', 'bc990056-c75f-4b0b-87f8-4fb9bdcd533c', to_date('5/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(39, 'Acetaminophen/Butalbital/Caffeine (Oral Pill)', '1125315', 'Acetaminophen', 'ea5b9ffe-3cda-405e-8f75-3fd4a64c9a35', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(40, 'Acetaminophen/Butalbital/Caffeine/Codeine (Oral Pill)', '1125315', 'Acetaminophen', '7fd761e6-64fe-44cc-8b74-10ce31ccfd66', to_date('12/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(41, 'Acetaminophen/Caffeine (Oral Pill)', '1125315', 'Acetaminophen', 'cc17ee50-1401-4b31-8c01-e153b4291c7a', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(42, 'Acetaminophen/Caffeine/Dihydrocodeine (Oral Pill)', '1125315', 'Acetaminophen', '3ad82b67-f041-46df-8518-10debc35a5ed', to_date('7/12/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(43, 'Acetaminophen/Caffeine/Isometheptene (Oral Pill)', '1125315', 'Acetaminophen', '1d157217-d307-423c-8f50-965b23881330', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(44, 'Acetaminophen/Caffeine/Pyrilamine (Oral Pill)', '1125315', 'Acetaminophen', 'c9395f86-dfb8-43bb-9f6a-9b948810b265', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(45, 'Acetaminophen/Chlophedianol/Pyrilamine (Oral Liquid)', '1125315', 'Acetaminophen', '7c7dbac3-dd9e-d03a-1303-3d2a207c751b', to_date('11/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(46, 'Acetaminophen/Chlorpheniramine (Oral Pill)', '1125315', 'Acetaminophen', '763a5334-a741-4678-9947-603776622450', to_date('6/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(47, 'Acetaminophen/Chlorpheniramine/Dextromethorphan (Oral Liquid)', '1125315', 'Acetaminophen', 'b0ee7a0e-e2eb-4382-8fde-d002a6ac883a', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(48, 'Acetaminophen/Chlorpheniramine/Dextromethorphan (Oral Pill)', '1125315', 'Acetaminophen', '127e7e43-32dd-4311-817c-57b3988ba1da', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(49, 'Acetaminophen/Chlorpheniramine/Dextromethorphan/Phenylephrine (Effervescent)', '1125315', 'Acetaminophen', 'c7e71ace-c911-46cd-8c92-01385c2f7122', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(50, 'Acetaminophen/Chlorpheniramine/Dextromethorphan/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'a45c4953-b9be-4e04-b82a-f3419d27c129', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(51, 'Acetaminophen/Chlorpheniramine/Dextromethorphan/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', '58a7668f-4702-42a1-a1ca-443c979ea0db', to_date('8/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(52, 'Acetaminophen/Chlorpheniramine/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'ab384d3d-fb33-4aec-9393-822b199e58b6', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(53, 'Acetaminophen/Chlorpheniramine/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'f466c660-69eb-4581-81ff-1499fa421d8b', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(54, 'Acetaminophen/Chlorpheniramine/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', '0a4ace8c-562e-43af-9efb-d323ee4c22ab', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(55, 'Acetaminophen/Codeine (Oral Liquid)', '1125315', 'Acetaminophen', '95ac6875-6b14-4cde-8efb-80704e39b8d8', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(56, 'Acetaminophen/Codeine (Oral Pill)', '1125315', 'Acetaminophen', '61f11bc0-02e7-47ea-a05b-39c590844bf9', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(57, 'Acetaminophen/Dexbrompheniramine (Oral Pill)', '1125315', 'Acetaminophen', '1bd74da3-9c5b-46e9-b599-999cd6eac1d8', to_date('8/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(58, 'Acetaminophen/Dextromethorphan (Oral Liquid)', '1125315', 'Acetaminophen', '9469104e-f06c-481c-a4b7-2fd16cd0db01', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(59, 'Acetaminophen/Dextromethorphan/Doxylamine (Oral Liquid)', '1125315', 'Acetaminophen', 'f985b585-fb62-4a0e-8531-47090c9f8138', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(60, 'Acetaminophen/Dextromethorphan/Doxylamine (Oral Pill)', '1125315', 'Acetaminophen', 'f2b43b3f-c272-49c7-a601-954e2e4865d6', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(61, 'Acetaminophen/Dextromethorphan/Doxylamine/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '8b9211a6-5e8a-48e9-b3fb-ad69dbc758d6', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(62, 'Acetaminophen/Dextromethorphan/guaiFENesin/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'd4bcfabb-a054-4f53-8dc9-d361a03558b8', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(63, 'Acetaminophen/Dextromethorphan/guaiFENesin/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'f4d1cd98-3b1f-452d-9f11-2a8d4c5b83d5', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(64, 'Acetaminophen/Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Liquid)', '1125315', 'Acetaminophen', 'e71c1e5b-9783-4481-b163-0a9877a5031b', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(65, 'Acetaminophen/Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', 'f38a784b-cfc3-4238-9cd3-56c1dba94e6f', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(66, 'Acetaminophen/Dextromethorphan/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'ce1b51d0-25b3-43d9-924d-293b3b5eaeb2', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(67, 'Acetaminophen/Dextromethorphan/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '90bdcea8-c896-49ba-894c-31b1281a512d', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(68, 'Acetaminophen/Dichloralphenazone/Isometheptene (Oral Pill)', '1125315', 'Acetaminophen', '08442901-bb74-4516-9574-86b3dfeeabb1', to_date('6/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(69, 'Acetaminophen/DiphenhydrAMINE (Oral Liquid)', '1125315', 'Acetaminophen', '5b0a3df3-2e9f-4b84-8f37-ed6051e96569', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(70, 'Acetaminophen/DiphenhydrAMINE (Oral Pill)', '1125315', 'Acetaminophen', '2e51c2ef-80d3-4ad0-9ab6-5f70e8d48d67', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(71, 'Acetaminophen/DiphenhydrAMINE (Oral Powder)', '1125315', 'Acetaminophen', 'db5d6c2b-688e-4e88-a42d-0fa2b0d8140b', to_date('12/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(72, 'Acetaminophen/DiphenhydrAMINE/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'e96d19bc-5786-4bc1-b25e-2c9f4f385d6d', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(73, 'Acetaminophen/DiphenhydrAMINE/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'ae33d924-9262-41f6-964f-d8b567b3d903', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(74, 'Acetaminophen/Doxylamine/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '119ee51b-6a7f-451b-bf69-ecb92c6a352b', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(75, 'Acetaminophen/guaiFENesin/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', '04c6bb6a-d2f8-4322-afba-e240e8090176', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(76, 'Acetaminophen/guaiFENesin/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '1b4e87f8-3f9e-4865-9128-527d2d621593', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(77, 'Acetaminophen/guaiFENesin/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', 'd9ce633a-6850-4c24-923f-ded745356e43', to_date('8/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(78, 'Acetaminophen/HYDROcodone (Oral Liquid)', '1125315', 'Acetaminophen', '00ff75bc-aebe-4c55-adea-1c49cf1addb3', to_date('12/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(79, 'Acetaminophen/HYDROcodone (Oral Pill)', '1125315', 'Acetaminophen', 'ab6b4c39-b2d4-4c63-8821-b0560f781287', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(80, 'Acetaminophen/Magnesium Salicylate (Oral Pill)', '1125315', 'Acetaminophen', 'b0a91a7f-bef4-47c8-9813-66279997b173', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(81, 'Acetaminophen/Magnesium Salicylate/Pamabrom (Oral Pill)', '1125315', 'Acetaminophen', '5f2e9d2a-4c7b-4339-8be7-3711a73fdbe9', to_date('6/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(82, 'Acetaminophen/oxyCODONE (Oral Liquid)', '1125315', 'Acetaminophen', '8f0eccce-728f-4039-959b-4887ae32325f', to_date('1/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(83, 'Acetaminophen/oxyCODONE (Oral Pill)', '1125315', 'Acetaminophen', '94679f29-d63a-41a5-bdda-3aa3fc2db531', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(84, 'Acetaminophen/Pamabrom (Oral Pill)', '1125315', 'Acetaminophen', '43949fe7-3764-4d74-959f-8d3ca06fa06e', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(85, 'Acetaminophen/Pamabrom/Pyrilamine (Oral Pill)', '1125315', 'Acetaminophen', 'a7424b9f-f2c0-4289-962d-99c2354c5a60', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(86, 'Acetaminophen/Pentazocine (Oral Pill)', '1125315', 'Acetaminophen', '62a055f3-a58b-446d-9476-af6d36956eaf', to_date('7/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(87, 'Acetaminophen/Pheniramine/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', '4c9a91d9-c8fa-4845-ab06-e3f760acc798', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(88, 'Acetaminophen/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', '7310f8f2-aaba-45c0-8add-d59b8fb7edda', to_date('5/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(89, 'Acetaminophen/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'cee0a134-3dc3-4d2f-a8e5-2916c3e3d7e0', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(90, 'Acetaminophen/Phenyltoloxamine (Oral Liquid)', '1125315', 'Acetaminophen', '738e7767-42de-4076-acf2-9152484c2007', to_date('6/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(91, 'Acetaminophen/Phenyltoloxamine (Oral Pill)', '1125315', 'Acetaminophen', '8f1bb6e5-3de5-48b4-bf44-d4e881be5ab0', to_date('5/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(92, 'Acetaminophen/Propoxyphene (Oral Pill)', '1125315', 'Acetaminophen', 'f2bc3c76-fd41-4a79-aa5d-3eb45133c1ee', to_date('7/19/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(93, 'Acetaminophen/Propoxyphene XR (Oral Pill)', '1125315', 'Acetaminophen', '4cf33260-5a78-4207-b113-a9d6771811a3', to_date('11/21/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(94, 'Acetaminophen/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', '31e9e3b6-1680-41c1-bbe7-d6dd966b5886', to_date('8/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(95, 'Acetaminophen/Pyrilamine (Oral Pill)', '1125315', 'Acetaminophen', 'b811e4f6-7cd0-403c-a44c-7c6c6787c15d', to_date('5/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(96, 'Acetaminophen/traMADol (Oral Pill)', '1125315', 'Acetaminophen', 'ed529b7d-bda9-8333-9801-39a16ea61745', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(97, 'acetaZOLAMIDE (Injectable)', '929435', 'Acetazolamide', '60f656ff-97b1-4a89-99af-8100483c2bac', to_date('12/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(98, 'acetaZOLAMIDE (Oral Pill)', '929435', 'Acetazolamide', 'ceb5cac3-bbfb-42fa-8b29-c0ef5ed0913c', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(99, 'Acetic Acid (Irrigation)', '929549', 'Acetic Acid', '41bc12af-fac5-4ac1-b907-dcb3e35a054c', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(100, 'Acetic Acid (Otic)', '929549', 'Acetic Acid', 'a8c12387-4b2b-49c2-b9c5-112ffb133950', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(101, 'Acetic Acid/Hydrocortisone (Otic)', '929549', 'Acetic Acid', 'ffd1edc1-2f40-4b0a-a53a-9fb53b8d3184', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(102, 'Acetic Acid/Oxyquinoline (Vaginal)', '929549', 'Acetic Acid', '77237c50-aeb5-44a0-a1e6-ce1551b49f75', to_date('5/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(103, 'Acetylcholine (Injectable)', '19037624', 'Acetylcholine', 'e701ef07-9499-4b56-931f-f4eb3eedbe24', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(104, 'Acetylcysteine (Inhalant)', '1139042', 'Acetylcysteine', '75b48fab-cef6-465c-a1e0-d085b3988bc4', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(105, 'Acetylcysteine (Injectable)', '1139042', 'Acetylcysteine', '472f158a-5ab9-4308-8e49-1116e6ea3d39', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(106, 'ACID GONE (Oral Liquid)', '985247', 'Aluminum Hydroxide', '3d353a92-92f1-4304-8895-31d39dccd88c', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(107, 'ACIPHEX (Oral Pill)', '911735', 'rabeprazole', '001dd372-2692-4d6f-a71c-95e7056349a9', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(108, 'Acitretin (Oral Pill)', '929638', 'Acitretin', 'fb979cda-6a34-496e-b4bc-b17782b67821', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(109, 'ACLOVATE (Topical)', '905151', 'Alclometasone', '23536d6f-6f74-6820-4372-696d696e616c', to_date('4/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(110, 'ACNEVIR (Soap)', '964407', 'Salicylic Acid', 'c82e9b1b-f9f3-417c-b547-95c9b4c19df8', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(111, 'Acrivastine/Pseudoephedrine (Oral Pill)', '1140123', 'acrivastine', 'd86c6a13-9e5f-43c2-92f5-c7ed7bfcedfc', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(112, 'ACT FLUORIDE RINSE (Mouthwash)', '19069022', 'Sodium Fluoride', 'e3494d8a-2aad-4212-89ce-18dddcbe059e', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(113, 'ACTHAR (Injectable)', '1541079', 'Corticotropin', '7b48ddec-e815-45f4-9ca0-5c0daaf56f30', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(114, 'ACTHIB (Injectable)', '529118', '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine"', '8143d01c-4911-40db-95b2-47f3ebea2a7d', to_date('2/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(115, 'ACTICLATE (Oral Pill)', '1738521', 'Doxycycline', '115f1010-882f-11e3-baa7-0800200c9a66', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(116, 'ACTIDOSE (Oral Liquid)', '1701928', 'Activated Charcoal', '61801c3a-caf2-4bb7-a56a-dc2ee007eccb', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(117, 'ACTIGALL (Oral Pill)', '988095', 'Ursodeoxycholate', 'aeb6c8c8-4dec-4574-8f26-b6b701b04b25', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(118, 'ACTIMMUNE (Injectable)', '1380191', 'Interferon gamma-1b', '498b2231-65e8-4b27-947b-8d1f6f91289c', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(119, 'ACTIQ (Oral Lozenge)', '1154029', 'Fentanyl', '90b94524-f913-48b3-3771-7b2fcffd888a', to_date('1/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(120, 'ACTIVASE (Injectable)', '1347450', 'Alteplase', 'c669f77c-fa48-478b-a14b-80b20a0139c2', to_date('3/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(121, 'Activated Charcoal (Oral Liquid)', '1701928', 'Activated Charcoal', 'df1226cb-f2a8-4e91-b265-a08765f7683f', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(122, 'ACTIVON ARTHRITIS (Topical)', '19069019', 'Histamine', 'd123deae-d9ef-45ce-81ed-2d79384b1298', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(123, 'ACTONEL (Oral Pill)', '1516800', 'Risedronate', '4423d70a-b120-4653-bcf3-0c5ea8b97b0e', to_date('12/10/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(124, 'ACTOPLUS MET (Oral Pill)', '1503297', 'Metformin', 'f5c534e8-656c-406d-b3dc-b562576ba4eb', to_date('9/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(125, 'ACTOS (Oral Pill)', '1525215', 'pioglitazone', 'd2ddc491-88a9-4063-9150-443b4fa4330c', to_date('4/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(126, 'ACULAR (Ophthalmic)', '1136980', 'Ketorolac', '5ba45168-ad5d-4ea9-bd85-fc2fa2b13dad', to_date('6/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(127, 'Acyclovir (Buccal)', '1703687', 'Acyclovir', '00f7425a-6236-47ff-a087-f28f8cdb1aec', to_date('8/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(128, 'Acyclovir (Injectable)', '1703687', 'Acyclovir', 'badf347b-eeee-4239-9c74-966f262925aa', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(129, 'Acyclovir (Oral Liquid)', '1703687', 'Acyclovir', '62bdcf22-51f3-4c81-9bd4-a2dc48bec580', to_date('8/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(130, 'Acyclovir (Oral Pill)', '1703687', 'Acyclovir', 'ad26cb5f-123f-4438-ae8d-4c2a40966a38', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(131, 'Acyclovir (Topical)', '1703687', 'Acyclovir', 'ce3d5e8b-9401-40be-8ce7-4ea42113f4ab', to_date('6/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(132, 'Acyclovir/Hydrocortisone (Topical)', '1703687', 'Acyclovir', '3b6ac164-0f1e-4f36-94a1-1fdb07d710f5', to_date('12/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(133, 'ADAGEN (Injectable)', '581480', 'pegademase bovine', '9880b900-ea23-11dc-ad56-0002a5d5c51b', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(134, 'Adapalene (Topical)', '981774', 'adapalene', 'cabba2c1-cf07-46aa-a2c3-1b815517b16b', to_date('2/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(135, 'Adapalene/Benzoyl Peroxide (Topical)', '981774', 'adapalene', '67002593-3bd3-4e91-a48f-9f7483e579a0', to_date('2/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(136, 'ADDERALL (Oral Pill)', '714785', 'Amphetamine', 'f22635fe-821d-4cde-aa12-419f8b53db81', to_date('8/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(137, 'Adefovir (Oral Pill)', '1729323', 'adefovir', 'e047f3b2-feae-4c5e-9d07-1fefb4c0ec25', to_date('12/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(138, 'Adenovirus Type 4 Vaccine Live (Oral Pill)', '40237613', 'Adenovirus Type 4 Vaccine Live', 'c7d0b43c-7250-4809-8a05-fcde5862f076', to_date('6/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(139, 'Adenovirus Type 7 Vaccine Live (Oral Pill)', '40237617', 'Adenovirus Type 7 Vaccine Live', 'c7d0b43c-7250-4809-8a05-fcde5862f076', to_date('6/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(140, 'ADIPEX-P (Oral Pill)', '735340', 'Phentermine', 'b335e637-dca3-45c8-ad12-7eb03be2caaa', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(141, 'ADOXA (Oral Pill)', '1738521', 'Doxycycline', '0cecc43f-cc40-4c48-9e43-ae8d77af4e49', to_date('5/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(142, 'ADRENALIN (Injectable)', '1343916', 'Epinephrine', '3b7a4364-668d-4eb2-a20c-04adc35aabe4', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(143, 'ADVATE (Injectable)', '1352213', 'Factor VIII', '80fa03d2-cd4c-4155-9b57-1396c4fa42da', to_date('6/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(144, 'ADVIL (Chewable)', '1177480', 'Ibuprofen', '07d4c400-b182-92f7-7574-9e0e94c39cce', to_date('1/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(145, 'ADVIL (Oral Liquid)', '1177480', 'Ibuprofen', '3079d932-afb2-94fe-f4ba-a3d8b5198fce', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(146, 'ADVIL (Oral Pill)', '1177480', 'Ibuprofen', 'e4a6219d-4ad4-0119-4cf8-7fc39b4b5979', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(147, 'ADVIL CHILDREN''S COLD (Oral Liquid)', '1177480', 'Ibuprofen', 'f63d1eb1-b51d-de3f-faea-6c4d4b0069c3', to_date('7/1/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(148, 'ADVIL COLD AND SINUS (Oral Pill)', '1177480', 'Ibuprofen', 'fac22a47-f0de-4505-fd8a-768430cda0c1', to_date('3/8/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(149, 'ADVIL CONGESTION RELIEF (Oral Pill)', '1177480', 'Ibuprofen', 'd0002708-271d-98a6-44ca-50906ea18e10', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(150, 'ADVIL PM (Oral Pill)', '1129625', 'Diphenhydramine', 'b876bb40-a38b-445a-bc8a-466b3bfe166d', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(151, 'Afatinib (Oral Pill)', '43533090', 'Afatinib', 'fd638e5e-8032-e7ca-0179-95e96ab5d387', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(152, 'AFREZZA (Inhalant)', '1596977', '"Regular Insulin, Human"', '76fb46f1-82db-40da-ba19-b3a7b0bd78ff', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(153, 'AFRIN (Nasal)', '925636', 'Oxymetazoline', '89c165ba-3ad5-49b5-a5bb-423dc8e15bad', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(154, 'AGGRASTAT (Injectable)', '19017067', 'tirofiban', 'fe0ced75-ccbf-4d2e-bd0d-b57e60ab913f', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(155, 'AGGRENOX (Oral Pill)', '1112807', 'Aspirin', 'e729d829-4bd0-4074-85ea-e0f9f5d7cdb5', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(156, 'AK-CON (Ophthalmic)', '914533', 'Naphazoline', '297f0888-729c-4ce6-8779-6b239abf3c93', to_date('7/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(157, 'ALA-HIST AC (Oral Liquid)', '1201620', 'Codeine', 'ac3d3783-0889-4aab-9d2e-fab799a25f20', to_date('3/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(158, 'ALA-HIST IR (Oral Pill)', '1188052', 'dexbrompheniramine', '0d203b5c-8b10-428b-8703-17be6b4ce6eb', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(159, 'ALA-QUIN (Topical)', '980867', 'Clioquinol', 'd2ae30c6-ad64-47ed-b371-778eaebeeddf', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(160, 'Alatrofloxacin (Injectable)', '19018154', 'alatrofloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', to_date('7/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(161, 'ALAWAY (Ophthalmic)', '986117', 'Ketotifen', 'e4c310b5-1dba-4ddc-bc90-b27ebc765871', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(162, 'Albendazole (Chewable)', '1753745', 'Albendazole', 'e8941166-b77d-45aa-a6e8-04f1c0afd845', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(163, 'Albendazole (Oral Pill)', '1753745', 'Albendazole', 'e8941166-b77d-45aa-a6e8-04f1c0afd845', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(164, 'ALBENZA (Oral Pill)', '1753745', 'Albendazole', 'e8941166-b77d-45aa-a6e8-04f1c0afd845', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(165, 'ALBUKED (Injectable)', '1344143', '"Albumin Human, USP"', '0df480bb-be5e-0e7f-1331-fd4de81d33a6', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(166, '"Albumin Human, USP (Injectable)"', '1344143', '"Albumin Human, USP"', '2eeb6b69-2013-c0a2-5e2f-0365114d41b4', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(167, 'ALBUMINAR-20 (Injectable)', '1344143', '"Albumin Human, USP"', 'a901aa63-3347-4a12-8c74-e7cdd6edbddc', to_date('8/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(168, 'ALBURX (Injectable)', '1344143', '"Albumin Human, USP"', 'ad74b7f5-b380-47ab-b19d-eef92c8eb7a4', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(169, 'Albuterol (Inhalant)', '1154343', 'Albuterol', 'f5c2fe10-c61f-4cbe-bc45-7ab14baa691c', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(170, 'Albuterol (Oral Liquid)', '1154343', 'Albuterol', '8d215fe3-1cf6-4bb3-b005-75f1a9d62235', to_date('3/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(171, 'Albuterol (Oral Pill)', '1154343', 'Albuterol', '87b8cd3c-2849-4b50-b63e-9ea379165c07', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(172, 'Albuterol/Ipratropium (Inhalant)', '1154343', 'Albuterol', 'afcf38bf-b183-4569-b43f-25deb97f6693', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(173, 'Alcaftadine (Ophthalmic)', '40224159', 'alcaftadine', '17d37e8d-7825-424b-b6ca-0a85d0bf4694', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(174, 'ALCAINE (Ophthalmic)', '929504', 'proparacaine', '0c0fa0bf-977d-4539-b8dc-54c187c5b094', to_date('8/5/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(175, 'Alclometasone (Topical)', '905151', 'Alclometasone', '0c2fb9a0-5586-4428-b705-5fa179a73e08', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(176, 'ALCORTIN (Topical)', '975125', 'Hydrocortisone', '995ae132-8e37-4fda-b353-ce79ab9d0bf4', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(177, 'ALCORTIN A (Topical)', '958994', 'Aloe Polysaccharide', '3f2abee4-2841-4725-8c11-aafb35ba6bee', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(178, 'ALDARA (Topical)', '981691', 'imiquimod', '0c3aed27-7b3f-442e-9f60-f2f5c672c85d', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(179, 'Alemtuzumab (Injectable)', '1312706', 'alemtuzumab', '4f5f7255-7abc-4328-bd1a-ceaf139ef3e0', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(180, 'Alendronate (Oral Liquid)', '1557272', 'Alendronate', '307a2b03-72c1-4765-acab-c3d3d60b2b78', to_date('5/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(181, 'Alendronate (Oral Pill)', '1557272', 'Alendronate', '8751ca1c-1d4d-449a-8021-4106e6a08703', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(182, 'Alendronate/Cholecalciferol (Oral Pill)', '1557272', 'Alendronate', 'd4a71df1-7488-46a2-8ded-dd0db56de618', to_date('12/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(183, 'ALEVAZOL (Topical)', '1000632', 'Clotrimazole', 'edd8da89-0b83-4de6-a166-7451d0084169', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(184, 'ALEVE (Oral Pill)', '1115008', 'Naproxen', 'f753a557-6a26-4b5b-bb1e-d9f2b621b846', to_date('9/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(185, 'ALEVE PM (Oral Pill)', '1129625', 'Diphenhydramine', '82891458-ab0d-459a-8602-dcebd22c3010', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(186, 'ALFENTA (Injectable)', '19059528', 'Alfentanil', 'bb56df52-5abf-47dc-ab8d-902cfe19ccb2', to_date('3/19/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(187, 'Alfentanil (Injectable)', '19059528', 'Alfentanil', 'bb56df52-5abf-47dc-ab8d-902cfe19ccb2', to_date('8/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(188, 'Alglucosidase alfa (Injectable)', '19088328', 'alglucosidase alfa', 'd6bfbc45-2d34-439e-8aad-59ee2d53d4df', to_date('1/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(189, 'ALICLEN (Shampoo)', '964407', 'Salicylic Acid', '729fba61-cc44-4110-85bd-4743161dc6c0', to_date('2/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(190, 'ALINIA (Oral Liquid)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', to_date('11/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(191, 'ALINIA (Oral Pill)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', to_date('11/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(192, 'Aliskiren (Oral Pill)', '1317967', 'aliskiren', '4c222831-90af-4336-8bf6-5628ddf24326', to_date('1/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(193, 'Aliskiren/Hydrochlorothiazide (Oral Pill)', '1317967', 'aliskiren', '40d12d97-152d-4fea-bc59-b69e5c29fde2', to_date('11/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(194, 'Alitretinoin (Topical)', '941052', 'alitretinoin', '9cf04dad-e312-4b8f-a297-1e002d43e151', to_date('11/14/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(195, 'ALKA-SELTZER (Effervescent)', '1112807', 'Aspirin', '73e85be6-1236-453b-b41c-37381a054773', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(196, 'ALKA-SELTZER FRUIT CHEWS (Chewable)', '19035704', 'Calcium Carbonate', 'e09648f2-4b46-4461-8554-9c4866650f90', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(197, 'ALKA-SELTZER HEARTBURN RELIEF (Effervescent)', '950435', 'Citric Acid', '672106ae-9e27-4173-b7b7-1f5494643673', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(198, 'ALKA-SELTZER PLUS ALLERGY (Oral Pill)', '1129625', 'Diphenhydramine', '3e8446cc-5cd9-44e6-8bcd-125a61cd5a41', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(199, 'ALKA-SELTZER PLUS MUCUS AND CONGESTION (Oral Pill)', '1119510', 'Dextromethorphan', '7b6c90cc-91a8-4fbc-832b-c9eb38a4ffc8', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(200, 'ALKERAN (Injectable)', '1301267', 'Melphalan', '9706e9a1-96ab-46b8-8846-32ee9d756b1d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(201, 'ALKERAN (Oral Pill)', '1301267', 'Melphalan', 'ff913271-0090-4832-a0fe-5154fe8f97b9', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(202, 'ALKUMS (Chewable)', '19035704', 'Calcium Carbonate', '7451cd9f-1723-46d0-837e-8dc48bfb6bba', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(203, 'Allantoin (Topical)', '966376', 'Allantoin', '5e767dda-b24e-49f4-8323-d429e70e2f6f', to_date('7/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(204, 'Allantoin/DiphenhydrAMINE (Topical)', '966376', 'Allantoin', '5375b99c-ad91-409f-850d-9ea0003b32d3', to_date('4/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(205, 'Allantoin/Lidocaine/Petrolatum (Transdermal)', '966376', 'Allantoin', '26911234-231b-4867-8fa6-3458a352a774', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(206, 'ALLEGRA (Oral Disintegrating)', '1153428', 'fexofenadine', '06115cea-5a44-409d-85ed-bb71743491c1', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(207, 'ALLEGRA (Oral Liquid)', '1153428', 'fexofenadine', '7c25b695-bbed-4ad1-aa47-de47091bc808', to_date('5/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(208, 'ALLEGRA (Oral Pill)', '1153428', 'fexofenadine', 'b82d993a-16ff-4037-a182-7010de8e1cdd', to_date('4/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(209, 'ALLEGRA COOLING RELIEF ANTI-ITCH (Topical)', '966376', 'Allantoin', '5375b99c-ad91-409f-850d-9ea0003b32d3', to_date('4/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(210, 'ALLER-CHLOR (Oral Liquid)', '1192710', 'Chlorpheniramine', '3065bc51-c210-483b-876d-14a4d060bdec', to_date('9/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(211, 'ALLER-CHLOR (Oral Pill)', '1192710', 'Chlorpheniramine', '04ca3806-72be-47d4-9fea-5b0dee087683', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(212, 'ALLER-TEC (Oral Liquid)', '1149196', 'Cetirizine', '9a571e0c-480a-454d-bd2d-33b6a6df6c32', to_date('3/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(213, 'ALLERHIST-1 (Oral Pill)', '1197677', 'Clemastine', '02201bdb-58b9-4662-a2c0-5ff3efa4a1fc', to_date('6/10/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(214, 'ALLFEN DM REFORMULATED JUL 2008 (Oral Pill)', '1119510', 'Dextromethorphan', '17e44510-a6d3-479c-9ebc-20302dcb04cd', to_date('10/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(215, 'ALLI (Oral Pill)', '741530', 'orlistat', 'a2d3bd73-f3af-4ea5-a57c-66b0004cfe4f', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(216, 'Allopurinol (Injectable)', '1167322', 'Allopurinol', '10cc918f-aa44-415b-932d-2404695ac449', to_date('7/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(217, 'Allopurinol (Oral Pill)', '1167322', 'Allopurinol', '4ed35cc1-2648-4659-baa6-b8f5879bcad9', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(218, 'Allscale pollen extract (Injectable)', '40171580', 'Allscale pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(219, 'ALMACONE (Chewable)', '985247', 'Aluminum Hydroxide', '5035a3c0-d7e0-4c77-8b26-7058b6f88029', to_date('6/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(220, 'Almotriptan (Oral Pill)', '1103552', 'almotriptan', '9129bb95-7846-4ed7-bd03-0c17d8963447', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(221, 'ALOCRIL (Ophthalmic)', '1114620', 'Nedocromil', '2fe8d7ad-2158-4169-94b0-719ad20242b7', to_date('1/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(222, 'Aloe Polysaccharide/Hydrocortisone/Iodoquinol (Topical)', '958994', 'Aloe Polysaccharide', '0a1a6d71-2295-4f83-a597-c477cafc56f7', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(223, 'Aloe Polysaccharide/Iodoquinol (Topical)', '958994', 'Aloe Polysaccharide', '179b8b28-c76b-4686-a04c-6b2f90056de9', to_date('7/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(224, 'Aloe vera preparation (Topical)', '1315376', 'Aloe vera preparation', '20d1606d-fdb5-5ce8-e054-00144ff8d46c', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(225, 'ALOE VESTA ANTIFUNGAL (Topical)', '907879', 'Miconazole', 'c664e6c6-2a64-409c-9cb6-969d36fe6763', to_date('12/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(226, 'ALOE VESTA DAILY MOISTURIZER (Topical)', '916662', 'dimethicone', '8d8d9ac8-00b3-4aa1-86b6-9902b4b5369c', to_date('12/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(227, 'ALOE VESTA PROTECTIVE BARRIER (Topical)', '19033354', 'Petrolatum', '10341c96-b4ba-4892-ab68-2ac66f29da96', to_date('4/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(228, 'Alogliptin (Oral Pill)', '43013884', 'alogliptin', 'a3768c7e-aa4c-44d3-bc53-43bb7346c0b0', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(229, 'Alogliptin/metFORMIN (Oral Pill)', '43013884', 'alogliptin', '83cb7914-a683-47bb-a713-f2bc6a596bd2', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(230, 'Alogliptin/Pioglitazone (Oral Pill)', '43013884', 'alogliptin', '4c619ed9-fe3e-4158-9938-80c6c3493d55', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(231, 'ALOMIDE (Ophthalmic)', '967496', 'Lodoxamide', '1b97597f-f2e7-4574-81a8-f35b769c957a', to_date('8/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(232, 'ALOPRIM (Injectable)', '1167322', 'Allopurinol', '10cc918f-aa44-415b-932d-2404695ac449', to_date('7/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(233, 'ALOQUIN (Topical)', '958994', 'Aloe Polysaccharide', '179b8b28-c76b-4686-a04c-6b2f90056de9', to_date('7/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(234, 'Alosetron (Oral Pill)', '948555', 'alosetron', 'e91c4a69-2ad5-4e21-a279-9e1302b1a3d3', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(235, 'ALOXI (Oral Pill)', '911354', 'palonosetron', 'bd06f321-bb42-4748-92f3-d59626b540e0', to_date('11/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(236, 'alpha-Hydroxyprogesterone (Injectable)', '19077143', 'Hydroxyprogesterone', 'a1998c1d-8337-4f00-8dcb-af3b54d39b77', to_date('4/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(237, 'ALPHAQUIN HP (Topical)', '976778', 'hydroquinone', 'f40d8124-60e1-4dd4-a7d5-887db54195cb', to_date('11/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(238, 'ALPRAZolam (Oral Disintegrating)', '781039', 'Alprazolam', 'd956367b-fd7d-46fc-9533-38a6e02b0b59', to_date('3/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(239, 'ALPRAZolam (Oral Liquid)', '781039', 'Alprazolam', 'b945ac6f-796e-41ef-85e9-61007e4a4e9a', to_date('11/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(240, 'ALPRAZolam (Oral Pill)', '781039', 'Alprazolam', 'd7a54ceb-2d80-4879-950f-cad362324086', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(241, 'Alprostadil (Injectable)', '1381504', 'Alprostadil', 'dea460fa-d05e-4191-8461-f185a711ad89', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(242, 'ALREX (Ophthalmic)', '967562', 'loteprednol etabonate', 'cf290d54-26a1-4d22-8cb8-852bdc7b5280', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(243, 'ALTABAX (Topical)', '991003', 'retapamulin', '9fae06b5-bbd5-400a-a7a6-3a4e238361f8', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(244, 'ALTACAINE (Ophthalmic)', '1036884', 'Tetracaine', 'fd57efaa-9129-47e0-8d47-191e0adb620e', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(245, 'Alteplase (Injectable)', '1347450', 'Alteplase', 'c669f77c-fa48-478b-a14b-80b20a0139c2', to_date('3/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(246, 'Altretamine (Oral Pill)', '1368823', 'Altretamine', '90a5e59a-bee8-404a-ad69-fabddeaf27f9', to_date('1/11/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(247, 'Aluminum acetate (Topical)', '930604', 'aluminum acetate', '99d84555-fd44-4115-99b3-54f67266b24c', to_date('3/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(248, 'Aluminum chloride (Mucosal)', '957393', 'aluminum chloride', '6223c9d2-5944-4ca1-bf6f-24047a51a5f5', to_date('6/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(249, 'Aluminum chloride (Topical)', '957393', 'aluminum chloride', 'd09ae142-6fd5-45e4-a9c4-44428885ccaf', to_date('4/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(250, 'Aluminum Hydroxide (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'af9b799f-69c5-401c-9c43-a97b23384cc2', to_date('8/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(251, 'Aluminum Hydroxide (Topical)', '985247', 'Aluminum Hydroxide', 'dcf0aa6c-5fe7-46e3-a418-c79ecaca074c', to_date('11/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(252, 'Aluminum Hydroxide/Magnesium carbonate (Chewable)', '985247', 'Aluminum Hydroxide', '82402593-d5a8-4cdd-b166-8247c1ea058b', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(253, 'Aluminum Hydroxide/Magnesium carbonate (Oral Liquid)', '985247', 'Aluminum Hydroxide', '2d74e5bc-1f10-4fb6-9258-cd906e360013', to_date('8/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(254, 'Aluminum Hydroxide/Magnesium Hydroxide (Oral Liquid)', '985247', 'Aluminum Hydroxide', '5bf7d414-2bea-4b8d-8dd4-a72d7d20f273', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(255, 'Aluminum Hydroxide/Magnesium Hydroxide/Simethicone (Chewable)', '985247', 'Aluminum Hydroxide', '5035a3c0-d7e0-4c77-8b26-7058b6f88029', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(256, 'Aluminum Hydroxide/Magnesium Hydroxide/Simethicone (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'd28d6220-2702-450b-8ec4-32956edb2131', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(257, 'Aluminum Hydroxide/Magnesium trisilicate (Chewable)', '985247', 'Aluminum Hydroxide', '7f367927-c366-465c-a059-e2cfb337d562', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(258, 'Aluminum sulfate/Calcium acetate (Topical)', '19030692', 'aluminum sulfate', '6ebed2f4-6a06-47a3-bde4-c47b32cd81cb', to_date('7/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(259, 'ALUVEA (Topical)', '906914', 'Urea', 'e878410d-6c1c-4580-a9f4-4d6df2c93de3', to_date('4/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(260, 'Alvimopan (Oral Pill)', '19059654', 'alvimopan', '77a67dc6-35d3-48ff-9d18-292d4d442f70', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(261, 'Amantadine (Oral Liquid)', '19087090', 'Amantadine', '2b6e5b07-b3ba-4717-9ccd-029c0b08cc7f', to_date('1/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(262, 'Amantadine (Oral Pill)', '19087090', 'Amantadine', '63d9d4aa-5f92-45b0-98d0-d6ec38b727cb', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(263, 'AMBIEN (Oral Pill)', '744740', 'zolpidem', '38512baf-6bf6-4ffa-807c-02b0140c217c', to_date('6/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(264, 'AMBIEN XR (Oral Pill)', '744740', 'zolpidem', '5a3ad211-f0a5-4238-8a03-1154fac34c86', to_date('6/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(265, 'AMBISOME (Injectable)', '19056402', 'amphotericin B liposomal', 'f7be6506-4d20-401e-a0ff-02ad7c33158a', to_date('11/8/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(266, 'Amcinonide (Topical)', '930747', 'amcinonide', '8aefa477-ac2c-41c8-a807-d24522aed8f0', to_date('7/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(267, 'AMERICAINE HEMORRHOIDAL (Topical)', '917006', 'Benzocaine', 'd13c022f-2f91-40b4-bd66-0cfc0e147a5f', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(268, 'American elm pollen extract (Injectable)', '40161030', 'American elm pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(269, 'American elm pollen extract/Siberian elm pollen extract (Injectable)', '40161030', 'American elm pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(270, 'American house dust mite extract/European house dust mite extract (Injectable)', '40241606', 'American house dust mite extract', '3b3cb12c-65d3-46ab-9bac-82c569a76220', to_date('9/17/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(271, 'AMICAR (Oral Liquid)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(272, 'AMICAR (Oral Pill)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(273, 'Amifostine (Injectable)', '1350040', 'Amifostine', '4cd49351-6dde-4c85-be33-9a20bde785db', to_date('5/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(274, 'Amikacin (Injectable)', '1790868', 'Amikacin', 'a43188fa-f228-4acd-8a5d-9a3462034f4b', to_date('1/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(275, 'aMILoride (Oral Pill)', '991382', 'Amiloride', '875f3f5a-ed45-4646-8537-21f054302d6f', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(276, 'aMILoride/Hydrochlorothiazide (Oral Pill)', '991382', 'Amiloride', '71f5c703-94d4-49b0-9c2d-374b9cbcab85', to_date('11/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(277, 'Aminocaproic Acid (Oral Liquid)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(278, 'Aminocaproic Acid (Oral Pill)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(279, 'Aminolevulinate (Topical)', '924120', 'Aminolevulinate', 'e45cc371-9ebc-4904-12bc-65cb4e2817ad', to_date('1/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(280, 'Aminophylline (Injectable)', '1105775', 'Aminophylline', '754e8580-c710-4a60-8c4e-184be3cf1f41', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(281, 'Aminophylline (Oral Liquid)', '1105775', 'Aminophylline', 'a7c01224-b32b-40ef-935b-164893a93b22', to_date('5/24/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(282, 'Aminosalicylic acid (Oral Granules)', '1726228', 'aminosalicylic acid', '6f2753dc-5f0c-4f49-9335-e519afb69ba6', to_date('6/18/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(283, 'Amiodarone (Oral Pill)', '1309944', 'Amiodarone', '080d74e0-a5c0-49b6-83e4-4ee9e81c345f', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(284, 'AMITIZA (Oral Pill)', '987366', 'lubiprostone', 'ca79dddc-3911-472b-bda7-a23351be09af', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(285, 'Amitriptyline (Oral Pill)', '710062', 'Amitriptyline', 'c7f4d8a8-de3f-447f-8874-c77e6c6fa8f3', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(286, 'Amitriptyline/chlordiazePOXIDE (Oral Pill)', '710062', 'Amitriptyline', '22d710ec-302a-4756-95e3-8ee7957586e4', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(287, 'Amitriptyline/Perphenazine (Oral Pill)', '710062', 'Amitriptyline', 'ca5598e4-4226-45ab-abd1-e961707ae457', to_date('12/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(288, 'amLODIPine (Oral Pill)', '1332418', 'Amlodipine', '82507337-cd5e-48f4-891b-dda1512bcb9f', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(289, 'amLODIPine/Atorvastatin (Oral Pill)', '1332418', 'Amlodipine', 'd2d28679-a01b-4e63-90e2-d5c23b393c94', to_date('7/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(290, 'amLODIPine/Benazepril (Oral Pill)', '1332418', 'Amlodipine', '4da56a43-99aa-46df-aafc-ea193c46e442', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(291, 'amLODIPine/Hydrochlorothiazide/Valsartan (Oral Pill)', '1332418', 'Amlodipine', '680209f4-ad4c-4f97-8b6b-04f648bfb97c', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(292, 'amLODIPine/Olmesartan (Oral Pill)', '1332418', 'Amlodipine', 'd6f37813-40bb-4fe8-99e2-ad2339b8e04a', to_date('1/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(293, 'amLODIPine/Telmisartan (Oral Pill)', '1332418', 'Amlodipine', 'ca60a4d5-ace7-4889-94ee-e2265fd63811', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(294, 'amLODIPine/Valsartan (Oral Pill)', '1332418', 'Amlodipine', 'e05dd72c-7475-422e-bf8e-73148929450e', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(295, 'Ammonia (Nasal)', '42800417', 'Ammonia', 'e25cfc22-29ba-473f-88c4-3c88e9f6863b', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(296, 'AMMONUL (Injectable)', '711452', 'Benzoate', 'e00521d3-84f1-4586-b4a8-9dc17ffffcb1', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(297, 'AMNESTEEM (Oral Pill)', '984232', 'Isotretinoin', 'b2cb63c9-f825-4991-9a2c-6260f1bbcc2c', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(298, 'Amobarbital (Injectable)', '712757', 'Amobarbital', 'a2523317-e071-4e04-9d9f-9053286e0ce2', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(299, 'Amoxapine (Oral Pill)', '713109', 'Amoxapine', '261006c8-3fd0-491b-b322-42beff6f9880', to_date('5/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(300, 'Amoxicillin (Chewable)', '1713332', 'Amoxicillin', 'e91786c4-f928-4419-bd57-eca11498a6e6', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(301, 'Amoxicillin (Oral Liquid)', '1713332', 'Amoxicillin', '83d18b18-1447-443c-8b9c-34b44922ac6a', to_date('9/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(302, 'Amoxicillin (Oral Pill)', '1713332', 'Amoxicillin', 'c2f6b402-27cd-48d4-95ae-6a3f530b0452', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(303, 'Amoxicillin XR (Oral Pill)', '1713332', 'Amoxicillin', '4057faf7-6d45-4d9e-90e9-72a546214d04', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(304, 'Amoxicillin/Clavulanate (Chewable)', '1713332', 'Amoxicillin', '7383df90-6980-4e3b-bcbe-0675c1d26565', to_date('6/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(305, 'Amoxicillin/Clavulanate (Oral Liquid)', '1713332', 'Amoxicillin', 'd13d3912-49e2-4a08-a62e-239730b15cd9', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(306, 'Amoxicillin/Clavulanate (Oral Pill)', '1713332', 'Amoxicillin', 'e340b67b-332e-4e0c-aebf-ad4872dc5ed4', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(307, 'Amphetamine/Dextroamphetamine (Oral Pill)', '714785', 'Amphetamine', 'd63a086a-32e2-49e2-949e-64e4c922775a', to_date('8/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(308, 'Amphotericin B liposomal (Injectable)', '19056402', 'amphotericin B liposomal', 'f7be6506-4d20-401e-a0ff-02ad7c33158a', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(309, 'Ampicillin (Injectable)', '1717327', 'Ampicillin', '8c8b7706-0a2d-4648-91c3-f75808827a0e', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(310, 'Ampicillin (Oral Liquid)', '1717327', 'Ampicillin', '1422ac93-067c-489b-9b95-17cd00303f4c', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(311, 'Ampicillin (Oral Pill)', '1717327', 'Ampicillin', 'be35570c-239f-4320-bbcd-58971810943f', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(312, 'Ampicillin/Sulbactam (Injectable)', '1717327', 'Ampicillin', '2709e9fc-2341-4382-af72-c2e3201bd77a', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(313, 'Amyl Nitrite (Nasal)', '1319051', 'Amyl Nitrite', 'c1b6e536-df5f-4f76-8e3c-6dc2f1e9975e', to_date('3/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(314, 'Amylases/Endopeptidases/Lipase (Oral Pill)', '919204', 'Amylases', '45b9a46b-3294-4604-8aea-60624d663020', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(315, 'AMYTAL SODIUM (Injectable)', '712757', 'Amobarbital', 'a2523317-e071-4e04-9d9f-9053286e0ce2', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(316, 'ANA-LEX (Rectal)', '975125', 'Hydrocortisone', '5b472e48-8f7f-4985-8832-7fdceff76e37', to_date('10/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(317, 'ANADROL-50 (Oral Pill)', '1525741', 'Oxymetholone', '4b9c6c34-9cb2-4d70-b70e-c7ce2fda4212', to_date('10/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(318, 'Anagrelide (Oral Pill)', '1381253', 'anagrelide', '5e6cf1e5-94e4-4124-b7bf-e74647532246', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(319, 'ANALPRAM HC (Rectal)', '975125', 'Hydrocortisone', '27b3c751-d972-4cb9-9235-55e29953bf8d', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(320, 'ANALPRAM HC (Topical)', '975125', 'Hydrocortisone', '1469733e-1723-4b8c-be33-ed8dfafd65e2', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(321, 'ANASPAZ (Oral Disintegrating)', '923672', 'Hyoscyamine', 'e5fd8476-418a-4149-a688-205ea943b30c', to_date('8/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(322, 'Anastrozole (Oral Pill)', '1348265', 'anastrozole', 'f881ec1a-d330-41d8-b633-143875c06ea4', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(323, 'ANBESOL (Mucosal)', '917006', 'Benzocaine', '924a4421-cd8b-8e5c-d7e6-d022fabb694f', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(324, 'ANBESOL (Oral Gel)', '917006', 'Benzocaine', '930ffc21-37d4-5b82-708a-e02d8251a86d', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(325, 'ANCOBON (Oral Pill)', '1755112', 'Flucytosine', 'aea0df00-a88c-4a16-abcf-750f3ff2004e', to_date('11/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(326, 'ANDROXY (Oral Pill)', '1555887', 'Fluoxymesterone', '5328c194-5650-4d1f-9e28-8cea038cce81', to_date('10/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(327, 'ANECREAM (Topical)', '989878', 'Lidocaine', '2d7706e2-7363-4047-96cb-85b718277e8c', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(328, 'ANGIOMAX (Injectable)', '19084670', 'bivalirudin', '799d3b00-809b-4abc-989c-05faccec49f8', to_date('10/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(329, 'Annual bluegrass pollen extract (Injectable)', '40171977', 'annual bluegrass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(330, 'ANTABUSE (Oral Pill)', '735850', 'Disulfiram', 'f0ca0e1f-9641-48d5-9367-e5d1069e8680', to_date('8/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(331, 'ANTARA (Oral Pill)', '1551803', 'Fenofibrate', 'acca05ab-185b-41a6-9ce2-783fc3c3cf96', to_date('2/8/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(332, 'Anthralin (Shampoo)', '952538', 'Anthralin', '253fdee7-5060-4b49-ad26-257eb54cccfa', to_date('10/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(333, 'Anthralin (Topical)', '952538', 'Anthralin', '45bad116-0351-442f-8e49-f11089a955fd', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(334, 'Antipyrine/Benzocaine (Otic)', '1036059', 'Antipyrine', '57b8ea08-c5b1-4d8b-bbff-ad83234e054d', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(335, 'Antipyrine/Benzocaine/Zinc Acetate (Otic)', '1036059', 'Antipyrine', 'cd77f88e-8714-45ca-a385-1ca75b8c94bb', to_date('5/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(336, 'ANTIVERT (Oral Pill)', '994341', 'Meclizine', '305a537b-db97-4c5b-824a-0b97dd4c6dc0', to_date('9/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(337, 'ANUCORT-HC (Rectal)', '975125', 'Hydrocortisone', 'f0f5a107-1236-8e1a-815d-dec8007c2bc9', to_date('8/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(338, 'APEXICON (Topical)', '960988', 'Diflorasone', 'af4c413b-c228-48f0-9ad0-6434d1f921b9', to_date('2/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(339, 'Apixaban (Oral Pill)', '43013024', 'apixaban', 'a454cd24-0c6d-46e8-b1e4-197388606175', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(340, 'Apraclonidine (Ophthalmic)', '919986', 'apraclonidine', 'de798d0d-a93c-40fb-95ea-10a4e6b287b7', to_date('7/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(341, 'Aprepitant (Oral Pill)', '936748', 'aprepitant', 'ec44482e-6194-4829-a3f7-ebe8d48a41a5', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(342, 'Aprotinin (Injectable)', '19000729', 'Aprotinin', '8a5982c6-825f-4d05-90f5-1519a7291d15', to_date('5/17/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(343, 'APTIOM (Oral Pill)', '44507780', 'eslicarbazepine', '3d0c9554-eaeb-4694-8089-00133fcadce3', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(344, 'AQUAFRESH (Toothpaste)', '19068715', 'monofluorophosphate', '22d07313-d22d-4d1c-9c7b-9f1486ac72a5', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(345, 'AQUAFRESH SENSITIVE (Toothpaste)', '927322', 'potassium nitrate', '76adbccb-0812-4407-a6fc-a57e6f144fbb', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(346, 'AQUAPHOR (Topical)', '19033354', 'Petrolatum', '0a17bf6f-6114-4647-a509-65999255c37b', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(347, 'ARBINOXA (Oral Liquid)', '1141018', 'carbinoxamine', '040d6792-21fe-44cc-a441-b9693178b3b5', to_date('6/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(348, 'ARBINOXA (Oral Pill)', '1141018', 'carbinoxamine', '3f4f633c-5c5d-4d52-abb8-dfa2896b40d2', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(349, 'ARCALYST (Injectable)', '19023450', 'rilonacept', '282f4099-e848-432a-bac1-e041c192a5ba', to_date('3/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(350, 'ARESTIN (Oral Powder)', '1708880', 'Minocycline', '8515df41-1936-4f3b-86ba-d2bb2a8441fb', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(351, 'Argatroban (Injectable)', '1322207', 'argatroban', '35db0a86-76af-4f5e-a5c6-0a664f53f6da', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(352, 'Arginine (Injectable)', '19006410', 'Arginine', '6accf33f-9841-4327-8923-93c42020ef12', to_date('4/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(353, 'ARICEPT (Oral Pill)', '715997', 'donepezil', '98e451e1-e4d7-4439-a675-c5457ba20975', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(354, 'ARIMIDEX (Oral Pill)', '1348265', 'anastrozole', '4fee8d4c-bb21-4773-b622-87f9a4ff333a', to_date('2/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(355, 'ARIPiprazole (Oral Liquid)', '757688', 'aripiprazole', 'e7292c4c-e332-4ed4-9086-f130d223b6ae', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(356, 'ARIPiprazole (Oral Pill)', '757688', 'aripiprazole', 'd8275c2d-f42d-4f32-aa9f-03a202c8e99f', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(357, 'Armodafinil (Oral Pill)', '19090984', 'armodafinil', 'e7bfb636-4b0a-440c-a4d3-d26393a14ac5', to_date('5/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(358, 'ARMOUR THYROID (Oral Pill)', '1501309', 'thyroid (USP)', 'c815faa3-1d02-4680-96ef-5fad1645e99b', to_date('8/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(359, 'AROMASIN (Oral Pill)', '1398399', 'exemestane', 'f0b31daa-0792-43d5-af08-8b6a864dc90a', to_date('2/25/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(360, 'Arsenic trioxide (Injectable)', '1333379', 'arsenic trioxide', 'dec51fab-3784-deb7-752f-2d4d5692a20f', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(361, 'ARTHRITEN INFLAMMATORY PAIN (Oral Pill)', '1125315', 'Acetaminophen', 'c280ca89-4fb5-4050-90ee-d706a550a1ef', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(362, 'ARTHROTEC (Oral Pill)', '1124300', 'Diclofenac', 'bdf17a90-9444-4dba-aff6-df27e07f23d5', to_date('6/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(363, 'ARTICADENT (Injectable)', '19080512', 'Articaine', '9ca8fb43-4f34-47c0-8b79-3b5bd1eaee00', to_date('6/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(364, 'ARTISS (Topical)', '19036781', 'Calcium Chloride', '38a6412e-9557-45ad-a917-da15109657ec', to_date('8/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(365, 'ASACOL (Oral Pill)', '968426', 'mesalamine', 'a97c3815-a0d5-4763-8c3f-9caa5dd9b01b', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(366, 'ASCOMP (Oral Pill)', '1112807', 'Aspirin', '243a6aea-0f48-42a9-a85e-ff247ab94336', to_date('11/2/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(367, 'Ascorbic Acid (Injectable)', '19011773', 'Ascorbic Acid', 'af67a2f3-65b7-4a6e-9a51-315a280f976b', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(368, 'Ascorbic Acid/Cholecalciferol/Sodium Fluoride/Vitamin A (Oral Liquid)', '19011773', 'Ascorbic Acid', 'c64addb4-13cf-4857-8192-eb82903999b7', to_date('9/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(369, 'Ascorbic Acid/Docusate/Folic Acid/Iron Carbonyl/Vitamin B 12 (Oral Pill)', '19011773', 'Ascorbic Acid', '2c9fd33d-4b38-42be-ad36-b1521ded47e1', to_date('5/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(370, 'Ascorbic Acid/Ferrous fumarate/Folic Acid/Liver stomach concentrate/Vitamin B 12 (Oral Pill)', '19011773', 'Ascorbic Acid', 'd891ab47-4a05-4b5b-b372-7ddf91699c29', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(371, 'Ascorbic Acid/Ferrous fumarate/Folic Acid/Vitamin B 12 (Oral Pill)', '19011773', 'Ascorbic Acid', '898d31a9-5864-4bf4-94cb-cb50736c4fbb', to_date('7/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(372, 'Ascorbic Acid/Ferrous sulfate/Folic Acid XR (Oral Pill)', '19011773', 'Ascorbic Acid', 'be17e959-b6d8-4cda-b064-2d28842d1e5b', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(373, 'Ascorbic Acid/Iron Carbonyl (Oral Pill)', '19011773', 'Ascorbic Acid', 'c81325e0-c2db-4412-89a9-236a6733f229', to_date('10/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(374, 'ASCRIPTIN (Oral Pill)', '1112807', 'Aspirin', '4f676dc2-71de-431a-82ef-53c6bb9a6e01', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(375, 'Asenapine (Sublingual)', '40164052', 'Asenapine', '03c696e9-0e6b-4e5c-be0a-41416f8019be', to_date('2/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(376, 'Aspergillus fumigatus extract (Injectable)', '40161048', 'Aspergillus fumigatus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(377, 'ASPIR-LOW (Oral Pill)', '1112807', 'Aspirin', '50c157d7-ea12-4a55-82ba-4190bd1fd4c5', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(378, 'Aspirin (Chewable)', '1112807', 'Aspirin', '6c7db6a8-f017-4a15-a4a8-4fba82ff658d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(379, 'Aspirin (Oral Disintegrating)', '1112807', 'Aspirin', '73859ea9-01a0-4c3d-97d4-17b9d3378899', to_date('12/1/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(380, 'Aspirin (Oral Pill)', '1112807', 'Aspirin', '5e1484d3-5be1-40da-a3bf-fb19f7d27d45', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(381, 'Aspirin (Rectal)', '1112807', 'Aspirin', 'cce244aa-cd79-49c8-b68e-267f2bd0ef67', to_date('9/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(382, 'Aspirin/Butalbital/Caffeine (Oral Pill)', '1112807', 'Aspirin', '5cd45280-2b8c-4ba8-bde9-db687d96847f', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(383, 'Aspirin/Butalbital/Caffeine/Codeine (Oral Pill)', '1112807', 'Aspirin', '243a6aea-0f48-42a9-a85e-ff247ab94336', to_date('9/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(384, 'Aspirin/Caffeine (Oral Pill)', '1112807', 'Aspirin', 'f43685f0-d7f4-40b9-9de4-1ee272e7b085', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(385, 'Aspirin/Caffeine (Oral Powder)', '1112807', 'Aspirin', '0908e63c-9700-4647-856c-6b02b03f62a1', to_date('1/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(386, 'Aspirin/Caffeine/Dihydrocodeine (Oral Pill)', '1112807', 'Aspirin', '3e863ce5-936c-4145-b14b-76670e21bdad', to_date('5/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(387, 'Aspirin/Caffeine/Orphenadrine (Oral Pill)', '1112807', 'Aspirin', '8e41b33e-f71f-4a5e-b88f-cdfefb2bee20', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(388, 'Aspirin/Carisoprodol/Codeine (Oral Pill)', '1112807', 'Aspirin', 'dcae7a8a-9d9e-4f7f-954c-39e371f30f75', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(389, 'Aspirin/Chlorpheniramine/Dextromethorphan/Phenylephrine (Effervescent)', '1112807', 'Aspirin', '78537dcf-b157-4b67-a8b2-5cb144815166', to_date('8/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(390, 'Aspirin/Chlorpheniramine/Phenylephrine (Effervescent)', '1112807', 'Aspirin', 'd443a030-d3d6-40e0-8fe0-329de6bc494f', to_date('3/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(391, 'Aspirin/Citric Acid/Sodium Bicarbonate (Effervescent)', '1112807', 'Aspirin', '528da9d9-2a52-4c16-b7b2-61b3eee1abea', to_date('6/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(392, 'Aspirin/Dextromethorphan/Doxylamine/Phenylephrine (Effervescent)', '1112807', 'Aspirin', '0c397cf2-5b2c-0eca-e054-00144ff8d46c', to_date('1/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(393, 'Aspirin/DiphenhydrAMINE (Oral Pill)', '1112807', 'Aspirin', '0c79f57f-7fc9-39a5-e054-00144ff88e88', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(394, 'Aspirin/Dipyridamole (Oral Pill)', '1112807', 'Aspirin', 'f07c8535-f9fb-4697-9b63-1ab22210efc9', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(395, 'Aspirin/Meprobamate (Oral Pill)', '1112807', 'Aspirin', '941e1ec2-1f14-4153-a5ea-cf7669d5efd1', to_date('1/25/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(396, 'Aspirin/oxyCODONE (Oral Pill)', '1112807', 'Aspirin', '23a60947-6058-4bf7-a3ee-ae396e55d939', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(397, 'ASTHMANEFRIN (Inhalant)', '1300153', 'Racepinephrine', '80480838-832c-4fdd-9f8e-f6f877ae3549', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(398, 'ASTRAMORPH (Injectable)', '1110410', 'Morphine', 'ca44184d-4d3b-4fda-c288-8c32527ea6ca', to_date('9/4/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(399, 'ATACAND (Oral Pill)', '1351557', 'candesartan', 'd0c94743-cb17-4581-962e-7add11ae52e7', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(400, 'ATACAND HCT (Oral Pill)', '1351557', 'candesartan', '8e50e65d-b79b-46b4-a147-796cb19f1407', to_date('2/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(401, 'ATARAX (Oral Liquid)', '777221', 'Hydroxyzine', '7eaf5043-5c73-47af-904b-8e1fae02af2e', to_date('9/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(402, 'ATARAX (Oral Pill)', '777221', 'Hydroxyzine', '7eaf5043-5c73-47af-904b-8e1fae02af2e', to_date('9/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(403, 'Atazanavir (Oral Pill)', '1727223', 'Atazanavir', '025876b6-f031-43ea-967a-b1d95b4685a6', to_date('2/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(404, 'Atenolol (Injectable)', '1314002', 'Atenolol', '4f266bf9-05ba-45bd-f683-d156c06d9acc', to_date('12/8/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(405, 'Atenolol (Oral Pill)', '1314002', 'Atenolol', '31f260a1-28e5-4693-95bf-36c5152d81df', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(406, 'Atenolol/Chlorthalidone (Oral Pill)', '1314002', 'Atenolol', '84e9de8f-27c3-4177-827a-6992495511ac', to_date('5/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(407, 'ATGAM (Injectable)', '19061406', 'Lymphocyte immune globulin', 'bd545ba1-2366-4df1-bd67-10dfd7632b54', to_date('4/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(408, 'ATIVAN (Injectable)', '791967', 'Lorazepam', '5fc0e987-61c9-40c4-b0d5-fcea07c8733e', to_date('4/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(409, 'ATIVAN (Oral Pill)', '791967', 'Lorazepam', '89057c93-8155-4040-acec-64e877bd2b4c', to_date('5/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(410, 'Atomoxetine (Oral Pill)', '742185', 'atomoxetine', '6a7584b5-524d-4726-86a2-1b08e422f60e', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(411, 'Atorvastatin (Oral Pill)', '1545958', 'atorvastatin', '8f71bea6-2fd0-44ae-afd9-727d365293a0', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(412, 'Atorvastatin/Ezetimibe (Oral Pill)', '1545958', 'atorvastatin', 'c387354c-607b-474d-b2e5-d35c789ce09b', to_date('9/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(413, 'Atovaquone/Proguanil (Oral Pill)', '1781733', 'Atovaquone', 'c50d51ab-23c2-45cb-8f68-08f3454fb59b', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(414, 'Atracurium (Injectable)', '19014341', 'Atracurium', 'ca9e266c-8264-46f4-9df3-8d86a9d8437f', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(415, 'ATRALIN (Topical)', '903643', 'Tretinoin', 'b6b45969-a64a-4ce3-b3b6-157d2568a301', to_date('1/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(416, 'ATRIDOX (Oral Gel)', '1738521', 'Doxycycline', '2c718fc7-2921-4d02-b273-784e513f8299', to_date('11/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(417, 'ATRIPLA (Oral Pill)', '1738135', 'efavirenz', '5c6c7ba4-6d42-4e07-a127-b3cf72c866ad', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(418, 'Atropine (Injectable)', '914335', 'Atropine', 'baf1529e-737d-4cbc-9111-6e5d89525051', to_date('9/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(419, 'Atropine (Ophthalmic)', '914335', 'Atropine', 'c0a56d60-0914-42b1-af59-c56afe93d18c', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(420, 'Atropine/Diphenoxylate (Oral Liquid)', '914335', 'Atropine', '88ed4ccf-9e35-4142-a5eb-d2b5edd36956', to_date('10/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(421, 'Atropine/Diphenoxylate (Oral Pill)', '914335', 'Atropine', '6f76c6d2-7a30-43cd-8c2b-d6a12f8fc867', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(422, 'Atropine/Edrophonium (Injectable)', '914335', 'Atropine', '358336e5-3628-49ec-9134-6ec8c4ea733a', to_date('12/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(423, 'Atropine/Hyoscyamine/PHENobarbital/Scopolamine (Oral Liquid)', '914335', 'Atropine', 'ddff0982-3502-4db6-ae73-c77a0250dea8', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(424, 'Atropine/Hyoscyamine/PHENobarbital/Scopolamine (Oral Pill)', '914335', 'Atropine', '1cc18146-d9be-4975-89ba-e99a85f71c76', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(425, 'Atropine/Hyoscyamine/PHENobarbital/Scopolamine XR (Oral Pill)', '914335', 'Atropine', '2064014b-6f8e-4232-88c2-d1870042abc7', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(426, 'AUGMENTIN (Oral Liquid)', '1713332', 'Amoxicillin', '55aefa88-46fc-2b73-0819-0c2f88274852', to_date('3/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(427, 'AUGMENTIN (Oral Pill)', '1713332', 'Amoxicillin', '174cc098-fe49-4f1a-87e2-601c7573f0db', to_date('3/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(428, 'Auranofin (Oral Pill)', '1114771', 'Auranofin', '05c34ddf-a0f7-4267-83f5-d02be3defc37', to_date('12/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(429, 'AURO EAR (Otic)', '958999', 'carbamide peroxide', '924e613b-4952-4861-aac7-b8534ea0f305', to_date('3/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(430, 'AURODEX (Otic)', '1036059', 'Antipyrine', 'fa67ddca-a12e-4798-b170-843cd8e7afeb', to_date('12/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(431, 'Aurothiomalate (Injectable)', '1152134', 'Aurothiomalate', 'a29045b5-ba4f-407a-a0fd-3ef7e1ce64ee', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(432, 'Austrian pine pollen extract (Injectable)', '40171641', 'Austrian pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(433, 'AVAGE (Topical)', '947416', 'tazarotene', 'cd8a3be3-8f83-42cf-8752-6fd16da65150', to_date('3/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(434, 'AVALIDE (Oral Pill)', '974166', 'Hydrochlorothiazide', '716ab835-584e-4bdc-ac7c-f685d88b4dad', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(435, 'AVANDAMET (Oral Pill)', '1503297', 'Metformin', 'e77a8504-b49f-4343-beaf-6e4c2c59ab45', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(436, 'AVANDIA (Oral Pill)', '1547504', 'rosiglitazone', 'ec682aec-e98f-41a1-9d21-eb7580ea3a8a', to_date('6/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(437, 'AVAPRO (Oral Pill)', '1347384', 'irbesartan', 'c6f1e307-9107-431b-9a49-38049e429494', to_date('4/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(438, 'AVAR (Soap)', '1036252', 'Sulfacetamide', '1947cbbf-da90-1520-e054-00144ff88e88', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(439, 'AVAR (Topical)', '1036252', 'Sulfacetamide', 'a57968d2-8012-46a8-9f77-e16ad4e86335', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(440, 'AVEENO ACTIVE NATURALS (Topical)', '986261', 'Colloidal oatmeal', 'b6de08f0-3cdb-4ac1-a958-c94c9f0e9a2a', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(441, 'AVEENO ACTIVE NATURALS NOURISH PLUS DANDRUFF CONTROL (Shampoo)', '944360', 'zinc pyrithione', '2481d840-45c3-46ac-8368-e4835d685669', to_date('10/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(442, 'AVEENO ACTIVE NATURALS SKIN RELIEF (Topical)', '916662', 'dimethicone', 'bfbf4bf8-7dad-46d7-baeb-66a691652702', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(443, 'AVEENO ANTI-ITCH REFORMULATED JUN 2007 (Topical)', '902616', 'Calamine', 'a042095e-a139-4c5d-8ffb-39e37da2a93a', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(444, 'AVEENO BABY (Topical)', '916662', 'dimethicone', '1267319e-9e40-403f-a259-834b4423b567', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(445, 'AVEENO BABY DIAPER RASH CREAM (Topical)', '911064', 'Zinc Oxide', '1267319e-9e40-403f-a259-834b4423b567', to_date('6/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(446, 'AVEENO HEALING OINTMENT (Topical)', '19033354', 'Petrolatum', '6d798970-c36e-4ee3-9ef8-d1d6245b5f6c', to_date('7/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(447, 'AVELOX (Oral Pill)', '1716903', 'moxifloxacin', 'ebe94683-8fd8-4d99-aa13-46ce14dbcd62', to_date('12/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(448, 'AVITA (Topical)', '903643', 'Tretinoin', '96c39a66-20b0-4c39-a665-c54a2531f096', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(449, 'AVODART (Oral Pill)', '989482', 'Dutasteride', '813507ec-1fc1-420f-ac5c-5c794b1059cd', to_date('12/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(450, 'AVONEX (Injectable)', '722424', 'Interferon beta-1a', '0de49d64-3e18-494c-bf14-bc152247c798', to_date('10/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(451, 'AXERT (Oral Pill)', '1103552', 'almotriptan', '886c13fa-4547-4411-88aa-8e23a7a698f6', to_date('10/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(452, 'AXID AR (Oral Pill)', '950696', 'Nizatidine', '5c371d53-b93d-565e-bae6-1354c99d9035', to_date('6/22/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(453, 'Axitinib (Oral Pill)', '42709322', 'axitinib', '84137882-e000-47da-bd5b-fa76ab3c76f9', to_date('8/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(454, 'azaCITIDine (Injectable)', '1314865', 'Azacitidine', 'e437efe0-9c6a-4f87-b3b4-de90443b095f', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(455, 'AZASITE (Ophthalmic)', '1734104', 'Azithromycin', '14ae4c07-b042-452a-b069-2b41bc646e04', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(456, 'azaTHIOprine (Oral Pill)', '19014878', 'Azathioprine', 'e385894f-212b-4582-a63a-a0767fd97645', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(457, 'Azelastine (Ophthalmic)', '934075', 'azelastine', 'f2f72f86-c1c8-11df-851a-0800200c9a66', to_date('4/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(458, 'Azelate (Topical)', '986790', 'Azelate', 'b086c825-401e-48e7-a6dd-2ad7423e86a0', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(459, 'Azelate/Cupric oxide/Folic Acid/Niacinamide/Pyridoxine/Zinc Oxide (Oral Pill)', '986790', 'Azelate', '1482d448-0f34-4aa6-b461-cb145404f6bc', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(460, 'AZELEX (Topical)', '986790', 'Azelate', '0d5269d5-6555-4d2c-bc3b-df862b014275', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(461, 'Azficel-T (Injectable)', '40241205', 'azficel-T', '4a41354f-c689-4216-82cc-bfc572f16374', to_date('1/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(462, 'AZILECT (Oral Pill)', '715710', 'rasagiline', 'a40d0e73-3f9f-4b01-979d-402c9cdaeb60', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(463, 'Azilsartan (Oral Pill)', '40235485', 'azilsartan', '52b27c75-9f5a-4816-bafd-dace9d7d2063', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(464, 'Azilsartan/Chlorthalidone (Oral Pill)', '40235485', 'azilsartan', 'e60f795b-fce3-4361-aa03-f143451689d1', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(465, 'Azithromycin (Ophthalmic)', '1734104', 'Azithromycin', '14ae4c07-b042-452a-b069-2b41bc646e04', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(466, 'Azithromycin (Oral Liquid)', '1734104', 'Azithromycin', '035ce971-cf46-40c0-9b2f-ae52ab4e3468', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(467, 'Azithromycin (Oral Pill)', '1734104', 'Azithromycin', '7e7c2f49-449c-4ba2-98ae-0ff0c040614c', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(468, 'AZO URINARY PAIN RELIEF (Oral Pill)', '933724', 'Phenazopyridine', 'b2c6bb64-bb81-413c-8a6b-0420d2573ab6', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(469, 'AZO-GESIC (Oral Pill)', '933724', 'Phenazopyridine', 'b10d0f4e-4f52-4fec-9d49-289fb9c84cd8', to_date('10/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(470, 'AZOPT (Ophthalmic)', '938044', 'brinzolamide', 'e9ea2ae7-1b98-4034-9fba-8ce2225e0145', to_date('3/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(471, 'AZOR (Oral Pill)', '1332418', 'Amlodipine', 'd6f37813-40bb-4fe8-99e2-ad2339b8e04a', to_date('1/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(472, 'BABY ANTI MONKEY BUTT DIAPER RASH CREAM (Topical)', '902616', 'Calamine', 'd95eeedb-393e-0859-19ef-72bb421e3046', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(473, 'BABY ANTI MONKEY BUTT DIAPER RASH POWDER (Topical)', '902616', 'Calamine', 'd9d6ea6f-0793-3c9d-f92c-a9e2f0bee20b', to_date('7/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(474, 'BABYBIG (Injectable)', '19072699', 'Botulism Immune Globulin IV Human', '9ec59262-35c1-4d8e-8451-a7cfbacb0675', to_date('11/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(475, 'Bacitracin (Injectable)', '915175', 'Bacitracin', 'a3d2f60c-d3e8-4ce8-92eb-d3044783e5dd', to_date('11/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(476, 'Bacitracin (Ophthalmic)', '915175', 'Bacitracin', 'b2983ec7-5f63-4909-891b-92214d3a637f', to_date('6/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(477, 'Bacitracin (Topical)', '915175', 'Bacitracin', 'c4b90624-4713-401f-90c8-77df632409f9', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(478, 'Bacitracin/Dimethicone/Zinc Oxide (Topical)', '915175', 'Bacitracin', 'f439fb97-0722-42ee-bc90-67daf0497aa8', to_date('11/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(479, 'Bacitracin/Hydrocortisone/Neomycin/Polymyxin B (Ophthalmic)', '915175', 'Bacitracin', 'ce7ded34-66ab-4b6d-a9d7-fcf0c8d86eaa', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(480, 'Bacitracin/Hydrocortisone/Neomycin/Polymyxin B (Topical)', '915175', 'Bacitracin', '097a7a8d-04d4-4736-c8b7-0796117457bf', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(481, 'Bacitracin/Lidocaine/Neomycin/Polymyxin B (Topical)', '915175', 'Bacitracin', 'd7d8b557-93a1-436b-a67a-5333e749c9c9', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(482, 'Bacitracin/Neomycin/Polymyxin B (Ophthalmic)', '915175', 'Bacitracin', 'e58d6e45-36bc-4ffc-8860-3befe2ed2396', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(483, 'Bacitracin/Neomycin/Polymyxin B (Topical)', '915175', 'Bacitracin', '58ff1e78-5690-48ac-93ee-774604bbf73d', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(484, 'Bacitracin/Neomycin/Polymyxin B/Pramoxine (Topical)', '915175', 'Bacitracin', 'fe7c7e73-168f-4af3-ad50-6318b91f4d9c', to_date('6/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(485, 'Bacitracin/Polymyxin B (Ophthalmic)', '915175', 'Bacitracin', 'c6c69fa4-d7be-4c09-b7fa-53c40fad78a7', to_date('10/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(486, 'Bacitracin/Polymyxin B (Topical)', '915175', 'Bacitracin', 'dd7aceb6-0666-4059-b2a9-8e7fe5f3f0ac', to_date('11/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(487, 'BACKAID IPF (Oral Pill)', '1125315', 'Acetaminophen', 'b1dc7b4d-ef8d-4d00-90f1-107eb34e4fc5', to_date('10/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(488, 'Baclofen (Oral Disintegrating)', '715233', 'Baclofen', 'f133fe04-1550-4fa4-9dc4-652c27936bf2', to_date('9/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(489, 'Baclofen (Oral Pill)', '715233', 'Baclofen', '07730b69-3b5b-492d-b10e-5826013f8997', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(490, 'BACTINE (Topical)', '916460', 'Benzalkonium', '60476e61-e2b8-47bd-b391-533ec510658e', to_date('7/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(491, 'BACTRIM (Oral Pill)', '1836430', 'Sulfamethoxazole', 'f59d0c04-9c66-4d53-a0e1-cb55570deb62', to_date('1/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(492, 'BACTROBAN (Nasal)', '951511', 'Mupirocin', 'c142ab8f-fa5c-471a-a49a-058ab8ec023b', to_date('3/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(493, 'BACTROBAN (Topical)', '951511', 'Mupirocin', '76bdab9d-9153-4db6-9b9a-ff376374a8ea', to_date('12/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(494, 'BAL IN OIL (Injectable)', '1728903', 'Dimercaprol', '2ed1fc15-ca74-400e-bfdb-64483b2c590b', to_date('5/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(495, 'BALMEX (Topical)', '911064', 'Zinc Oxide', 'b877ec82-e5bb-cd18-a295-bbd4fc29fd17', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(496, 'BALMEX OINTMENT (Topical)', '19033354', 'Petrolatum', 'a9e48059-1319-4cd4-9be5-5376eaf8bbf3', to_date('3/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(497, 'Balsalazide (Oral Pill)', '934262', 'balsalazide', '509b83b6-cde6-393b-8560-557793b6a529', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(498, 'BANALG (Topical)', '901656', 'Menthol', '5b4c09e6-4228-47d5-b8f2-5959f8aede38', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(499, 'BANOPHEN (Oral Liquid)', '1129625', 'Diphenhydramine', '9f40ea06-bd0b-4db8-91d6-774f65a7f345', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(500, 'BANOPHEN (Oral Pill)', '1129625', 'Diphenhydramine', 'cb498f07-75fe-47d5-9620-f87405d168af', to_date('4/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(501, 'BANOPHEN CREAM (Topical)', '1129625', 'Diphenhydramine', 'e79cf602-dc91-4fb9-844d-efed58e728d9', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(502, 'Barley smut extract (Injectable)', '40175802', 'barley smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(503, 'BAYCADRON (Oral Liquid)', '1518254', 'Dexamethasone', 'e59d3b87-af2e-4262-b89d-e95aa79f11b7', to_date('7/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(504, 'BAYER ASPIRIN (Chewable)', '1112807', 'Aspirin', '070d5713-e018-2913-e054-00144ff8d46c', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(505, 'BAYER ASPIRIN (Oral Pill)', '1112807', 'Aspirin', '751e8cde-0dd8-483f-8e81-61f86203db1c', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(506, 'BAYER ASPIRIN PM REFORMULATED NOV 2011 (Oral Pill)', '1112807', 'Aspirin', '0c79f57f-7fc9-39a5-e054-00144ff88e88', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(507, 'BAZA CLEANSE AND PROTECT (Topical)', '916662', 'dimethicone', 'ca5fa4ae-c18d-4457-b520-4a9318ea821f', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(508, 'BAZA CLEAR (Topical)', '19033354', 'Petrolatum', '69d9f456-1a35-4146-8366-c0285648a172', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(509, 'BAZA-PROTECT (Topical)', '916662', 'dimethicone', 'ed63df26-3879-46df-8e09-10be569b25be', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(510, '"Bazedoxifene/Estrogens, Conjugated (USP) (Oral Pill)"', '44506794', 'bazedoxifene', 'e1b75458-2e5b-46b9-92c6-fa6daba3770f', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(511, 'BC ORIGINAL FORMULA (Oral Powder)', '1112807', 'Aspirin', '0908e63c-9700-4647-856c-6b02b03f62a1', to_date('1/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(512, '"BCG, Live, Connaught Strain (Topical)"', '19023835', '"BCG, Live, Connaught Strain"', '8e456333-5a25-4484-84bf-53ece67c000a', to_date('11/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(513, 'BEBULIN (Injectable)', '1351935', 'factor IX', 'b375a2fb-7bd4-486c-87f6-72237713d528', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(514, 'Becaplermin (Topical)', '912476', 'Becaplermin', 'fd2c7d21-7b07-4ab3-8983-816ab3223771', to_date('3/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(515, 'BEDSIDE-CARE (Topical)', '916802', 'Benzethonium', '3e8a37f0-3b44-4bba-8987-2717b54419f1', to_date('12/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(516, 'Beech pollen extract (Injectable)', '40161542', 'beech pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(517, 'Belatacept (Injectable)', '40239665', 'belatacept', 'c16ac648-d5d2-9f7d-8637-e2328572754e', to_date('10/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(518, 'BELEODAQ (Injectable)', '45776670', 'belinostat', '84b2e16e-f0d1-4757-8da8-79dfa83aab79', to_date('7/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(519, 'Belinostat (Injectable)', '45776670', 'belinostat', '84b2e16e-f0d1-4757-8da8-79dfa83aab79', to_date('7/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(520, 'Belladonna Alkaloids/Opium (Rectal)', '1116109', 'Belladonna Alkaloids', '8301e76b-134a-43d2-a7dc-c600ccf2695c', to_date('9/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(521, 'BELSOMRA (Oral Pill)', '45775760', 'Suvorexant', 'e5b72731-1acb-45b7-9c13-290ad12d3951', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(522, 'BENADRYL (Oral Liquid)', '1129625', 'Diphenhydramine', 'fc9181b9-c92d-493e-8d7c-4a4239c6c092', to_date('10/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(523, 'BENADRYL (Oral Pill)', '1129625', 'Diphenhydramine', '53de0882-12ad-4c5c-bdb8-85d40d1da5e6', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(524, 'BENADRYL (Topical)', '1129625', 'Diphenhydramine', 'f230079e-41f3-40f2-93f0-4052e5d84095', to_date('9/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(525, 'BENADRYL CHILDREN''S ANTI-ITCH (Topical)', '938205', 'Camphor', '36edeed8-894b-4f49-bb9a-9b43181b4906', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(526, 'BENADRYL ITCH STOPPING (Topical)', '1129625', 'Diphenhydramine', '3ef170f8-f60c-48ea-b21f-742e84484a4c', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(527, 'BENADRYL-D ALLERGY AND SINUS (Oral Liquid)', '1129625', 'Diphenhydramine', 'b8b75904-3806-4258-89c1-d6ff486ed41c', to_date('9/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(528, 'Benazepril (Oral Pill)', '1335471', 'benazepril', '47394912-aca4-4b62-8c7e-791eae1d69be', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(529, 'Benazepril/Hydrochlorothiazide (Oral Pill)', '1335471', 'benazepril', '1ea9c4d0-a5ce-5961-e054-00144ff88e88', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(530, 'Bendroflumethiazide/Nadolol (Oral Pill)', '1316354', 'Bendroflumethiazide', 'd2d226ea-1624-47ee-82bf-e9660b75029f', to_date('11/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(531, 'BENGAY (Topical)', '901656', 'Menthol', 'bc34dc2a-fb50-4a58-8cdb-7d56426c6b37', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(532, 'BENGAY (Transdermal)', '901656', 'Menthol', 'f6ae09c0-5915-468c-8aec-16857c47df6b', to_date('9/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(533, 'BENGAY ORIGINAL (Topical)', '901656', 'Menthol', '8aede1af-1547-47c7-9317-528be697677f', to_date('4/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(534, 'BENICAR (Oral Pill)', '40226742', 'olmesartan', 'b2d10788-e0e4-4ee8-8c47-d7f7ed44e3d9', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(535, 'BENICAR HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', '9b91af80-14ff-4ece-8647-4265b7fa6240', to_date('12/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(536, 'BENOXYL (Soap)', '918172', 'Benzoyl Peroxide', '06b7b534-9749-4f3d-ba4f-0787eb2e52e3', to_date('8/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(537, 'BENSAL (Topical)', '964407', 'Salicylic Acid', '4b8ccee9-0f26-416d-a6e5-1261408df899', to_date('4/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(538, 'Bentoquatam (Topical)', '915518', 'bentoquatam', 'd3b3f56d-d1d5-4435-8ac7-a2118f108a9b', to_date('5/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(539, 'BENZ-O-STHETIC (Mucosal)', '917006', 'Benzocaine', '92f1bddd-71af-427a-bce6-727adca90999', to_date('6/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(540, 'BENZACLIN (Topical)', '918172', 'Benzoyl Peroxide', '4c6b2aca-d940-42af-a068-418f015d277a', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(541, 'Benzalkonium (Topical)', '916460', 'Benzalkonium', '20cafd74-691f-45a0-b3e8-ca15a0f735ce', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(542, 'Benzalkonium/Benzocaine (Topical)', '916460', 'Benzalkonium', '2f685c77-86d2-4558-80e0-550846598e76', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(543, 'Benzalkonium/Benzocaine (Vaginal)', '916460', 'Benzalkonium', '4ff50f17-7679-4a7a-994a-bda6cd23cb90', to_date('1/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(544, 'Benzalkonium/Benzocaine/Zinc chloride (Oral Gel)', '916460', 'Benzalkonium', '77f84651-7706-4042-acdd-dc68ba97771d', to_date('1/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(545, 'Benzalkonium/Camphor (Topical)', '916460', 'Benzalkonium', '70afbecc-f39b-48d7-9839-907a786a8c29', to_date('7/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(546, 'Benzalkonium/Lidocaine (Topical)', '916460', 'Benzalkonium', '0af5dc2e-09ce-4bc9-911f-ec2fd8f1e426', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(547, 'Benzalkonium/Pramoxine (Topical)', '916460', 'Benzalkonium', 'a092b2ff-18fb-481a-a17d-984a91cbaec7', to_date('7/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(548, 'BENZAMYCIN (Topical)', '918172', 'Benzoyl Peroxide', '67823063-91a6-4867-a855-7ce0a4a09bd6', to_date('4/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(549, 'BENZEDREX (Nasal)', '954036', 'propylhexedrine', '03a8ef3c-a808-6208-e054-00144ff8d46c', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(550, 'BENZEFOAM (Topical)', '918172', 'Benzoyl Peroxide', '11c49c9d-0164-4e91-881f-34e02987a45d', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(551, 'BENZEPRO (Topical)', '918172', 'Benzoyl Peroxide', '890ed265-1217-4fa6-b7f1-a7246dbe137e', to_date('8/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(552, 'Benzethonium (Soap)', '916802', 'Benzethonium', 'd18f0132-fef2-4de5-a4ff-c6e0df9d7f11', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(553, 'Benzethonium (Topical)', '916802', 'Benzethonium', 'a2b08b63-decd-4f2b-98ab-8703d9a55f93', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(554, 'Benzethonium/Benzocaine (Topical)', '916802', 'Benzethonium', '4b965cd3-bfe4-4aad-a52c-b747696baa1c', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(555, 'Benzethonium/Benzocaine/Menthol (Topical)', '916802', 'Benzethonium', 'b780da38-8568-43e1-ab4a-5b69e4f55b19', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(556, 'Benzethonium/Dyclonine (Topical)', '916802', 'Benzethonium', '37a75879-accb-4a6a-b8dd-558b94450fc4', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(557, 'Benzethonium/Lidocaine (Topical)', '916802', 'Benzethonium', '09b1372c-a5a3-4d89-9b8e-4523f6a0341f', to_date('6/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(558, 'BENZO-JEL (Oral Gel)', '917006', 'Benzocaine', 'e735d183-609e-53d6-6640-293356e0a8f0', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(559, 'Benzoate/Hyoscyamine/Methenamine/Methylene blue/Phenyl salicylate (Oral Pill)', '711452', 'Benzoate', '694d83e1-7ec0-42af-b906-bdf9ac521cd8', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(560, 'Benzoate/Phenylacetate (Injectable)', '711452', 'Benzoate', 'd564f2b1-9fc7-4201-8066-d745ac3a671f', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(561, 'Benzocaine (Mucosal)', '917006', 'Benzocaine', '4fa350ce-720e-4949-8376-e90f0a0f2d66', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(562, 'Benzocaine (Oral Cream)', '917006', 'Benzocaine', '628eda31-8142-4cf3-b24b-f19b81068c82', to_date('1/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(563, 'Benzocaine (Oral Disintegrating)', '917006', 'Benzocaine', 'a0e52795-e4ec-4205-8862-a51a2b2a7ae1', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(564, 'Benzocaine (Oral Gel)', '917006', 'Benzocaine', '982e6c46-37ab-419b-acea-521b3c356a7c', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(565, 'Benzocaine (Oral Lozenge)', '917006', 'Benzocaine', '7c161a17-cf82-4de3-8348-888c040df0f9', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(566, 'Benzocaine (Oral Ointment)', '917006', 'Benzocaine', '58739ad0-8c8e-48cf-bec2-4336a67207ca', to_date('4/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(567, 'Benzocaine (Oral Paste)', '917006', 'Benzocaine', '387f52e1-157a-4b9e-8f98-9001c6880786', to_date('8/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(568, 'Benzocaine (Topical)', '917006', 'Benzocaine', '48aeca34-2cd5-41aa-98ba-606bda1f9ce3', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(569, 'Benzocaine/Butamben/Tetracaine (Topical)', '917006', 'Benzocaine', 'af1773c5-5d5b-4278-b551-30ad2df6d5b5', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(570, 'Benzocaine/Cetylpyridinium/Menthol (Mucosal)', '917006', 'Benzocaine', 'ed70911b-9da8-4e1d-97fa-66b18d28516a', to_date('4/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(571, 'Benzocaine/Cetylpyridinium/Menthol/Zinc chloride (Mucosal)', '917006', 'Benzocaine', '31690548-0a55-4d72-8733-591ba3a9be92', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(572, 'Benzocaine/Chloroxylenol (Topical)', '917006', 'Benzocaine', 'e2eca808-e97b-43e0-aa51-7025cc61c7a8', to_date('3/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(573, 'Benzocaine/Compound benzoin tincture (USP) (Mucosal)', '917006', 'Benzocaine', 'fe1e32e8-ec36-4d1f-b3e4-913dbc852138', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(574, 'Benzocaine/Dextromethorphan (Oral Lozenge)', '917006', 'Benzocaine', 'c0cc32db-90f0-4106-8538-89821083ece1', to_date('11/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(575, 'Benzocaine/Dextromethorphan/Menthol (Oral Lozenge)', '917006', 'Benzocaine', '34e4234c-ed61-4795-99fe-d281cdb0af88', to_date('11/16/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(576, 'Benzocaine/Docusate (Rectal)', '917006', 'Benzocaine', '061acc74-eb3e-6887-e054-00144ff8d46c', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(577, 'Benzocaine/Glycerin (Mucosal)', '917006', 'Benzocaine', '45561e94-2b54-4c19-be3e-b1949e1a5bbc', to_date('7/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(578, 'Benzocaine/Isopropyl Alcohol (Topical)', '917006', 'Benzocaine', '07f10ebb-103d-475f-b89e-bf7ff9f59568', to_date('9/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(579, 'Benzocaine/Menthol (Oral Gel)', '917006', 'Benzocaine', 'c7936cbc-b132-4025-8439-8227b928c2fd', to_date('7/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(580, 'Benzocaine/Menthol (Oral Lozenge)', '917006', 'Benzocaine', '21fd7f46-3e46-4344-895f-9e6a67f006aa', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(581, 'Benzocaine/Menthol (Topical)', '917006', 'Benzocaine', '0648c46c-a3db-4b82-971b-50a46098ac7e', to_date('5/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(582, 'Benzocaine/Resorcinol (Vaginal)', '917006', 'Benzocaine', '0286fcff-4172-4fb5-ba5d-139fc8efcf37', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(583, 'Benzocaine/Tetracaine (Oral Gel)', '917006', 'Benzocaine', '324146a5-e473-4a54-8543-38ee567e815e', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(584, 'Benzocaine/Triclosan (Topical)', '917006', 'Benzocaine', 'cd738a0a-8058-465c-bdbd-76dc70aec005', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(585, 'Benzocaine/Zinc chloride (Mucosal)', '917006', 'Benzocaine', '3bb651d9-d1c4-4c25-bcfc-cd13e2f0d3bf', to_date('3/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(586, 'Benzoin (Topical)', '19011438', 'Benzoin', 'b33b5896-673b-498c-8a58-76ece8552f7a', to_date('9/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(587, 'Benzonatate (Oral Pill)', '1136601', 'benzonatate', '057214bd-9892-4e4f-bd93-4c123c30c8ba', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(588, 'Benzoyl Peroxide (Soap)', '918172', 'Benzoyl Peroxide', '3d8a20f7-0c4c-4c89-bddf-200194612b7a', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(589, 'Benzoyl Peroxide (Topical)', '918172', 'Benzoyl Peroxide', '5a3f8bbf-22be-427b-83a9-f5573232ed5f', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(590, 'Benzoyl Peroxide/Clindamycin (Topical)', '918172', 'Benzoyl Peroxide', '4c6b2aca-d940-42af-a068-418f015d277a', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(591, 'Benzoyl Peroxide/Erythromycin (Topical)', '918172', 'Benzoyl Peroxide', '80397ecd-6069-43dc-b8ae-8703f4b66308', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(592, 'Benzoyl Peroxide/Hydrocortisone (Topical)', '918172', 'Benzoyl Peroxide', '1f0edbd9-103e-4a49-b7a8-6552ef172c13', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(593, 'Benzphetamine (Oral Pill)', '719128', 'Benzphetamine', '76c76f8e-d8e8-429a-ba67-c270e5ac6c83', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(594, 'Benztropine (Injectable)', '719174', 'Benztropine', 'd61eae0d-a29d-45ef-bd41-07123e0c21f9', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(595, 'Benztropine (Oral Pill)', '719174', 'Benztropine', '9b93035b-34d6-4084-ba73-5dea72f9d124', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(596, 'Benzyl Alcohol (Oral Gel)', '919681', 'Benzyl Alcohol', '0910d0d8-dc69-43bb-967d-08cab8ae917b', to_date('2/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(597, 'Benzyl Alcohol (Topical)', '919681', 'Benzyl Alcohol', 'aeba2488-1ac3-4c02-833c-78a36859f029', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(598, 'Benzyl Alcohol/Calamine/DiphenhydrAMINE (Topical)', '919681', 'Benzyl Alcohol', '6f68cbbb-6269-4bb3-8cc9-50b146703b42', to_date('10/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(599, 'Benzyl Alcohol/Camphor/Menthol (Topical)', '919681', 'Benzyl Alcohol', '4792a667-2378-4b3d-968d-9efb1866792f', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(600, 'Benzyl Alcohol/Pramoxine (Topical)', '919681', 'Benzyl Alcohol', '03f85dbb-a13a-3126-e054-00144ff8d46c', to_date('9/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(601, 'Benzyl benzoate (Topical)', '19036946', 'benzyl benzoate', 'ba27041b-0253-43a3-a1d6-4fb0ddee5ecb', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(602, 'Bepotastine (Ophthalmic)', '40166571', 'bepotastine', '68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(603, 'BEPREVE (Ophthalmic)', '40166571', 'bepotastine', '68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(604, 'Bermuda grass pollen extract (Injectable)', '40161082', 'Bermuda grass pollen extract', '1974e1c0-c5d2-2630-e054-00144ff88e88', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(605, 'Bermuda grass smut extract (Injectable)', '40227684', 'Bermuda grass smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(606, 'Bermuda grass smut extract/Johnson grass smut extract (Injectable)', '40227684', 'Bermuda grass smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(607, 'BERRI-FREEZ (Topical)', '901656', 'Menthol', '3e7d643b-33a3-416b-b289-9e4b58c797e1', to_date('12/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(608, 'Besifloxacin (Ophthalmic)', '40161662', 'besifloxacin', 'a3e6d688-7e5e-4ca3-b27e-79756c322a32', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(609, 'BESIVANCE (Ophthalmic)', '40161662', 'besifloxacin', 'a3e6d688-7e5e-4ca3-b27e-79756c322a32', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(610, 'BETADINE (Ophthalmic)', '1750087', 'Povidone-Iodine', 'b026de1b-9949-4557-ac49-c7b0038c24cd', to_date('7/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(611, 'BETADINE (Topical)', '1750087', 'Povidone-Iodine', '2f07daa4-86ee-4a2d-ae3a-c3a7b574ed10', to_date('9/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(612, 'Betaine (Oral Liquid)', '1520218', 'Betaine', '05964dae-8b84-467c-af97-c82706a3cad2', to_date('5/17/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(613, 'Betamethasone (Injectable)', '920458', 'Betamethasone', '9a6a3871-4e02-47f9-a20e-a256b3f3c498', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(614, 'Betamethasone (Topical)', '920458', 'Betamethasone', 'ab332791-461b-4396-9b46-7f00bc04c087', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(615, 'Betamethasone/Calcipotriene (Topical)', '920458', 'Betamethasone', '6c2ed55a-c7f2-42be-a194-bd498707ce3f', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(616, 'Betamethasone/Clotrimazole (Topical)', '920458', 'Betamethasone', '1c18e5fc-bf82-47bc-bfd9-8d3e503569ba', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(617, 'Betamethasone/Clotrimazole/Gentamicin Sulfate (USP) (Otic)', '920458', 'Betamethasone', 'ff110754-cbc9-413d-a920-8bb3c455f8ae', to_date('10/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(618, 'Betamethasone/Gentamicin Sulfate (USP) (Topical)', '920458', 'Betamethasone', 'a36457c1-6ace-456f-9438-228a6daf2542', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(619, 'BETAPACE (Oral Pill)', '1370109', 'Sotalol', '21aea811-f47d-4a44-a552-dfc46d2773bf', to_date('7/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(620, 'BETASEPT (Soap)', '1790812', 'Chlorhexidine', '7e64e7bf-e88f-4056-c9e1-b49a277daa6c', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(621, 'BETASERON (Injectable)', '713196', 'interferon beta-1b', '261fde67-efb2-4bd7-947e-4f68a56e76ff', to_date('4/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(622, 'Betaxolol (Ophthalmic)', '1322081', 'Betaxolol', '1fc0a413-4e6b-4ed7-9957-ace4c8cfab55', to_date('9/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(623, 'Betaxolol (Oral Pill)', '1322081', 'Betaxolol', '9a58c45d-4b14-44d7-86ed-2997ac6942dd', to_date('12/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(624, 'Bethanechol (Oral Pill)', '937439', 'Bethanechol', '138ed3d0-57db-4df1-8124-06033ecc76f0', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(625, 'BETHKIS (Inhalant)', '902722', 'Tobramycin', '1cd3d47b-025f-4705-9daf-cf07725ec223', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(626, 'BETIMOL (Ophthalmic)', '902427', 'Timolol', '3d7acd55-33b1-4a24-99ae-01f87b0dca1f', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(627, 'BETOPTIC (Ophthalmic)', '1322081', 'Betaxolol', '31b9b263-11fd-4495-83dd-ababf0d70e9e', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(628, 'BETOPTIC S (Ophthalmic)', '1322081', 'Betaxolol', '71659a34-efad-4147-81c7-da10985e9224', to_date('9/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(629, 'Bexarotene (Oral Pill)', '1389888', 'bexarotene', '2d1eb4bd-51f9-4c9b-9fb1-0be5e30a3dc5', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(630, 'Bexarotene (Topical)', '1389888', 'bexarotene', 'e415c4c8-3144-4172-94a0-f4f3243130ae', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(631, 'BEXTRA (Oral Pill)', '1103374', 'valdecoxib', 'caf64301-262c-45ca-acd1-a9d6696c584e', to_date('3/23/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(632, 'BIAXIN (Oral Liquid)', '1750500', 'Clarithromycin', '2e899f4a-a2e9-445c-a0ed-6ad811e997e6', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(633, 'BIAXIN (Oral Pill)', '1750500', 'Clarithromycin', '7c3d8c2c-ece6-4aba-8b5a-3865402cffcf', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(634, 'Bicalutamide (Oral Pill)', '1344381', 'bicalutamide', '427a872b-1b0b-41cf-aca2-49ce0163c7e6', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(635, 'BICLORA (Oral Liquid)', '1150886', 'chlophedianol', 'c588736a-250b-4fc6-b221-b4b51052b032', to_date('3/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(636, 'BICNU (Injectable)', '1350066', 'Carmustine', 'd6cbb63c-e0b1-43ee-ad6f-408da0772079', to_date('12/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(637, 'BIDEX (Oral Pill)', '1163944', 'Guaifenesin', '41e795d8-755a-41d0-b1ce-804334559e09', to_date('1/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(638, 'BIDIL (Oral Pill)', '1373928', 'Hydralazine', 'c21325a9-cd57-4e39-98f2-0727ed8abb2d', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(639, 'BIFERARX (Oral Pill)', '19111620', 'Folic Acid', 'a7c1400a-d230-45db-afff-d5f70b091ee9', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(640, 'BILTRICIDE (Oral Pill)', '1750461', 'Praziquantel', '34ce1cdd-648e-4f1e-8512-bf3d4cc22eb9', to_date('7/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(641, 'Bimatoprost (Ophthalmic)', '904525', 'bimatoprost', 'ec9097e7-4be4-4e62-99c3-24b48244c9f2', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(642, 'BIOFLEXOR (Topical)', '901656', 'Menthol', '455353d1-74dc-4b54-9da8-9ab5b81d14be', to_date('10/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(643, 'BIOFREEZE (Topical)', '901656', 'Menthol', 'a8d59d45-0e85-43d1-affd-bbe922c4acb1', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(644, 'BIOTENE DRY MOUTH (Toothpaste)', '19068715', 'monofluorophosphate', 'a47a6502-efb2-4072-9562-cbe293531c2b', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(645, 'BISAC-EVAC (Rectal)', '924939', 'Bisacodyl', 'fc6dc813-717e-5e5c-4b72-9e46e40e9c40', to_date('9/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(646, 'Bisacodyl (Oral Pill)', '924939', 'Bisacodyl', '2caa9488-eacb-4c0f-81f5-5d25397a4fb4', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(647, 'Bisacodyl (Rectal)', '924939', 'Bisacodyl', '2ce32d23-a0e3-4dc3-a03c-0aeddf6e2ab4', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(648, 'BISCO-LAX (Rectal)', '924939', 'Bisacodyl', '2a1b271e-ae17-4284-bfa1-4d0e3c75fcc3', to_date('9/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(649, 'Bismuth subsalicylate (Chewable)', '937791', 'bismuth subsalicylate', 'ee478df8-8dda-4d43-bcdf-5b950a348627', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(650, 'Bismuth subsalicylate (Oral Liquid)', '937791', 'bismuth subsalicylate', 'ae8b3196-6f4e-4760-af6a-d28cf234078b', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(651, 'Bismuth subsalicylate (Oral Pill)', '937791', 'bismuth subsalicylate', '0f02f1a4-3ea4-43de-bfdb-b9cb7626f92a', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(652, 'Bisoprolol (Oral Pill)', '1338005', 'Bisoprolol', 'd82243b9-3e56-4a2b-8750-cb95ec106885', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(653, 'Bisoprolol/Hydrochlorothiazide (Oral Pill)', '1338005', 'Bisoprolol', 'b9ee689a-ea12-435d-b01c-70d45891e62f', to_date('2/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(654, 'Bitter dock pollen extract (Injectable)', '40228117', 'bitter dock pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(655, 'Bitternut hickory pollen extract (Injectable)', '40171925', 'bitternut hickory pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(656, 'Bivalirudin (Injectable)', '19084670', 'bivalirudin', 'ce56f806-7845-429d-a1ce-c2dbf79b22eb', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(657, 'Black walnut pollen extract (Injectable)', '40161692', 'black walnut pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(658, 'Bleomycin (Injectable)', '1329241', 'Bleomycin', 'b5806c40-12ce-48e3-8abd-9f8997ef4428', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(659, 'BLEPHAMIDE (Ophthalmic)', '1550557', 'prednisolone', 'e88d861a-77dd-4e4c-a0c8-d9863cd16322', to_date('4/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(660, 'BLINK TEARS (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '6f7e06c3-204d-459a-af8f-c46be9ad0e8d', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(661, 'BLISTEX COLD & ALLERGY LIP SOOTHER (Topical)', '916662', 'dimethicone', '5db6db29-f6eb-498f-8d80-76e9c36b8874', to_date('12/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(662, 'BLISTEX KANKA (Mucosal)', '917006', 'Benzocaine', 'eebc03ba-f849-4e70-a653-834f383b6aa4', to_date('4/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(663, 'BLISTEX MEDICATED LIP (Topical)', '938205', 'Camphor', '63300820-80ca-432f-b86d-ef15d878671b', to_date('11/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(664, 'BLOXIVERZ (Injectable)', '717136', 'Neostigmine', '79ee2111-d65c-11e1-9b23-0800200c9a66', to_date('12/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(665, 'Blue beech pollen extract (Injectable)', '40171961', 'blue beech pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(666, 'Blue spruce pollen extract (Injectable)', '40171965', 'blue spruce pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(667, 'BONINE (Chewable)', '994341', 'Meclizine', '0b4b55cd-063e-4d0e-911c-8e03886e15d3', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(668, 'BOROFAIR (Otic)', '929549', 'Acetic Acid', '040850b0-68c0-4160-b3a8-271e7ec4cde9', to_date('12/3/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(669, 'BOROLEUM (Topical)', '938205', 'Camphor', '00bd405f-c1c2-402d-bc2e-fa25c8ffaa25', to_date('1/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(670, 'BOSULIF (Oral Pill)', '42900401', 'bosutinib', 'adc84ad5-a04d-4fee-9ba8-91f7abd928e3', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(671, 'Bosutinib (Oral Pill)', '42900401', 'bosutinib', 'adc84ad5-a04d-4fee-9ba8-91f7abd928e3', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(672, 'Botrytis cinerea extract (Injectable)', '40161103', 'Botrytis cinerea extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(673, 'Botulism Immune Globulin IV Human (Injectable)', '19072699', 'Botulism Immune Globulin IV Human', '9ec59262-35c1-4d8e-8451-a7cfbacb0675', to_date('11/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(674, 'Box elder maple pollen extract (Injectable)', '40161593', 'box elder maple pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(675, 'BRAVELLE (Injectable)', '1515417', 'Urofollitropin', '46f7740f-c879-4a77-9a16-2821fd772641', to_date('9/28/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(676, 'Bread mold fungus extract (Injectable)', '40175794', 'bread mold fungus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(677, 'BREVIBLOC (Injectable)', '19063575', 'esmolol', '595cc3d5-1306-4828-aefa-5595219ffd62', to_date('2/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(678, 'BREVITAL (Injectable)', '19005015', 'Methohexital', '468a7188-2e77-480f-8c68-6e2e9b6b47fd', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(679, 'Brimonidine (Ophthalmic)', '915542', 'brimonidine', 'bc1785c5-1448-4791-9868-2fbbc8703b3b', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(680, 'Brimonidine/Timolol (Ophthalmic)', '915542', 'brimonidine', 'feaf1480-a4b8-4486-992a-96be3a596243', to_date('11/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(681, 'BRINTELLIX (Oral Pill)', '44507700', 'vortioxetine', '4b0700c9-b417-4c3a-b36f-de461e125bd3', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(682, 'Brinzolamide (Ophthalmic)', '938044', 'brinzolamide', 'e9ea2ae7-1b98-4034-9fba-8ce2225e0145', to_date('3/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(683, 'BRISDELLE (Oral Pill)', '722031', 'Paroxetine', 'bf208751-e6d8-11e1-aff1-0800200c9a66', to_date('12/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(684, 'Broadleaf cattail pollen extract (Injectable)', '42709317', 'broadleaf cattail pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(685, 'BROMDAY (Ophthalmic)', '1139179', 'bromfenac', '234a2447-90a7-4b8a-a344-7eef1e5daa6a', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(686, 'BROMFED DM (Oral Liquid)', '1130863', 'Brompheniramine', 'ccdf22f3-171f-4c19-8273-fefa140d1969', to_date('1/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(687, 'Bromfenac (Ophthalmic)', '1139179', 'bromfenac', '3296f72b-62ba-d417-132b-30c4a6166609', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(688, 'Bromocriptine (Oral Pill)', '730548', 'Bromocriptine', 'f85296ab-a104-496f-a23d-e0a88cf91ec7', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(689, 'Brompheniramine (Oral Liquid)', '1130863', 'Brompheniramine', '4a03c41d-4a89-4e74-b287-ce166058458a', to_date('10/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(690, 'Brompheniramine/Codeine/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', '41c354cd-5e98-47ac-a81b-9c3915924c93', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(691, 'Brompheniramine/Codeine/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', 'f07920ad-7f4b-48d6-8c86-d5a257ff91c6', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(692, 'Brompheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', 'bd86d5e2-f4e9-4c15-9a5c-15f91f10d743', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(693, 'Brompheniramine/Dextromethorphan/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', '0654b093-2067-492f-a0bc-647dac430bde', to_date('8/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(694, 'Brompheniramine/Dihydrocodeine/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', '315a70bc-bfd8-471d-9379-d2746823537d', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(695, 'Brompheniramine/Dihydrocodeine/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', '4de68448-1f01-4ca1-b002-15589999de0f', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(696, 'Brompheniramine/Phenylephrine (Chewable)', '1130863', 'Brompheniramine', '655b4796-6ffc-c27f-b66e-d2ae0c7ad053', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(697, 'Brompheniramine/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', '1ee8e5fb-cd12-4f37-a0c7-dbf386313ab8', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(698, 'Brompheniramine/Phenylephrine (Oral Pill)', '1130863', 'Brompheniramine', '9aeaffc0-be85-4ca7-ae67-d439ccfe6511', to_date('9/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(699, 'Brompheniramine/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', '4eba1542-8062-434a-a364-490a85ccc680', to_date('4/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(700, 'Brompheniramine/Pseudoephedrine (Oral Pill)', '1130863', 'Brompheniramine', '4ae74ab3-c1f7-4347-9833-16553cf9969d', to_date('2/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(701, 'BRONCOTRON (Oral Liquid)', '1119510', 'Dextromethorphan', '6cbf83f6-cbf4-4e5b-a383-6d71124547bc', to_date('12/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(702, 'BRONKAID (Oral Pill)', '1143374', 'Ephedrine', '699e7629-5e8a-4dac-b494-fe42698ee460', to_date('6/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(703, 'BROVEX PEB (Oral Liquid)', '1130863', 'Brompheniramine', 'ceb99dea-44ca-40c8-b479-da97707c513f', to_date('4/19/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(704, 'Budesonide (Inhalant)', '939259', 'Budesonide', '4f339e84-33be-44d1-bbae-e0579da12c7f', to_date('7/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(705, 'Budesonide (Oral Pill)', '939259', 'Budesonide', '7633c9b3-dfb5-446f-a260-e44b6e48afa2', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(706, 'BUFFERIN (Oral Pill)', '1112807', 'Aspirin', '802c81ff-e2ff-4d91-8589-55b1d1859b42', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(707, 'Bumetanide (Injectable)', '932745', 'Bumetanide', '00b71dc2-1851-4670-a48e-b4eb89d48d0b', to_date('5/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(708, 'Bumetanide (Oral Pill)', '932745', 'Bumetanide', '509dba6d-7e53-02ed-8d86-fe83a2126250', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(709, 'BUMINATE (Injectable)', '1344143', '"Albumin Human, USP"', '4efc78ab-6b74-4ce9-bd3e-9411130ea81b', to_date('10/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(710, 'BUNAVAIL (Buccal)', '1133201', 'Buprenorphine', '12b963dd-f189-11e3-ac10-0800200c9a66', to_date('8/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(711, 'BUPAP (Oral Pill)', '1125315', 'Acetaminophen', '30e483da-eaf1-4c73-9fed-333337f9ba86', to_date('12/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(712, 'BUPHENYL (Oral Pill)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(713, 'BUPHENYL (Oral Powder)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(714, 'Bupivacaine (Injectable)', '732893', 'Bupivacaine', '5e2f3987-624f-4cbf-9cf1-fad4f181a78f', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(715, 'Bupivacaine liposome (Injectable)', '40244151', 'Bupivacaine liposome', 'bb5a9e59-0f51-11df-8a39-0800200c9a66', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(716, 'Bupivacaine/EPINEPHrine (Injectable)', '732893', 'Bupivacaine', '6a60cb55-530a-41ee-bc78-971eaf9f0850', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(717, 'Bupivacaine/fentaNYL (Injectable)', '732893', 'Bupivacaine', 'e364b224-8fb5-45cd-8e29-adb09afae80f', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(718, 'BUPRENEX (Injectable)', '1133201', 'Buprenorphine', 'b086772e-d15a-4d13-b1a2-38bfbde1f18c', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(719, 'Buprenorphine (Injectable)', '1133201', 'Buprenorphine', '6795ade9-e06e-4daa-bb45-821901a055f5', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(720, 'Buprenorphine (Sublingual)', '1133201', 'Buprenorphine', '5efb3e1f-e908-4ed4-85d1-7961878d7fc5', to_date('5/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(721, 'Buprenorphine/Naloxone (Buccal)', '1133201', 'Buprenorphine', '12b963dd-f189-11e3-ac10-0800200c9a66', to_date('8/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(722, 'Buprenorphine/Naloxone (Oral Strip)', '1133201', 'Buprenorphine', '8a5edcf9-828c-4f97-b671-268ab13a8ecd', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(723, 'Buprenorphine/Naloxone (Sublingual)', '1133201', 'Buprenorphine', '6cccf229-9611-4b6f-8f1b-acc8ff1ed3f8', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(724, 'buPROPion (Oral Pill)', '750982', 'Bupropion', '714bd852-e9b1-4bda-8685-02f16c937222', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(725, 'Bur oak pollen extract (Injectable)', '40172010', 'bur oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(726, 'BURN JEL PLUS (Topical)', '989878', 'Lidocaine', '401023a5-6634-4c04-b6a6-55b78a9c79fe', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(727, 'Burning bush pollen extract (Injectable)', '40161629', 'burning bush pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(728, 'Burweed marshelder pollen extract/Rough marshelder pollen extract (Injectable)', '40161637', 'burweed marshelder pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(729, 'busPIRone (Oral Pill)', '733301', 'Buspirone', '8ed30856-84d2-dd2b-04d4-b101f6030bc0', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(730, 'Busulfan (Injectable)', '1333357', 'Busulfan', '03dc50f9-c7bd-4c0c-8bbb-c1216ec90c95', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(731, 'Busulfan (Oral Pill)', '1333357', 'Busulfan', 'bf456fc7-3a79-47f7-8acc-600b5e2f0dc2', to_date('6/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(732, 'BUSULFEX (Injectable)', '1333357', 'Busulfan', '03dc50f9-c7bd-4c0c-8bbb-c1216ec90c95', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(733, 'Butabarbital (Oral Pill)', '959174', 'butabarbital', '7883bbc0-0874-11dc-a818-0002a5d5c51b', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(734, 'Butenafine (Topical)', '958396', 'butenafine', '36f09b0c-454a-4489-92be-8e6902874a74', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(735, 'BUTISOL (Oral Pill)', '959174', 'butabarbital', '7883bbc0-0874-11dc-a818-0002a5d5c51b', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(736, 'Butorphanol (Injectable)', '1133732', 'Butorphanol', '75d3fd4e-9dc3-8bbc-140e-0213ef135ab0', to_date('8/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(737, 'Butorphanol (Nasal)', '1133732', 'Butorphanol', '9c069ce5-ea67-4f42-afe4-30b01b4ce24d', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(738, 'BYSTOLIC (Oral Pill)', '1314577', 'nebivolol', '673f5ad2-c09b-4a89-9407-efdadd007917', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(739, 'Cabergoline (Oral Pill)', '1558471', 'cabergoline', '0e2a2cb6-e453-4060-95f4-a8ce4ccecc10', to_date('4/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(740, 'Cabozantinib (Oral Pill)', '43012292', 'cabozantinib', '1a0c3bea-c87b-4d25-bb44-5f0174da6b34', to_date('12/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(741, 'CADUET (Oral Pill)', '1332418', 'Amlodipine', '909fad96-a941-443a-a39f-4f93607410fb', to_date('3/30/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(742, 'CAFCIT (Injectable)', '1134439', 'Caffeine', 'fbcd234e-57e1-4da2-a96c-e3f7b7cf6ec0', to_date('5/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(743, 'CAFCIT (Oral Liquid)', '1134439', 'Caffeine', 'fbcd234e-57e1-4da2-a96c-e3f7b7cf6ec0', to_date('5/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(744, 'CAFERGOT (Oral Pill)', '1134439', 'Caffeine', '1c066197-dea6-4705-9b4a-8703dd564a2a', to_date('4/26/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(745, 'Caffeine (Injectable)', '1134439', 'Caffeine', 'cc632825-e0a4-4524-8d7d-ce926efab3d6', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(746, 'Caffeine (Oral Liquid)', '1134439', 'Caffeine', 'cc632825-e0a4-4524-8d7d-ce926efab3d6', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(747, 'Caffeine (Oral Pill)', '1134439', 'Caffeine', 'cc55f4e6-5304-4310-b3e5-f0a4e9aa5bf8', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(748, 'Caffeine/Ergotamine (Oral Pill)', '1134439', 'Caffeine', '6a105e44-b558-45c1-9c91-fe1f3dfc5bd5', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(749, 'Caffeine/Ergotamine (Rectal)', '1134439', 'Caffeine', '3a31ad0c-7bdd-544b-f5df-a99d04cf541c', to_date('1/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(750, 'Caffeine/Magnesium Salicylate (Oral Pill)', '1134439', 'Caffeine', 'e02a39f9-1c8c-4d38-b394-3f5b7062932c', to_date('9/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(751, 'CAL GEST (Chewable)', '19035704', 'Calcium Carbonate', 'a43184c4-d225-4539-b651-4d96535f208f', to_date('8/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(752, 'CALADRYL CLEAR (Topical)', '927478', 'pramoxine', 'fca6f08b-7fa0-4ae6-bce3-61f3bcae4332', to_date('8/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(753, 'Calamine (Topical)', '902616', 'Calamine', 'd9d6ea6f-0793-3c9d-f92c-a9e2f0bee20b', to_date('7/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(754, 'Calamine/Menthol/Petrolatum/Zinc Oxide (Paste)', '902616', 'Calamine', '1295cfcc-5b61-481b-964b-f53ffd0cb58e', to_date('3/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(755, 'Calamine/Menthol/Zinc Oxide (Topical)', '902616', 'Calamine', '7b52374e-1119-4145-b87b-96b7212fdc3e', to_date('3/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(756, 'Calamine/Phenol/Zinc Oxide (Topical)', '902616', 'Calamine', '8e68efc4-4c95-41c0-9fed-32297b1b2edc', to_date('4/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(757, 'Calamine/Pramoxine (Topical)', '902616', 'Calamine', 'a042095e-a139-4c5d-8ffb-39e37da2a93a', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(758, 'Calamine/Zinc Oxide (Topical)', '902616', 'Calamine', '777b0e66-1bce-4483-9dad-c46796fd6f23', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(759, 'CALAZIME SKIN PROTECTANT (Paste)', '902616', 'Calamine', '1295cfcc-5b61-481b-964b-f53ffd0cb58e', to_date('3/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(760, 'Calcipotriene (Topical)', '908921', 'calcipotriene', '21378c25-5622-8bf7-1a8c-b05940a846a0', to_date('5/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(761, 'CALCITRENE (Topical)', '908921', 'calcipotriene', '94d4f46a-f254-4fe2-b4bd-7a533d6324fe', to_date('5/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(762, 'Calcitriol (Injectable)', '19035631', 'Calcitriol', '406151ad-6c0a-4d66-86fc-e076df9671a3', to_date('10/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(763, 'Calcitriol (Oral Liquid)', '19035631', 'Calcitriol', 'dc293a1c-995d-40fa-ac99-68df12eb6d9e', to_date('3/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(764, 'Calcitriol (Oral Pill)', '19035631', 'Calcitriol', 'bebefb2a-7365-48e2-9681-83ed4b41e26e', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(765, 'Calcitriol (Topical)', '19035631', 'Calcitriol', 'a1567da9-af74-4afd-9ac5-8b53ec5d7cbf', to_date('3/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(766, 'Calcium acetate (Oral Pill)', '951469', 'calcium acetate', 'b02f8473-3220-4651-9c7f-993645f43a82', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(767, 'Calcium Carbonate (Chewable)', '19035704', 'Calcium Carbonate', '21e9152c-6e83-454d-a782-00c2ced5b3fa', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(768, 'Calcium Carbonate (Oral Liquid)', '19035704', 'Calcium Carbonate', '594e80a9-b2fa-4a69-ab70-c25e78b1a40d', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(769, 'Calcium Carbonate (Oral Pill)', '19035704', 'Calcium Carbonate', '1cd621d0-58b9-45f7-80fb-e13ca68596a1', to_date('7/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(770, 'Calcium Carbonate (Oral Powder)', '19035704', 'Calcium Carbonate', '88cadd90-c6f4-4229-aed4-bf3e4ce6dbf5', to_date('10/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(771, 'Calcium Carbonate/Cholecalciferol (Oral Pill)', '19035704', 'Calcium Carbonate', 'bba98e57-7056-4143-8fcd-95e25539d087', to_date('5/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(772, 'Calcium Carbonate/Famotidine/Magnesium Hydroxide (Chewable)', '19035704', 'Calcium Carbonate', 'cd787644-2809-478c-bf8f-01ab8c306d61', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(773, 'Calcium Carbonate/Folic Acid/Magnesium carbonate (Oral Pill)', '19035704', 'Calcium Carbonate', 'e74e25aa-2f4c-4026-bc2b-7bb21aaf6fc5', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(774, 'Calcium Carbonate/Magnesium carbonate (Oral Pill)', '19035704', 'Calcium Carbonate', 'af124c72-0a35-4305-abd8-2b0ebf84da08', to_date('7/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(775, 'Calcium Carbonate/Magnesium Hydroxide (Chewable)', '19035704', 'Calcium Carbonate', '8806c912-ab83-4f45-ac78-e826bb3143d4', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(776, 'Calcium Carbonate/Magnesium Hydroxide (Oral Liquid)', '19035704', 'Calcium Carbonate', '7fbc654b-a0d4-408c-bb5a-eb50b7b54382', to_date('8/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(777, 'Calcium Carbonate/Simethicone (Chewable)', '19035704', 'Calcium Carbonate', '41d17406-3653-4889-81df-6270b7b5d3c7', to_date('3/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(778, 'Calcium Chloride (Injectable)', '19036781', 'Calcium Chloride', '98de04ad-784f-4816-acbf-2b1ebfaa4005', to_date('4/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(779, 'Calcium Chloride/Fibrinogen/Fibrinolysis inhibitor/Thrombin (Topical)', '19036781', 'Calcium Chloride', 'e1aca067-0c96-4025-88bc-bd2345a46a30', to_date('8/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(780, 'Calcium Chloride/Lactate/Potassium Chloride/Sodium Chloride (Injectable)', '19036781', 'Calcium Chloride', 'c64bb1f7-715e-42dd-a8cb-09921cb56f23', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(781, 'Calcium Chloride/Lactate/Potassium Chloride/Sodium Chloride (Irrigation)', '19036781', 'Calcium Chloride', 'f09f80bf-2f8b-4420-865d-aec2d5e5cd4d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(782, 'Calcium Chloride/Potassium Chloride/Sodium Chloride (Injectable)', '19036781', 'Calcium Chloride', '76140511-686a-42c2-b3c1-32cfb71d24cb', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(783, 'CALCIUM DISODIUM VERSENATE (Injectable)', '43013616', 'Edetate Calcium', 'f960dbfa-b00c-4f3e-ad32-ed6a5deea831', to_date('4/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(784, 'Calcium Gluconate (Injectable)', '19037038', 'Calcium Gluconate', 'c069b9bf-a17f-4727-9eb3-a6c69af883f8', to_date('1/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(785, 'Calcium Gluconate (Oral Pill)', '19037038', 'Calcium Gluconate', 'd2239df8-199a-4c70-b56c-6ee78bb78919', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(786, 'Calcium polycarbophil (Oral Pill)', '940426', 'calcium polycarbophil', '968a8b7d-b9ea-464a-8ff8-8e259f438bc3', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(787, 'CALDECORT (Topical)', '975125', 'Hydrocortisone', '258723cf-d72e-49ee-8eaf-03fc00fa4a7c', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(788, 'CALDESENE (Topical)', '1036157', 'Starch', '9f12dee2-7afa-45e9-a729-0fd42bb77715', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(789, 'CALDOLOR (Injectable)', '1177480', 'Ibuprofen', '1eaa7790-f1a1-4f51-b10a-cbbaf033f684', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(790, 'Calfactant (Inhalant)', '19089891', 'calfactant', '315c128a-272d-4c57-bfbe-1a8b3402af08', to_date('7/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(791, 'California black walnut pollen extract (Injectable)', '40161146', 'California black walnut pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(792, 'California mugwort pollen extract (Injectable)', '40169509', 'California mugwort pollen extract', '02de3b96-7daa-4776-8e2e-c21cf282f091', to_date('1/7/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(793, 'CALMOL (Rectal)', '951112', 'cocoa butter', '5516f800-d3fa-4b90-a3eb-c0bdf3183b9b', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(794, 'CALMOSEPTINE OINTMENT (Topical)', '901656', 'Menthol', '0e4d23b8-bb10-4b91-ace5-fe41b914004a', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(795, 'CALPHRON (Oral Pill)', '951469', 'calcium acetate', '86f2e3d2-dbe3-400b-91cf-a4bf41db1342', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(796, 'CAMBIA (Oral Liquid)', '1124300', 'Diclofenac', 'd7335594-50c9-4ae2-a3e3-b9a375187b62', to_date('4/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(797, 'CAMPATH (Injectable)', '1312706', 'alemtuzumab', '4f5f7255-7abc-4328-bd1a-ceaf139ef3e0', to_date('10/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(798, 'CAMPHO-PHENIQUE (Topical)', '938205', 'Camphor', '0f888d89-b241-4a51-e054-00144ff8d46c', to_date('2/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(799, 'Camphor (Inhalant)', '938205', 'Camphor', '007909d6-7c4b-47f9-bc4c-514bda647651', to_date('4/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(800, 'Camphor (Topical)', '938205', 'Camphor', '36edeed8-894b-4f49-bb9a-9b43181b4906', to_date('10/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(801, 'Camphor/Dimethicone/Menthol/Phenol (Topical)', '938205', 'Camphor', '63300820-80ca-432f-b86d-ef15d878671b', to_date('11/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(802, 'Camphor/Eucalyptus oil/Menthol (Topical)', '938205', 'Camphor', '4cd2f751-e072-4f4e-b059-ed1dfcc60c6b', to_date('6/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(803, 'Camphor/Menthol (Topical)', '938205', 'Camphor', 'f406161e-a9c4-47d1-8b21-93b1b7938063', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(804, 'Camphor/Menthol/Methyl salicylate (Topical)', '938205', 'Camphor', '0005e125-fbf2-4f90-8960-99e00250fc20', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(805, 'Camphor/Menthol/Methyl salicylate (Transdermal)', '938205', 'Camphor', '47083271-4584-445a-be2d-c80b34503cc0', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(806, 'Camphor/Menthol/Petrolatum (Topical)', '938205', 'Camphor', '00bd405f-c1c2-402d-bc2e-fa25c8ffaa25', to_date('1/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(807, 'Camphor/Phenol (Topical)', '938205', 'Camphor', '0d914664-f8d4-2ff7-e054-00144ff88e88', to_date('2/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(808, 'CAMPRAL (Oral Pill)', '19043959', 'acamprosate', 'fe6f754f-62b4-4c86-805d-221332409516', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(809, 'CAMPTOSAR (Injectable)', '1367268', 'irinotecan', 'f2f20b37-8bd4-4e8a-b596-be80b48ca2f1', to_date('2/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(810, 'Canadian bluegrass pollen extract (Injectable)', '40227802', 'Canadian bluegrass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(811, 'Canagliflozin/metFORMIN (Oral Pill)', '43526465', 'canagliflozin', '6868666b-c25e-40d1-9d1f-306bbe9390c1', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(812, 'CANASA (Rectal)', '968426', 'mesalamine', '357e0e6b-cfbd-454c-82d7-cfc460dc0d68', to_date('8/25/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(813, 'Candesartan (Oral Pill)', '1351557', 'candesartan', 'a67f4f53-76c7-4239-9dd6-fef8e8019e9a', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(814, 'Candesartan/Hydrochlorothiazide (Oral Pill)', '1351557', 'candesartan', 'f3c4f7ed-e667-4528-a675-b032c2a4425d', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(815, 'CAPACET (Oral Pill)', '1125315', 'Acetaminophen', 'f3a37ce1-5082-4ac4-88a2-c8fadbd0b7b3', to_date('11/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(816, 'CAPASTAT (Injectable)', '19026710', 'Capreomycin', '808e4421-2b9c-41e1-a82c-39256b112ae8', to_date('6/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(817, 'Capecitabine (Oral Pill)', '1337620', 'capecitabine', '2777b481-7d7f-461a-b5e0-c09ce2990c34', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(818, 'CAPEX (Shampoo)', '996541', 'fluocinolone', 'a52763d0-7024-48a8-9cca-3127333dfb01', to_date('11/2/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(819, 'Capreomycin (Injectable)', '19026710', 'Capreomycin', '808e4421-2b9c-41e1-a82c-39256b112ae8', to_date('6/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(820, 'Capsaicin (Topical)', '939881', 'Capsaicin', '345c9159-0efe-436b-9068-3b717678936b', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(821, 'Capsaicin (Transdermal)', '939881', 'Capsaicin', 'ef5373aa-9857-4d01-95af-2d7716e54ae4', to_date('11/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(822, 'Capsaicin/Lidocaine/Menthol/Methyl salicylate (Topical)', '939881', 'Capsaicin', '85066887-44d0-4a4a-adee-670073e4b22c', to_date('3/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(823, 'Capsaicin/Lidocaine/Menthol/Methyl salicylate (Transdermal)', '939881', 'Capsaicin', '2587a121-2544-4409-92b3-5c4049e53161', to_date('6/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(824, 'Capsaicin/Menthol (Topical)', '939881', 'Capsaicin', '0096cca7-5671-4717-bc92-12170c1bcf2f', to_date('4/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(825, 'Capsaicin/Menthol (Transdermal)', '939881', 'Capsaicin', '59bd46fa-9460-416d-b4ef-6beeddda96cf', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(826, 'Capsaicin/Menthol/Methyl salicylate (Topical)', '939881', 'Capsaicin', 'fd7e50c9-5ed4-45d3-bc8d-c5583ca436be', to_date('4/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(827, 'Capsaicin/Menthol/Methyl salicylate (Transdermal)', '939881', 'Capsaicin', 'a9343d24-8435-4a51-98a2-b7976cd369ab', to_date('12/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(828, 'Captopril (Oral Pill)', '1340128', 'Captopril', '851ff660-e6a4-48f8-a6d0-4c10dbb01836', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(829, 'Captopril/Hydrochlorothiazide (Oral Pill)', '1340128', 'Captopril', 'd826812e-ede7-49e7-8384-29ec5b142ef3', to_date('5/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(830, 'CAPZASIN QUICK RELIEF (Topical)', '939881', 'Capsaicin', 'd6c313a3-8dc6-4231-95b6-ac9399e1c1be', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(831, 'CAPZASIN-HP (Topical)', '939881', 'Capsaicin', '345c9159-0efe-436b-9068-3b717678936b', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(832, 'CAPZASIN-P (Topical)', '939881', 'Capsaicin', '605703e8-b353-40df-9ac4-67a76b866d63', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(833, 'CARAC (Topical)', '955632', 'Fluorouracil', '8379f1db-4255-4285-abd3-8ecdcaf03372', to_date('4/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(834, 'CARAFATE (Oral Liquid)', '1036228', 'Sucralfate', '0fb67b1c-b4c0-46f2-8a81-df1510e006aa', to_date('5/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(835, 'Carbachol (Injectable)', '940183', 'Carbachol', 'f28d7a56-e079-4a8b-ad81-9a97c780de67', to_date('7/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(836, 'carBAMazepine (Chewable)', '740275', 'Carbamazepine', 'e36ece79-544b-43b2-8cf9-ca9861b071b5', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(837, 'carBAMazepine (Oral Liquid)', '740275', 'Carbamazepine', '536811ab-308b-4866-9185-9e4149483512', to_date('7/19/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(838, 'carBAMazepine (Oral Pill)', '740275', 'Carbamazepine', 'ce5aec7a-e161-46bf-8fc0-afb41689e59a', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(839, 'Carbamide peroxide (Mucosal)', '958999', 'carbamide peroxide', '086a0b82-e947-41c9-89e7-ba06483960c9', to_date('7/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(840, 'Carbamide peroxide (Otic)', '958999', 'carbamide peroxide', 'dfd2a0a4-0cb6-4e19-addc-b9db2488dcbf', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(841, 'CARBASTAT (Injectable)', '940183', 'Carbachol', '048af9c6-4866-4500-9914-cd7071a19b63', to_date('10/5/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(842, 'CARBATUSS SYRUP (Oral Liquid)', '1140640', 'carbetapentane', '8d886ec3-8ccf-4fd0-84d6-de9e858da0fb', to_date('3/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(843, 'Carbenicillin (Oral Pill)', '1740546', 'Carbenicillin', '02010995-9826-4a67-945b-f3022e6081df', to_date('9/14/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(844, 'Carbetapentane/guaiFENesin (Oral Liquid)', '1140640', 'carbetapentane', 'c3a1a47a-27ce-4565-9d6a-a2d8314357a6', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(845, 'Carbetapentane/guaiFENesin/Phenylephrine (Oral Liquid)', '1140640', 'carbetapentane', '8d886ec3-8ccf-4fd0-84d6-de9e858da0fb', to_date('3/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(846, 'Carbidopa (Oral Pill)', '740560', 'Carbidopa', 'ff8e105b-7415-42d4-bbb2-b36cfb8945a5', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(847, 'Carbidopa/Entacapone/Levodopa (Oral Pill)', '740560', 'Carbidopa', 'dabb7f5d-03b3-4d46-951a-e41a1f8d69cc', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(848, 'Carbidopa/Levodopa (Oral Disintegrating)', '740560', 'Carbidopa', 'd26b56fa-d521-461b-a619-40b65862b644', to_date('12/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(849, 'Carbidopa/Levodopa (Oral Pill)', '740560', 'Carbidopa', 'a15f5833-42f0-4890-9596-992eef0846e5', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(850, 'Carbidopa/Levodopa XR (Oral Pill)', '740560', 'Carbidopa', '043db807-8381-4df8-b3a3-825988d63ef5', to_date('5/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(851, 'Carbinoxamine (Oral Liquid)', '1141018', 'carbinoxamine', '748c233b-6ab9-42d0-89ab-e7ead30f7947', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(852, 'Carbinoxamine (Oral Pill)', '1141018', 'carbinoxamine', '3f4f633c-5c5d-4d52-abb8-dfa2896b40d2', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(853, 'CARBOCAINE (Injectable)', '702774', 'Mepivacaine', 'f00557a9-ec79-4c54-9d06-c71d2a8aff2c', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(854, 'CARBOCAINE WITH NEOCOBEFRIN (Injectable)', '19015395', 'Levonordefrin', 'f00557a9-ec79-4c54-9d06-c71d2a8aff2c', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(855, 'Carbon Dioxide (Inhalant)', '19046180', 'Carbon Dioxide', 'f4cf5b1b-ca57-4799-ae51-130f6fd5d058', to_date('5/13/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(856, 'CARBOplatin (Injectable)', '1344905', 'Carboplatin', '806736d3-215a-4df5-8187-97f2161e5a53', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(857, 'Carboxymethylcellulose (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'cd467181-9d56-4b11-9826-15b5357d0689', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(858, 'Carboxymethylcellulose/Glycerin (Ophthalmic)', '949279', 'Carboxymethylcellulose', '37e99aa8-02d6-4efb-a862-90bc7fcd5ca5', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(859, 'Carboxymethylcellulose/Hypromellose (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'c9dcab71-3ec8-45ff-83f0-132c6c6e63bd', to_date('10/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(860, 'CARDENE (Injectable)', '1318137', 'Nicardipine', '0d58f812-37bf-439f-b3f2-c31f8eefe22e', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(861, 'CARDIZEM (Oral Pill)', '1328165', 'Diltiazem', 'f3e7ecef-f360-4987-a4f5-933214130ab2', to_date('1/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(862, 'CARIMUNE (Injectable)', '19117912', 'Immunoglobulin G', '610b905a-50d3-48f0-919a-69cc99aab5a8', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(863, 'Carisoprodol (Oral Pill)', '749910', 'Carisoprodol', 'cfef5764-49ff-4ce2-84fe-5e421e4b0202', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(864, 'Carmustine (Implant)', '1350066', 'Carmustine', '783ec80b-95d7-44c7-8b90-fa7394f50f67', to_date('5/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(865, 'Carmustine (Injectable)', '1350066', 'Carmustine', 'd6cbb63c-e0b1-43ee-ad6f-408da0772079', to_date('12/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(866, 'CARNITOR (Oral Liquid)', '1553610', 'Levocarnitine', 'b2cbc620-59fd-47b6-9e4b-7e3e31533a1c', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(867, 'CARNITOR (Oral Pill)', '1553610', 'Levocarnitine', 'd2133bc3-9c15-48bd-8b16-b8995a6a14cd', to_date('7/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(868, 'Carteolol (Ophthalmic)', '950370', 'Carteolol', '571fe550-399d-4296-835c-37aa1ab9b409', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(869, 'CARTERS LITTLE PILLS (Oral Pill)', '924939', 'Bisacodyl', '4ee15f4b-070e-4f6a-a3ff-dbb5136f8db6', to_date('2/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(870, 'Carvedilol (Oral Pill)', '1346823', 'carvedilol', 'c3f7f2f7-7309-4825-b868-13c6ef89fe86', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(871, 'CASTELLANI PAINT (Topical)', '923540', 'phenol', 'bf6845e5-16f3-4828-bfbf-2bc2596a02f3', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(872, 'Castor Oil (Oral Liquid)', '950933', 'Castor Oil', '5fe0f114-67ae-44c5-906f-60e49a9a8475', to_date('9/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(873, 'Castor Oil/Peruvian balsam (Topical)', '950933', 'Castor Oil', '6bf98ba3-d9f6-4872-8220-a1b403226223', to_date('10/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(874, 'Cat Hair Extract (Injectable)', '19095690', 'Cat Hair Extract', '6f9e5a38-738c-470f-b9cf-4fcef6bc7f01', to_date('1/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(875, 'Cat skin extract (Injectable)', '40161698', 'cat skin extract', '01a914b7-51b5-4aab-952f-2eae56d25e9c', to_date('5/20/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(876, 'CATAFLAM (Oral Pill)', '1124300', 'Diclofenac', '1582c050-925a-4af8-a44f-948017946ae6', to_date('3/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(877, 'CATAPRES (Oral Pill)', '1398937', 'Clonidine', 'd7f569dc-6bed-42dc-9bec-940a9e6b090d', to_date('6/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(878, 'CAVERJECT (Injectable)', '1381504', 'Alprostadil', 'a295fc1e-d82c-4f44-bc2d-a552bf594c98', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(879, 'CAVILON DURABLE BARRIER CREAM (Topical)', '916662', 'dimethicone', '4cc117f2-65be-4c7b-b182-0417acd5dc41', to_date('12/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(880, 'CAVIRINSE (Mouthwash)', '19069022', 'Sodium Fluoride', 'e061e50c-cea2-4aea-b59c-3916829b253a', to_date('12/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(881, 'CEDAX (Oral Liquid)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(882, 'CEDAX (Oral Pill)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', to_date('1/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(883, 'CEENU (Oral Pill)', '1391846', 'Lomustine', '17893de9-7d54-448c-9fca-d10642046d14', to_date('12/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(884, 'Cefaclor (Oral Liquid)', '1768849', 'Cefaclor', '9f919252-7a87-4386-a64c-5d8213f7e881', to_date('9/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(885, 'Cefaclor (Oral Pill)', '1768849', 'Cefaclor', 'b093ec49-da83-40e3-8e1c-8a64b7f45d27', to_date('6/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(886, 'Cefadroxil (Oral Liquid)', '1769535', 'Cefadroxil', '30bb3686-87b4-4676-9ff5-e20deb8bff9d', to_date('5/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(887, 'Cefadroxil (Oral Pill)', '1769535', 'Cefadroxil', 'bda86975-8c2f-4c4e-9a4c-a1a959f9336a', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(888, 'ceFAZolin (Injectable)', '1771162', 'Cefazolin', 'd3fe1e18-9e3e-4797-9fb4-275900fa9ff3', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(889, 'Cefdinir (Oral Liquid)', '1796458', 'cefdinir', '542fb9ea-f289-43c3-81fa-555a632e6a45', to_date('3/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(890, 'Cefdinir (Oral Pill)', '1796458', 'cefdinir', '77e061e8-d3e2-4955-9f65-59510b5afc70', to_date('8/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(891, 'Cefditoren (Oral Pill)', '1747005', 'cefditoren', 'd5050d0e-81d1-4707-a38a-e80de2aebf09', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(892, 'Cefixime (Chewable)', '1796435', 'Cefixime', '5007152e-a679-4e85-ac3f-c46087812774', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(893, 'Cefixime (Oral Liquid)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(894, 'Cefixime (Oral Pill)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(895, 'CEFIZOX (Injectable)', '1777254', 'Ceftizoxime', '0013824b-6aee-4da4-affd-35bc6bf19d91', to_date('8/6/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(896, 'CEFOTAN (Injectable)', '1774932', 'Cefotetan', '56912a83-4cba-4461-d983-3a0656515458', to_date('4/20/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(897, 'Cefotaxime (Injectable)', '1774470', 'Cefotaxime', 'ef1a6dc6-bc3d-4f09-8f92-7ff328f56561', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(898, 'cefoTEtan (Injectable)', '1774932', 'Cefotetan', 'c6b8667e-8bb6-ea58-a969-2f74458bc611', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(899, 'cefOXitin (Injectable)', '1775741', 'Cefoxitin', '6a4a2afa-4f00-41d4-bd6d-baa0a95f6929', to_date('3/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(900, 'Cefpodoxime (Oral Liquid)', '1749008', 'cefpodoxime', '5310de78-22c3-4bee-9956-854e767b6bef', to_date('4/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(901, 'Cefpodoxime (Oral Pill)', '1749008', 'cefpodoxime', '8b7f7043-5bfb-47a5-80cb-4f3f65358dff', to_date('12/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(902, 'Cefprozil (Oral Liquid)', '1738366', 'cefprozil', '3ec55c0a-1456-412e-972f-352b3135c8f2', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(903, 'Cefprozil (Oral Pill)', '1738366', 'cefprozil', '75d57e35-ffeb-4d88-8dba-5458e284fd82', to_date('8/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(904, 'cefTAZidime (Injectable)', '1776684', 'Ceftazidime', '22d6534c-4488-48a1-8d78-e2fb908259de', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(905, 'Ceftibuten (Oral Liquid)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', to_date('1/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(906, 'Ceftibuten (Oral Pill)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', to_date('1/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(907, 'Ceftizoxime (Injectable)', '1777254', 'Ceftizoxime', '3574df06-fec5-4888-8080-3b817addfb02', to_date('8/6/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(908, 'cefTRIAXone (Injectable)', '1777806', 'Ceftriaxone', '0faaee8c-30f6-4715-a9b6-7978da7c1ec8', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(909, 'Cefuroxime (Injectable)', '1778162', 'Cefuroxime', '98ea197c-b3ff-47bc-8d0f-fce91b539959', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(910, 'Cefuroxime (Oral Liquid)', '1778162', 'Cefuroxime', '135e2dfc-eb47-4d04-a903-a081d36c267e', to_date('8/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(911, 'Cefuroxime (Oral Pill)', '1778162', 'Cefuroxime', '61d3f51b-a8ed-4be5-849c-4bf653538d3e', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(912, 'CeleBREX (Oral Pill)', '1118084', 'celecoxib', '8d52185d-421f-4e34-8db7-f7676db2a226', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(913, 'Celecoxib (Oral Pill)', '1118084', 'celecoxib', '8d52185d-421f-4e34-8db7-f7676db2a226', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(914, 'CELESTONE SOLUSPAN (Injectable)', '920458', 'Betamethasone', '2fb9fb11-d4ab-4c19-b5d1-c0177b3d8ef6', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(915, 'CeleXA (Oral Pill)', '797617', 'Citalopram', '6c96373f-6744-49d4-aec5-3720bc993fab', to_date('12/21/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(916, 'CELLCEPT (Oral Pill)', '19003999', 'mycophenolate mofetil', '81ca6530-76d1-46f1-9bf8-0ffac79d2523', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(917, 'CENESTIN (Oral Pill)', '1596779', '"synthetic conjugated estrogens, A"', '410f9433-98ed-4c3f-abb1-2386296d2f72', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(918, 'CENOLATE (Injectable)', '19011773', 'Ascorbic Acid', 'af67a2f3-65b7-4a6e-9a51-315a280f976b', to_date('11/1/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(919, 'CENTANY (Topical)', '951511', 'Mupirocin', 'ae3defca-06d5-49ac-8a27-be5c4e9304d1', to_date('2/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(920, 'CENTUSSIN (Oral Liquid)', '1130863', 'Brompheniramine', '315a70bc-bfd8-471d-9379-d2746823537d', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(921, 'CEO-TWO (Rectal)', '19086788', 'Potassium bitartrate', 'd868de56-ac3b-4e44-8aa5-031661f0ac25', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(922, 'CEPACOL (Oral Disintegrating)', '917006', 'Benzocaine', 'a0e52795-e4ec-4205-8862-a51a2b2a7ae1', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(923, 'CEPACOL (Oral Lozenge)', '917006', 'Benzocaine', '48ce5553-5275-461b-8fe5-7f2bde197741', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(924, 'CEPACOL ANTIBACTERIAL MOUTHWASH (Mouthwash)', '989301', 'Cetylpyridinium', '7c19eba6-3ebd-497f-9066-6152b72eafdd', to_date('6/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(925, 'CEPACOL DUAL RELIEF (Mucosal)', '917006', 'Benzocaine', '45561e94-2b54-4c19-be3e-b1949e1a5bbc', to_date('7/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(926, 'CEPACOL SENSATIONS COOLING (Oral Lozenge)', '917006', 'Benzocaine', '968f2322-fa9a-4ef8-baab-49576713618c', to_date('4/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(927, 'CEPACOL SORE THROAT FROM POST NASAL DRIP (Oral Lozenge)', '901656', 'Menthol', '599912f1-f888-4528-a676-78ef9a15b128', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(928, 'CEPACOL SORE THROAT PAIN RELIEF (Oral Lozenge)', '917006', 'Benzocaine', '17d32d80-520a-4e32-9b45-1e296add9924', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(929, 'CEPACOL SORE THROAT PLUS COATING (Oral Lozenge)', '917006', 'Benzocaine', '634a8e8a-4a7b-4eed-ba34-b06acb9c6525', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(930, 'CEPACOL SORE THROAT PLUS COUGH (Oral Lozenge)', '917006', 'Benzocaine', 'd25f736d-07ee-40cf-bc16-0f2c231eecd1', to_date('9/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(931, 'CEPASTAT (Oral Lozenge)', '923540', 'phenol', '6f4402aa-3f6e-4469-b512-868dba734d2b', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(932, 'Cephalexin (Oral Liquid)', '1786621', 'Cephalexin', 'c408de52-a15e-49ec-8bcd-eede240e5225', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(933, 'Cephalexin (Oral Pill)', '1786621', 'Cephalexin', '937d6426-aed3-445b-9e9d-f30fa2f27a29', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(934, 'CEPROTIN (Injectable)', '42801108', 'Protein C', '926914a9-78b2-40ea-b37d-2a55c09bf275', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(935, 'CERDELGA (Oral Pill)', '45775782', 'eliglustat', '819f828a-b888-4e46-83fc-94d774a28a83', to_date('9/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(936, 'CEREZYME (Injectable)', '1348407', 'imiglucerase', 'df60f030-866b-4374-a31f-8ae3f6b45c38', to_date('12/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(937, 'CERISA WASH (Soap)', '1036252', 'Sulfacetamide', '00278dd5-328f-4f4c-992c-a02ecde24e51', to_date('7/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(938, 'CERVIDIL (Implant)', '1329415', 'Dinoprostone', 'f1391c7c-233e-44d8-8838-36cc12f01044', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(939, 'CESAMET (Oral Pill)', '913440', 'nabilone', 'bb582d64-0f51-11df-8a39-0800200c9a66', to_date('5/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(940, 'CETACAINE (Topical)', '917006', 'Benzocaine', 'af1773c5-5d5b-4278-b551-30ad2df6d5b5', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(941, 'CETAFEN (Oral Pill)', '1125315', 'Acetaminophen', '207cf327-b35c-405c-979e-af25183e6ae5', to_date('11/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(942, 'CETAMIDE (Ophthalmic)', '1036252', 'Sulfacetamide', '5a5d8fee-b42a-4f0c-a508-75c7c71bedb4', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(943, 'Cetirizine (Chewable)', '1149196', 'Cetirizine', 'dcc69bbe-e24c-4acf-8746-559ac1600dda', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(944, 'Cetirizine (Oral Liquid)', '1149196', 'Cetirizine', 'b088ac07-3246-434b-98cb-8759e9109fb0', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(945, 'Cetirizine (Oral Pill)', '1149196', 'Cetirizine', '91fe3ab8-c155-4482-9f06-f029d3563aad', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(946, 'CETRAXAL (Otic)', '1797513', 'Ciprofloxacin', '213b339a-75e0-4b1d-9052-8ee82a65d713', to_date('6/17/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(947, 'Cetrorelix (Injectable)', '1503983', 'cetrorelix', 'aca7768e-28a7-4027-b1d8-e66247665f79', to_date('5/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(948, 'CETROTIDE (Injectable)', '1503983', 'cetrorelix', 'aca7768e-28a7-4027-b1d8-e66247665f79', to_date('5/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(949, 'Cetylpyridinium (Mouthwash)', '989301', 'Cetylpyridinium', '5db380e6-f2f2-434d-b2d7-c19fedb6e821', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(950, 'Cetylpyridinium (Mucosal)', '989301', 'Cetylpyridinium', '48b1f5b8-69b1-4d50-960b-733151beef91', to_date('9/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(951, 'Cevimeline (Oral Pill)', '954819', 'cevimeline', '0679dd4c-fece-4c6d-b273-2c62237e8973', to_date('3/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(952, 'Chaetomium globosum extract (Injectable)', '40161167', 'Chaetomium globosum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(953, 'CHANTIX (Oral Pill)', '780442', 'varenicline', '3e689dae-5058-4556-be14-df50e2803208', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(954, 'CHEMET (Oral Pill)', '1728909', 'Succimer', '62035612-9505-3a3f-1ac8-e2dbd711d24e', to_date('8/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(955, 'CHENODAL (Oral Pill)', '19052447', 'Chenodeoxycholate', 'b8b4539b-31d1-40cb-b284-86cf8b16522a', to_date('1/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(956, 'Chenodeoxycholate (Oral Pill)', '19052447', 'Chenodeoxycholate', 'bbb86251-9423-40e6-9117-9511ab5fbf63', to_date('2/2/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(957, 'CHERATUSSIN (Oral Liquid)', '1201620', 'Codeine', '532d83c7-7e01-4777-927c-cf01db6847e5', to_date('7/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(958, 'Chesnut oak pollen extract (Injectable)', '40172048', 'chesnut oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(959, 'CHILDREN''S NYQUIL COLD AND COUGH (Oral Liquid)', '1192710', 'Chlorpheniramine', 'e67ae132-d9c7-4a56-b6f7-562a2bd4747f', to_date('10/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(960, 'CHIRHOSTIM (Injectable)', '19084212', 'Human Secretin', 'b4dfe70f-0a86-4488-9ba1-dcd8f86cbfcd', to_date('8/15/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(961, 'Chlophedianol/Chlorcyclizine (Oral Liquid)', '1150886', 'chlophedianol', 'c588736a-250b-4fc6-b221-b4b51052b032', to_date('3/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(962, 'Chlophedianol/Chlorpheniramine/Phenylephrine (Oral Liquid)', '1150886', 'chlophedianol', 'c032041e-fa67-4ef8-aa5a-82d5b0432178', to_date('4/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(963, 'Chlophedianol/Chlorpheniramine/Phenylephrine (Oral Pill)', '1150886', 'chlophedianol', '7c682422-a719-4b96-a7f4-a5733d655e38', to_date('3/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(964, 'Chlophedianol/Dexbrompheniramine (Oral Liquid)', '1150886', 'chlophedianol', 'd046f4ba-5753-4ed5-a924-0b66fd116781', to_date('10/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(965, 'Chlophedianol/Dexbrompheniramine/Pseudoephedrine (Oral Liquid)', '1150886', 'chlophedianol', '43610aaa-8b94-40d5-ae09-3d75bd2317c8', to_date('4/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(966, 'Chlophedianol/Dexchlorpheniramine/Pseudoephedrine (Oral Liquid)', '1150886', 'chlophedianol', '8c34580b-fd41-4710-91dc-bdcbefa63cf0', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(967, 'Chlophedianol/guaiFENesin (Oral Liquid)', '1150886', 'chlophedianol', '1021efb8-27c6-42f7-b3ae-84b6cb056569', to_date('11/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(968, 'Chlophedianol/guaiFENesin/Phenylephrine (Oral Liquid)', '1150886', 'chlophedianol', '2e4abee4-58dc-45b7-a91c-68dea307c327', to_date('10/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(969, 'Chlophedianol/Phenylephrine/Pyrilamine (Oral Liquid)', '1150886', 'chlophedianol', 'c767a626-a3ce-490c-a511-00749784acab', to_date('2/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(970, 'Chlophedianol/Pseudoephedrine (Oral Liquid)', '1150886', 'chlophedianol', 'cd95ea40-5461-4435-bec1-979a66d62944', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(971, 'Chlophedianol/Pyrilamine (Oral Liquid)', '1150886', 'chlophedianol', 'e2bca40f-9c27-ec8b-2ff0-ef9847ba2037', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(972, 'Chlophedianol/Thonzylamine (Oral Liquid)', '1150886', 'chlophedianol', 'd219ff56-bf03-4a5f-9100-7c6d07c972dd', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(973, 'CHLOR-TRIMETON (Oral Pill)', '1192710', 'Chlorpheniramine', '883a0a71-c9fb-44fd-9f2c-591d7e17c973', to_date('7/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(974, 'Chlorambucil (Oral Pill)', '1390051', 'Chlorambucil', '967ed3ff-d99b-41e8-b768-dfb586d3d9a6', to_date('6/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(975, 'Chloramphenicol (Injectable)', '990069', 'Chloramphenicol', '08c16a42-1ad4-400f-b1b0-75303eb86713', to_date('9/13/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(976, 'Chloramphenicol (Ophthalmic)', '990069', 'Chloramphenicol', '698aaa0a-9fd3-40c2-ec93-0dc2170a75ba', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(977, 'CHLORAPREP ONE-STEP (Topical)', '1790812', 'Chlorhexidine', '8a4da72e-47bc-454b-b020-f23dcd4bb692', to_date('9/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(978, 'CHLORASEPTIC (Oral Lozenge)', '917006', 'Benzocaine', '7c161a17-cf82-4de3-8348-888c040df0f9', to_date('4/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(979, 'CHLORASEPTIC MAX SPRAY (Mucosal)', '961145', 'Glycerin', '882c940c-b3c3-4aa4-8d64-e4260f066ff4', to_date('3/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(980, 'CHLORASEPTIC SORE THROAT (Oral Lozenge)', '917006', 'Benzocaine', '5815a5e4-9b84-43bc-bbf3-4b85596e43d6', to_date('11/17/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(981, 'CHLORASEPTIC SORE THROAT + COUGH (Oral Lozenge)', '917006', 'Benzocaine', '6b1a50d0-be54-4fcb-b5e2-b47abf3555c0', to_date('11/16/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(982, 'CHLORASEPTIC SPRAY (Mucosal)', '923540', 'phenol', 'a197fab2-70ce-4a6c-9add-29d7368a75c5', to_date('3/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(983, 'Chlorcyclizine/Codeine (Oral Liquid)', '990413', 'chlorcyclizine', 'aa5a37d5-1ab7-40a4-a25f-2094bb46bfe3', to_date('9/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(984, 'Chlorcyclizine/Codeine/Pseudoephedrine (Oral Liquid)', '990413', 'chlorcyclizine', '9d1d42e4-9d69-4360-a057-81f909133880', to_date('1/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(985, 'Chlorcyclizine/Phenylephrine (Chewable)', '990413', 'chlorcyclizine', '70f9d9c5-6204-4ddc-be82-d6c9e59d70e5', to_date('11/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(986, 'Chlorcyclizine/Phenylephrine (Oral Liquid)', '990413', 'chlorcyclizine', '5585cf36-d7e7-40ce-982e-e8c6a58e85d1', to_date('1/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(987, 'Chlorcyclizine/Pseudoephedrine (Oral Liquid)', '990413', 'chlorcyclizine', '4e1bd76c-3fd8-4372-907f-6b799d67cfbb', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(988, 'Chlorcyclizine/Pseudoephedrine (Oral Pill)', '990413', 'chlorcyclizine', 'ccedbc38-2479-4c35-9f86-a9f29bcfab3f', to_date('1/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(989, 'chlordiazePOXIDE (Oral Pill)', '990678', 'Chlordiazepoxide', 'b11a0582-eb80-4d60-914e-dc8e84177869', to_date('2/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(990, 'chlordiazePOXIDE/Clidinium (Oral Pill)', '990678', 'Chlordiazepoxide', 'e8e41a74-6816-4b9a-9905-d072e6e4cfa8', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(991, 'Chlorhexidine (Implant)', '1790812', 'Chlorhexidine', 'c40ab6ac-8987-42d2-a95b-95fbfd3b0162', to_date('3/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(992, 'Chlorhexidine (Mouthwash)', '1790812', 'Chlorhexidine', '8d90c38e-e241-4f73-877d-ff314408a510', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(993, 'Chlorhexidine (Soap)', '1790812', 'Chlorhexidine', 'ef5ed5db-2787-4d4a-90d9-09b9740c882a', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(994, 'Chlorhexidine (Topical)', '1790812', 'Chlorhexidine', 'dfdaa646-0ef5-4433-b8d3-39ec139827b9', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(995, 'Chlorhexidine/Isopropyl Alcohol (Topical)', '1790812', 'Chlorhexidine', 'ea4d9094-1aca-4c0f-a67d-7276a9fd591b', to_date('9/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(996, 'CHLOROMAG (Injectable)', '19092849', 'Magnesium Chloride', '30f8b0f5-d601-4ed6-8463-20746db78d94', to_date('7/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(997, 'CHLOROMYCETIN (Ophthalmic)', '990069', 'Chloramphenicol', '698aaa0a-9fd3-40c2-ec93-0dc2170a75ba', to_date('11/17/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(998, 'Chloroprocaine (Injectable)', '19049410', 'chloroprocaine', 'ec4ab877-878f-4b0e-3eb6-106a606479ad', to_date('9/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(999, 'Chloroquine (Oral Pill)', '1792515', 'Chloroquine', '56f3380c-9411-417a-a3f7-fe4025900c75', to_date('3/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1000, 'Chlorothiazide (Injectable)', '992590', 'Chlorothiazide', '5b5d8a97-1428-4047-8e6c-b778429a26e4', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1001, 'Chloroxylenol (Soap)', '949459', 'chloroxylenol', 'b4493ad6-e1c8-4b2d-8a57-1845589b04f9', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1002, 'Chloroxylenol (Topical)', '949459', 'chloroxylenol', '9ba4c1a7-e397-44a2-979e-ad2b794bd1fe', to_date('9/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1003, 'Chloroxylenol/Hydrocortisone/Pramoxine (Otic)', '949459', 'chloroxylenol', 'ae998218-7f49-46cf-9898-0920572b6fd1', to_date('9/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1004, 'Chlorpheniramine (Oral Liquid)', '1192710', 'Chlorpheniramine', '3065bc51-c210-483b-876d-14a4d060bdec', to_date('9/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1005, 'Chlorpheniramine (Oral Pill)', '1192710', 'Chlorpheniramine', '883a0a71-c9fb-44fd-9f2c-591d7e17c973', to_date('7/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1006, 'Chlorpheniramine/Codeine (Oral Liquid)', '1192710', 'Chlorpheniramine', 'acc21b1e-729c-4004-820f-5edbde869458', to_date('10/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1007, 'Chlorpheniramine/Codeine/Pseudoephedrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '6ca7c4ff-ba0d-490f-b8b8-9518955424e1', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1008, 'Chlorpheniramine/Dextromethorphan (Oral Liquid)', '1192710', 'Chlorpheniramine', 'becb4025-b63e-f2ea-9d11-d51fdf4e5c13', to_date('10/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1009, 'Chlorpheniramine/Dextromethorphan (Oral Pill)', '1192710', 'Chlorpheniramine', 'de7d5d7e-415f-4ae4-9f53-fa5bef790154', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1010, 'Chlorpheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '12e5b41b-6a30-456c-9242-45fe7e9e45d8', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1011, 'Chlorpheniramine/Dextromethorphan/Pseudoephedrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '63fdf19e-f467-4873-8cbf-da2e5e2cdc0b', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1012, 'Chlorpheniramine/HYDROcodone (Oral Liquid)', '1192710', 'Chlorpheniramine', '47dae0e8-065f-4722-a1c1-4763e25e14d4', to_date('3/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1013, 'Chlorpheniramine/HYDROcodone/Pseudoephedrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '5ab09c98-cb39-43be-b306-5eff3c31b563', to_date('1/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1014, 'Chlorpheniramine/Ibuprofen/Pseudoephedrine (Oral Pill)', '1192710', 'Chlorpheniramine', 'ecd6ea11-8b34-01b4-cbd9-901ba7a8f6e2', to_date('2/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1015, 'Chlorpheniramine/Methscopolamine (Oral Liquid)', '1192710', 'Chlorpheniramine', '9aca3d25-d042-479b-a00e-63be5b5073fe', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1016, 'Chlorpheniramine/Phenylephrine (Oral Liquid)', '1192710', 'Chlorpheniramine', 'bf5c4a23-9581-4b84-a75b-e17e1d768970', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1017, 'Chlorpheniramine/Phenylephrine (Oral Pill)', '1192710', 'Chlorpheniramine', '58e7d1e6-080c-4aa3-ad02-e93288db6007', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1018, 'Chlorpheniramine/Phenylephrine/Pyrilamine (Oral Liquid)', '1192710', 'Chlorpheniramine', '8728160d-6172-4f4e-b512-46f5d9bca733', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1019, 'Chlorpheniramine/Pseudoephedrine (Oral Pill)', '1192710', 'Chlorpheniramine', '7cd8f7f3-c262-4f7c-bcaf-068be2c952f9', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1020, 'chlorproMAZINE (Oral Pill)', '794852', 'Chlorpromazine', 'd2f1cc4b-eaf7-4a76-819e-f5168f22a5de', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1021, 'chlorproPAMIDE (Oral Pill)', '1594973', 'Chlorpropamide', 'baa54287-8065-da1a-f19e-ce8daf61bd01', to_date('5/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1022, 'Chlorthalidone (Oral Pill)', '1395058', 'Chlorthalidone', 'bb7112ae-3a37-4525-8c7f-c0f4100ffc0a', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1023, 'Chlorthalidone/cloNIDine (Oral Pill)', '1395058', 'Chlorthalidone', '79a0f78a-bd88-4657-8b51-e24a64a270b6', to_date('2/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1024, 'Chlorzoxazone (Oral Pill)', '795113', 'Chlorzoxazone', '3b91e3ba-1eb6-4297-9d1b-28d87b36a5b3', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1025, 'Cholecalciferol (Oral Pill)', '19095164', 'Cholecalciferol', 'fdec1f4d-8ede-42ff-882d-406154911127', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1026, 'Cholecalciferol/Folic Acid (Oral Pill)', '19095164', 'Cholecalciferol', '7bc8730c-38cf-4bae-b8f2-da92751a551c', to_date('11/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1027, 'Cholestyramine Resin (Oral Liquid)', '19095309', 'Cholestyramine Resin', '362ddd91-a63f-4ec6-841a-75785dd208c8', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1028, 'Cholic Acid (Oral Pill)', '44506782', 'Cholic Acid', 'e5b67402-8550-4604-97a0-c7b149fbf753', to_date('4/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1029, 'Chondroitin Sulfates/Glucosamine/Methylsulfonylmethane (Oral Pill)', '1395573', 'Chondroitin Sulfates', '67916a8f-5000-4b2b-bf8c-47d2e014176b', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1030, 'CHOOZ (Chewable)', '19035704', 'Calcium Carbonate', 'b2dd2047-e00b-410f-a7ee-74e9c365d4a8', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1031, 'Chorionic Gonadotropin (Injectable)', '1563600', 'Chorionic Gonadotropin', 'dc604794-6dd6-43a7-85fa-2f04ed325c33', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1032, 'Chromic chloride (Injectable)', '19049877', 'chromic chloride', '6c6d8d3b-fd30-4cbc-a988-92cc73d0414c', to_date('9/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1033, 'Chromic chloride/Copper Sulfate/Manganese sulfate/Zinc Sulfate (Injectable)', '19049877', 'chromic chloride', '5ee6a685-3c35-467b-8d4d-79efdd0bfa8e', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1034, 'CIALIS (Oral Pill)', '1336926', 'tadalafil', '1da40b7c-c96a-45d2-a3f2-fafad429afd6', to_date('3/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1035, 'CICLODAN (Topical)', '950098', 'ciclopirox', '346422b8-003d-4c4f-8a92-1e9146c13732', to_date('6/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1036, 'Ciclopirox (Shampoo)', '950098', 'ciclopirox', 'b44b190b-8e2a-4937-a6c5-92f37911e7f8', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1037, 'Ciclopirox (Topical)', '950098', 'ciclopirox', '4439cb3d-6825-4558-a981-122ec15f7b05', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1038, 'Cidofovir (Injectable)', '1745072', 'Cidofovir', '56541229-8c1a-4550-8951-2415ed08e7e9', to_date('6/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1039, 'Cilastatin/Imipenem (Injectable)', '1797258', 'Cilastatin', '4b652048-d5e1-48d1-acd4-091c14d9022d', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1040, 'Cilostazol (Oral Pill)', '1350310', 'cilostazol', '20a05739-46a6-47ca-ae61-4341d028460e', to_date('3/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1041, 'CILOXAN (Ophthalmic)', '1797513', 'Ciprofloxacin', '614af481-f9ef-44ac-9cb8-f421660d9cdd', to_date('7/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1042, 'Cimetidine (Oral Liquid)', '997276', 'Cimetidine', 'f2ec923a-2b88-43c0-ac2a-7ae20c053039', to_date('9/1/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1043, 'Cimetidine (Oral Pill)', '997276', 'Cimetidine', 'ad3e8f6a-8e35-42c2-a98c-566a2868e923', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1044, 'Cinacalcet (Oral Pill)', '1548111', 'cinacalcet', '4cb2ad7a-c70d-4647-bc4d-bac9b5d13b92', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1045, 'CIPRO HC (Otic)', '1797513', 'Ciprofloxacin', '70b19501-34b6-4f95-a8dd-dd3e67d22399', to_date('9/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1046, 'CIPRODEX (Otic)', '1797513', 'Ciprofloxacin', '1c4db12f-285b-4714-9b1c-26bcdc39cebf', to_date('11/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1047, 'Ciprofloxacin (Ophthalmic)', '1797513', 'Ciprofloxacin', '11f56251-d913-4986-9dba-c2e4df8a3822', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1048, 'Ciprofloxacin (Oral Liquid)', '1797513', 'Ciprofloxacin', 'f8f4461c-c9fa-451b-ba24-b080c8bfc2d7', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1049, 'Ciprofloxacin (Oral Pill)', '1797513', 'Ciprofloxacin', '178dc379-e2b8-4b47-9f0c-3fc7fb435c36', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1050, 'Ciprofloxacin (Otic)', '1797513', 'Ciprofloxacin', 'd0125acf-1879-452d-ba29-c0f753653789', to_date('9/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1051, 'Ciprofloxacin/Dexamethasone (Otic)', '1797513', 'Ciprofloxacin', '0ed518de-4ae1-43d1-84ff-26872d9e6a0f', to_date('11/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1052, 'Ciprofloxacin/Hydrocortisone (Otic)', '1797513', 'Ciprofloxacin', '598288ca-256a-4b9e-91e0-829f02cb8cd3', to_date('9/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1053, 'Cisatracurium (Injectable)', '19015726', 'Cisatracurium', 'f78a07e2-0d3b-4460-b29e-8c10c90afbda', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1054, 'CISplatin (Injectable)', '1397599', 'Cisplatin', '64975f5d-0eca-4998-8a72-06eec98285eb', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1055, 'Citalopram (Oral Pill)', '797617', 'Citalopram', '6c96373f-6744-49d4-aec5-3720bc993fab', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1056, 'Citric Acid/Gluconolactone/Magnesium carbonate (Irrigation)', '950435', 'Citric Acid', 'bdb3cef8-79c4-4322-9a21-c13123abe0cc', to_date('3/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1057, 'Citric Acid/Glucose/Sodium citrate (Injectable)', '950435', 'Citric Acid', '22805f0d-ba58-41ea-b245-19980abcda22', to_date('6/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1058, 'Citric Acid/Potassium citrate (Oral Liquid)', '950435', 'Citric Acid', '93cca32a-d173-4d27-b493-9d8cfd1b7978', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1059, 'Citric Acid/Potassium citrate/Sodium citrate (Oral Liquid)', '950435', 'Citric Acid', 'eb0bade0-fc86-4bfa-90cc-f0d5f7b4d3a8', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1060, 'Citric Acid/Sodium Bicarbonate (Effervescent)', '950435', 'Citric Acid', '672106ae-9e27-4173-b7b7-1f5494643673', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1061, 'Citric Acid/Sodium citrate (Oral Liquid)', '950435', 'Citric Acid', '5c8b16fa-023a-4e10-a3a2-8ad79a19f24c', to_date('8/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1062, 'CITROMA (Oral Liquid)', '967861', 'magnesium citrate', 'af276471-c5d7-4326-8ba2-cf546ab50f77', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1063, 'CITRUCEL (Oral Liquid)', '905371', 'Methylcellulose', '9d5f2244-a610-4d45-b6e8-e79bb17a558f', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1064, 'CITRUCEL (Oral Pill)', '905371', 'Methylcellulose', 'd27f6742-2dcc-451e-b803-6ffe183038ec', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1065, 'Cladosporium cladosporioides extract (Injectable)', '40167025', 'Cladosporium cladosporioides extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1066, 'Cladosporium herbarum extract (Injectable)', '40161203', 'Cladosporium herbarum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1067, 'Cladribine (Injectable)', '19054825', 'Cladribine', 'a2592a9b-bca6-4a5a-89c2-855a0634d5fe', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1068, 'CLARAVIS (Oral Pill)', '984232', 'Isotretinoin', 'ee862463-77c0-4694-bba8-97274f13963f', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1069, 'CLARINEX (Oral Pill)', '1103006', 'desloratadine', 'b7b0b1a0-2ab3-4697-bee4-0cd7fd5088b9', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1070, 'CLARIS (Soap)', '1036252', 'Sulfacetamide', '7045e1e0-de48-4cc4-862d-f5c7a9b693b9', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1071, 'Clarithromycin (Oral Liquid)', '1750500', 'Clarithromycin', '2e899f4a-a2e9-445c-a0ed-6ad811e997e6', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1072, 'Clarithromycin (Oral Pill)', '1750500', 'Clarithromycin', '185422f8-12f8-4bcf-b5da-57544e6528f0', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1073, 'CLARITIN (Oral Disintegrating)', '1107830', 'Loratadine', '7dc04b48-f053-4e4b-a493-9e8286d2a791', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1074, 'CLARITIN (Oral Liquid)', '1107830', 'Loratadine', '1fdeaf8b-6c6b-7033-e054-00144ff8d46c', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1075, 'CLARITIN (Oral Pill)', '1107830', 'Loratadine', '660ac9df-f1b1-4c89-94dd-9fae0a013f3c', to_date('11/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1076, 'CLARUS (Topical)', '902950', 'Tolnaftate', '7e8897ff-67d1-4336-866e-cb76a36edddc', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1077, 'CLEAN AND CLEAR ADVANTAGE ACNE CLEANSER (Soap)', '964407', 'Salicylic Acid', '20a9ba99-1d86-4edb-a0f5-f5df16d142f0', to_date('11/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1078, 'CLEAN AND CLEAR ADVANTAGE MARK TREATMENT (Topical)', '964407', 'Salicylic Acid', 'd39c2906-97d7-4b85-bb36-68e5f086935a', to_date('7/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1079, 'CLEAN AND CLEAR ADVANTAGE POPPED PIMPLE RELIEF (Topical)', '964407', 'Salicylic Acid', 'c3852160-2a19-442b-8118-4579edf0afe9', to_date('3/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1080, 'CLEAN AND CLEAR BLACKHEAD ERASER (Topical)', '964407', 'Salicylic Acid', 'c33ac045-a8e4-4171-a6f4-ecb5829ee004', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1081, 'CLEAN AND CLEAR DEEP CLEANING (Topical)', '964407', 'Salicylic Acid', 'd61db0ce-11f2-42f4-b975-b623872c786e', to_date('5/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1082, 'CLEAR EYES COMPLETE (Ophthalmic)', '902251', 'hypromellose', '9a1ce5e2-c3da-424d-b754-cf2de8c655e3', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1083, 'CLEAR EYES COOLING COMFORT (Ophthalmic)', '961145', 'Glycerin', 'a710be3f-fa5b-46a6-87b5-5a4d1f807e1c', to_date('4/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1084, 'CLEAR EYES NATURAL TEARS (Ophthalmic)', '948856', 'Polyvinyl Alcohol', 'efba3eb0-798d-4635-b19b-4970e45b3cc9', to_date('11/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1085, 'CLEAR EYES REDNESS RELIEF REFORMULATED NOV 2011 (Ophthalmic)', '961145', 'Glycerin', 'a26ef66e-2def-4c98-9959-d40d4cfe3108', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1086, 'CLEARASIL (Topical)', '918172', 'Benzoyl Peroxide', '6158ced9-cd3a-41b2-809e-9aec2ba90d33', to_date('11/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1087, 'CLEARASIL ACNE CONTROL (Soap)', '964407', 'Salicylic Acid', 'ebe4669e-0387-47b2-9778-eb7c04a1c9f9', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1088, 'CLEARASIL ACNE CONTROL (Topical)', '964407', 'Salicylic Acid', 'c19ea241-9952-4251-bb4d-2db521bead94', to_date('11/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1089, 'CLEARCANAL (Otic)', '958999', 'carbamide peroxide', '0ef2be5b-cc39-48ae-b5c5-e787464dea08', to_date('3/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1090, 'CLEARLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'ee30489a-8683-4403-8f85-76434242663c', to_date('5/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1091, 'Clemastine (Oral Liquid)', '1197677', 'Clemastine', '3e403ca1-0c23-4af6-bfac-50187d8d4653', to_date('6/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1092, 'Clemastine (Oral Pill)', '1197677', 'Clemastine', '5243fbe1-e45d-4673-86bf-6f8454d36f39', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1093, 'CLENIA (Topical)', '1036252', 'Sulfacetamide', '4089ba41-7b16-4fc3-b160-470b426a21ec', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1094, 'CLEOCIN (Injectable)', '997881', 'Clindamycin', '7741156f-b98f-4975-a7e3-1c7d508a6a14', to_date('10/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1095, 'CLEOCIN (Oral Liquid)', '997881', 'Clindamycin', '1ef87b6c-9d32-44ac-8c55-8bf01424cc45', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1096, 'CLEOCIN (Vaginal)', '997881', 'Clindamycin', 'c72f21f8-c81a-4e4c-9c98-ed46a57b3343', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1097, 'CLINDACIN (Topical)', '997881', 'Clindamycin', '288371ef-96b6-4ce3-9be1-1d9d309b400c', to_date('2/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1098, 'CLINDAMAX (Topical)', '997881', 'Clindamycin', '2ceee427-50d3-4bfe-8ccf-9efb11a90fb7', to_date('10/9/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1099, 'Clindamycin (Injectable)', '997881', 'Clindamycin', 'bd1c1648-4733-4233-8337-469fe11bd0cb', to_date('7/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1100, 'Clindamycin (Oral Liquid)', '997881', 'Clindamycin', 'e1cb8caa-1e49-41e7-bbd8-a2e75bea2fe4', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1101, 'Clindamycin (Oral Pill)', '997881', 'Clindamycin', '63a0466c-af7d-4696-a950-19b73b55a65a', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1102, 'Clindamycin (Topical)', '997881', 'Clindamycin', '64c28c73-5a2a-4bb0-bcec-9948463a9c8f', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1103, 'Clindamycin (Vaginal)', '997881', 'Clindamycin', '706dd0b6-367c-4950-88fe-7a6c0661c2b9', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1104, 'Clindamycin/Tretinoin (Topical)', '997881', 'Clindamycin', '78c329f9-f0c9-486d-9e54-0123699fb9e1', to_date('11/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1105, 'CLINPRO 5000 (Toothpaste)', '19069022', 'Sodium Fluoride', 'a20d3cf0-2e1f-4191-971e-9e47936b4580', to_date('1/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1106, 'Clioquinol/Hydrocortisone (Topical)', '980867', 'Clioquinol', 'b1f875e9-a95b-47ff-80cc-54a2d7a2c08c', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1107, 'Clobetasol (Shampoo)', '998415', 'Clobetasol', 'a4f82a4c-bc7e-4927-936e-add854812559', to_date('6/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1108, 'Clobetasol (Topical)', '998415', 'Clobetasol', '976d9c90-1800-4dac-9b92-48284b29d2b9', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1109, 'CLOBEX (Topical)', '998415', 'Clobetasol', 'a086ead1-b906-4198-af19-5423957c9e2a', to_date('2/24/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1110, 'Clocortolone (Topical)', '950882', 'clocortolone', '1b20b467-1b29-45de-b00e-4228812444f6', to_date('5/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1111, 'CLODAN (Shampoo)', '998415', 'Clobetasol', '4150d579-eb8b-46cd-b044-352807894e1a', to_date('6/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1112, 'CLODERM (Topical)', '950882', 'clocortolone', '4abc01f2-03d4-43d5-a085-f452443cfca2', to_date('5/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1113, 'Clofarabine (Injectable)', '19054821', 'clofarabine', '55d3c78b-dca5-436b-97b5-73d166217415', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1114, 'CLOFERA (Oral Liquid)', '1150886', 'chlophedianol', 'cd95ea40-5461-4435-bec1-979a66d62944', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1115, 'CLOLAR (Injectable)', '19054821', 'clofarabine', '55d3c78b-dca5-436b-97b5-73d166217415', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1116, 'clomiPHENE (Oral Pill)', '1598819', 'Clomiphene', '53eff40f-37b1-47b1-a9b8-c22360855f18', to_date('4/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1117, 'clomiPRAMINE (Oral Pill)', '798834', 'Clomipramine', '4c32971e-feb3-4388-9cd6-d1f99f258b0d', to_date('7/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1118, 'clonazePAM (Oral Disintegrating)', '798874', 'Clonazepam', '26b1d362-e727-49db-9e81-ee80ca97795c', to_date('7/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1119, 'clonazePAM (Oral Pill)', '798874', 'Clonazepam', '79a3305b-be80-416f-a346-5a907f7b669e', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1120, 'cloNIDine (Injectable)', '1398937', 'Clonidine', 'f6798f73-b5a6-434b-a627-aa102b123dd5', to_date('10/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1121, 'cloNIDine (Oral Pill)', '1398937', 'Clonidine', 'e6583ff5-0e03-470b-a986-35770aa0e80b', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1122, 'Clopidogrel (Oral Pill)', '1322184', 'clopidogrel', '8b84d00e-9aac-4da2-b9aa-17e5ddf9b922', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1123, 'Clorazepate (Oral Pill)', '790253', 'clorazepate', 'b8fbc985-62a5-4bc2-b9b8-0451926e86de', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1124, 'CLORPACTIN WCS-90 (Topical)', '1719061', 'oxychlorosene', '6b3b2d67-4142-4a98-9a73-fb107b19a636', to_date('3/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1125, 'CLORPRES (Oral Pill)', '1395058', 'Chlorthalidone', '79a0f78a-bd88-4657-8b51-e24a64a270b6', to_date('2/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1126, 'Clotrimazole (Oral Lozenge)', '1000632', 'Clotrimazole', '7464e883-6286-4f04-ae38-b7ddc3fec754', to_date('4/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1127, 'Clotrimazole (Topical)', '1000632', 'Clotrimazole', 'b4d9cde8-bf6d-470b-9b5c-29f8e680157e', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1128, 'Clotrimazole (Vaginal)', '1000632', 'Clotrimazole', '2970c5f2-282e-4b22-8e24-331c959f0e3e', to_date('4/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1129, 'cloZAPine (Oral Liquid)', '800878', 'Clozapine', '693cb9d4-39db-4ecf-9eae-b01f06f8d5d1', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1130, 'cloZAPine (Oral Pill)', '800878', 'Clozapine', '0cf63b13-48b2-4b07-b241-617725b52f6b', to_date('9/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1131, 'CLOZARIL (Oral Pill)', '800878', 'Clozapine', '0cf63b13-48b2-4b07-b241-617725b52f6b', to_date('9/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1132, 'Coal Tar (Shampoo)', '1000995', 'Coal Tar', '1c18fde9-d39b-4339-8f62-3f352d450291', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1133, 'Coal Tar (Topical)', '1000995', 'Coal Tar', '1e32ccda-6760-489b-83ef-f7759d0c044e', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1134, 'Coal Tar/Salicylic Acid (Shampoo)', '1000995', 'Coal Tar', 'd990a3d8-8be8-44e3-8e84-a6d8da21f3b5', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1135, 'Coal Tar/Salicylic Acid/Sulfur (Shampoo)', '1000995', 'Coal Tar', 'ec7873bb-288a-4671-b649-1d5d5ced6476', to_date('7/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1136, 'Coast live oak pollen extract (Injectable)', '40161565', 'coast live oak pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1137, 'Cobicistat (Oral Pill)', '42874220', 'cobicistat', '3784c35c-e87f-410c-900b-8fd6313c6010', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1138, 'Cobicistat/Elvitegravir/Emtricitabine/Tenofovir disoproxil (Oral Pill)', '42874220', 'cobicistat', '74ae2a93-b267-444c-8f0f-a2a6522260ee', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1139, 'Cocaine (Topical)', '1001419', 'Cocaine', '24faa247-fe12-4574-881d-445b078b3e87', to_date('6/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1140, 'Cochliobolus sativus extract (Injectable)', '40161182', 'Cochliobolus sativus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1141, 'Cocoa butter/Phenylephrine (Rectal)', '951112', 'cocoa butter', 'cfb1d1d9-d45d-4ead-bd73-48456dcff3df', to_date('7/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1142, 'Cocoa butter/Phenylephrine/Shark liver oil (Rectal)', '951112', 'cocoa butter', '2504b132-20cf-4b7e-8074-407c1adbdb19', to_date('10/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1143, 'Cocoa butter/Zinc Oxide (Rectal)', '951112', 'cocoa butter', '5516f800-d3fa-4b90-a3eb-c0bdf3183b9b', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1144, 'CODAR AR (Oral Liquid)', '1192710', 'Chlorpheniramine', 'acc21b1e-729c-4004-820f-5edbde869458', to_date('6/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1145, 'CODAR GF (Oral Liquid)', '1201620', 'Codeine', '6eda2c06-fb11-4a58-98fb-4eafe1d1df5f', to_date('6/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1146, 'Codeine (Oral Liquid)', '1201620', 'Codeine', '3b04ed3f-1a3d-4e8f-b91b-216c63d40b88', to_date('7/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1147, 'Codeine (Oral Pill)', '1201620', 'Codeine', '5819bdf7-300e-45b8-8f3a-447b53656293', to_date('6/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1148, 'Codeine/Dexbrompheniramine/Pseudoephedrine (Oral Liquid)', '1201620', 'Codeine', '9f8fc672-3589-498d-82a7-e243f4e0dec0', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1149, 'Codeine/guaiFENesin (Oral Liquid)', '1201620', 'Codeine', 'fe126254-6ee6-48c3-965c-96e4276a5314', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1150, 'Codeine/guaiFENesin/Pseudoephedrine (Oral Liquid)', '1201620', 'Codeine', '48a209ca-7f1b-4b66-9e49-943f0e7605a3', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1151, 'Codeine/Phenylephrine (Oral Liquid)', '1201620', 'Codeine', 'e2d73253-1777-4993-b693-323f0450c1c4', to_date('3/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1152, 'Codeine/Phenylephrine/Promethazine (Oral Liquid)', '1201620', 'Codeine', 'c09ba689-4377-4946-b8b0-5f64d5e90d07', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1153, 'Codeine/Promethazine (Oral Liquid)', '1201620', 'Codeine', '47d4eb4f-6dd4-44b9-aea1-19c4bfc1d425', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1154, 'Codeine/Pseudoephedrine/Pyrilamine (Oral Liquid)', '1201620', 'Codeine', 'f11abf48-ec05-44d6-9057-1c81a433efbd', to_date('6/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1155, 'Codeine/Pseudoephedrine/Triprolidine (Oral Liquid)', '1201620', 'Codeine', 'dd62a5eb-dd5a-4329-8696-07acb555af10', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1156, 'CODRIX (Oral Pill)', '1125315', 'Acetaminophen', '632c566c-39fb-4321-ac56-aea83780fa02', to_date('6/2/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1157, 'COLACE (Oral Pill)', '941258', 'Docusate', '7793fced-e8ee-44e2-b212-dd2a59a5f462', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1158, 'Colchicine (Oral Pill)', '1101554', 'Colchicine', 'cb5f9d85-6b81-49f8-bcd6-17b7bfbc10f2', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1159, 'COLCRYS (Oral Pill)', '1101554', 'Colchicine', 'a0688f33-f00f-4a68-abc3-73ec887a471a', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1160, 'Colesevelam (Oral Liquid)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', to_date('2/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1161, 'Colesevelam (Oral Pill)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', to_date('2/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1162, 'COLESTID (Oral Granules)', '1501617', 'Colestipol', '21b37725-fc0c-4365-a7dc-1a473d42502d', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1163, 'Colestipol (Oral Granules)', '1501617', 'Colestipol', '21b37725-fc0c-4365-a7dc-1a473d42502d', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1164, 'Colestipol (Oral Pill)', '1501617', 'Colestipol', 'fa6c3e11-84e9-433d-aa74-7cd34336bbed', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1165, 'Colistin (Injectable)', '901845', 'Colistin', 'ab241809-0d2f-44ba-829c-26be67ee623f', to_date('2/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1166, 'Colistin/Hydrocortisone/Neomycin/THONZONIUM (Otic)', '901845', 'Colistin', '317cc880-73fe-4561-897e-41489108b3ba', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1167, 'COLLAGENASE (Topical)', '980311', 'COLLAGENASE', 'a7bf0341-49ff-4338-a339-679a3f3f953d', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1168, 'Colloidal oatmeal (Topical)', '986261', 'Colloidal oatmeal', '9f211875-4ffb-493d-a011-40c3a2b86615', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1169, 'COLOCORT (Rectal)', '975125', 'Hydrocortisone', 'a5b47406-b933-4f6b-96dc-db837bcccf77', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1170, 'COLY MYCIN M (Injectable)', '901845', 'Colistin', '6d6e13e2-dc33-4b7b-84d0-66146a57c552', to_date('4/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1171, 'COLY MYCIN S (Otic)', '901845', 'Colistin', '317cc880-73fe-4561-897e-41489108b3ba', to_date('2/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1172, 'COMBIGAN (Ophthalmic)', '915542', 'brimonidine', 'feaf1480-a4b8-4486-992a-96be3a596243', to_date('11/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1173, 'COMBIVIR (Oral Pill)', '1704183', 'Lamivudine', '16da660b-9981-4d24-a14a-94c7744fce4f', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1174, 'COMETRIQ (Oral Pill)', '43012292', 'cabozantinib', '1a0c3bea-c87b-4d25-bb44-5f0174da6b34', to_date('12/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1175, 'Common sagebrush pollen extract (Injectable)', '40161598', 'common sagebrush pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1176, 'COMPAZINE (Oral Pill)', '752061', 'Prochlorperazine', 'a8c5db51-e8b2-4594-8b05-aaa78ca0682d', to_date('4/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1177, 'COMPAZINE (Rectal)', '752061', 'Prochlorperazine', '9bdba30b-53b4-427a-af74-7a39b52130b2', to_date('8/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1178, 'COMPLERA (Oral Pill)', '1703069', 'emtricitabine', '54c8bec2-d565-489c-8d7c-afd3cdf78df5', to_date('3/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1179, 'COMTAN (Oral Pill)', '782211', 'entacapone', '95976f1d-1b36-4f08-a98f-36d5d7883d7b', to_date('7/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1180, 'CONGESTAC (Oral Pill)', '1163944', 'Guaifenesin', '03d29b11-deba-3727-e054-00144ff8d46c', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1181, 'CONSTULOSE (Oral Liquid)', '987245', 'Lactulose', '461ec39f-eeb4-4460-9b5c-62367d47162b', to_date('4/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1182, 'CONTAC COLD AND FLU NON DROWSY MAXIMUM STRENGTH (Oral Pill)', '1125315', 'Acetaminophen', '8ed2df70-fdb1-11e3-a3ac-0800200c9a66', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1183, 'CONTROL RX (Toothpaste)', '19069022', 'Sodium Fluoride', 'b334c974-055f-458f-bac0-c28372be53c3', to_date('2/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1184, 'Cootamundra wattle pollen extract (Injectable)', '40169140', 'Cootamundra wattle pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1185, 'Copper Sulfate (Injectable)', '19057346', 'Copper Sulfate', '941ad1e2-6052-4df4-8cfe-5af4a99703e4', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1186, 'CORDRAN (Topical)', '956266', 'Flurandrenolide', 'a0949773-c75f-4ef0-a69c-1abd978340d0', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1187, 'COREG (Oral Pill)', '1346823', 'carvedilol', 'fdb12700-116b-4203-8d74-9a94b9401fe6', to_date('10/28/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1188, 'CORGARD (Oral Pill)', '1313200', 'Nadolol', 'c2e709d2-96a2-41ea-b5e9-9ce4ccb91f59', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1189, 'CORICIDIN HBP CHEST CONGESTION (Oral Pill)', '1119510', 'Dextromethorphan', 'e33f2319-2181-46db-a094-3e874b324c0a', to_date('3/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1190, 'CORICIDIN HBP COLD & FLU (Oral Pill)', '1125315', 'Acetaminophen', '763a5334-a741-4678-9947-603776622450', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1191, 'CORICIDIN HBP COUGH AND COLD (Oral Pill)', '1192710', 'Chlorpheniramine', 'ee666963-e686-4374-b52b-a677f1cd4114', to_date('5/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1192, 'CORMAX (Topical)', '998415', 'Clobetasol', '29735bf2-e08e-4f60-a640-0e3b9ccca80f', to_date('7/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1193, 'Corn pollen extract (Injectable)', '40161610', 'corn pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1194, 'Cornstarch/Kaolin/Zinc Oxide (Topical)', '40230159', 'cornstarch', '5654facc-ad51-4501-a505-9c0b2035e653', to_date('9/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1195, 'CORTAID (Topical)', '975125', 'Hydrocortisone', 'f3f31285-4dde-4708-b715-6da36a4f2a14', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1196, 'CORTEF (Oral Pill)', '975125', 'Hydrocortisone', '9ce19944-dd88-4a7b-84ca-b07f4ec23bad', to_date('8/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1197, 'CORTENEMA (Rectal)', '975125', 'Hydrocortisone', 'a307448a-ccc4-41a8-977a-11f28f0bded9', to_date('3/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1198, 'CORTICOOL (Topical)', '975125', 'Hydrocortisone', 'ad772e39-02c1-4995-bd8e-46fa63be2c5a', to_date('11/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1199, 'Corticotropin (Injectable)', '1541079', 'Corticotropin', '7b48ddec-e815-45f4-9ca0-5c0daaf56f30', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1200, 'CORTIFOAM (Rectal)', '975125', 'Hydrocortisone', '36f623df-2ae3-4858-9783-c058097951f4', to_date('6/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1201, 'Cortisone (Oral Pill)', '1507705', 'Cortisone', '5d59b43c-f10d-463f-92df-6171d02b7a45', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1202, 'CORTISPORIN (Topical)', '975125', 'Hydrocortisone', 'e86a5293-312d-4425-bf95-35e4d7149aed', to_date('4/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1203, 'CORTISPORIN OINTMENT (Topical)', '915175', 'Bacitracin', '097a7a8d-04d4-4736-c8b7-0796117457bf', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1204, 'CORTISPORIN-TC (Otic)', '901845', 'Colistin', '0869fd8d-6dd7-4dc2-b33c-20d72dc47718', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1205, 'CORTIZONE-10 (Topical)', '975125', 'Hydrocortisone', 'c0dccf64-44fd-4cbf-a9cd-50b3150ee205', to_date('4/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1206, 'CORTOMYCIN (Otic)', '975125', 'Hydrocortisone', '41cfa382-d4ae-43c5-83a5-1ecc635d109b', to_date('12/2/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1207, 'CORTOMYCIN OINTMENT (Ophthalmic)', '915175', 'Bacitracin', '7c50e7f2-1208-4f19-9807-4ab0dd314d3b', to_date('12/2/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1208, 'CORTROSYN (Injectable)', '19008009', 'Cosyntropin', '746856e9-3930-4f6a-b8e6-a03845d6dd0b', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1209, 'COSOPT (Ophthalmic)', '981709', 'dorzolamide', '06c062ca-add7-4ddf-ba7c-7b5dd531e9ec', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1210, 'Cosyntropin (Injectable)', '19008009', 'Cosyntropin', '39af194b-c854-4abf-893a-a47856fe42a1', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1211, 'COUMADIN (Injectable)', '1310149', 'Warfarin', 'c0f238ff-2804-4150-9766-22a5111b4e74', to_date('1/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1212, 'COUMADIN (Oral Pill)', '1310149', 'Warfarin', '91fa852c-b43d-4a55-983b-74aa6827125d', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1213, 'COZAAR (Oral Pill)', '1367500', 'Losartan', '9199238d-8b24-4ca8-bd24-c200853416f6', to_date('10/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1214, 'CREOMULSION (Oral Liquid)', '1119510', 'Dextromethorphan', '0e810cf2-fdb9-4d32-be57-8046318fb029', to_date('1/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1215, 'CREON (Oral Pill)', '919204', 'Amylases', '45b9a46b-3294-4604-8aea-60624d663020', to_date('5/29/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1216, 'Cresol/Formaldehyde (Irrigation)', '19087223', 'Cresol', '6989bddc-910e-47e6-aa8f-619a330e81b8', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1217, 'CREST MOUTHWASH (Mouthwash)', '989301', 'Cetylpyridinium', '41dc2d29-376d-4e8e-84c0-acf0e6ad1205', to_date('9/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1218, 'CRESTOR (Oral Pill)', '1510813', 'rosuvastatin', '4f2f91bb-f119-4e29-8499-f36f436707b3', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1219, 'CRITIC-AID CLEAR (Topical)', '907879', 'Miconazole', 'cbc5d976-850a-476e-b179-b7a5a8675524', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1220, 'CRITIC-AID CLEAR MOISTURE (Topical)', '19033354', 'Petrolatum', '0b6da97e-519b-4579-9895-f4ede5c48b47', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1221, 'CRITIC-AID SKIN (Paste)', '911064', 'Zinc Oxide', 'caaac1f0-437d-4185-8670-9f11b9cefe63', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1222, 'CRIXIVAN (Oral Pill)', '1711523', 'Indinavir', '01c5574c-1056-49c6-af20-e950db3f4139', to_date('6/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1223, 'Cromolyn (Inhalant)', '1152631', 'Cromolyn', '8fe37a7a-edd6-4733-bb7e-e01c1906aeba', to_date('9/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1224, 'Cromolyn (Ophthalmic)', '1152631', 'Cromolyn', '5d8ed6be-ecc9-4e26-b6c1-4eaef46c0fa7', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1225, 'Cromolyn (Oral Liquid)', '1152631', 'Cromolyn', '169a439e-aa20-4cdf-bbe0-6b17934e8355', to_date('6/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1226, 'Crotamiton (Topical)', '969276', 'crotamiton', '56465446-7f78-4ad1-acb3-08a4d60e5715', to_date('2/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1227, 'Cultivated oat pollen extract (Injectable)', '40161642', 'cultivated oat pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1228, 'Cultivated rye grass pollen extract (Injectable)', '40228147', 'cultivated rye grass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1229, 'Cupric oxide/Folic Acid/Niacinamide/Zinc Oxide (Oral Pill)', '19073229', 'Cupric oxide', '91d306d7-ef63-4f35-84a4-36e8469eac98', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1230, 'CUPRIMINE (Oral Pill)', '19028050', 'Penicillamine', '80e736d3-2017-4d68-94b4-38255c3c59c6', to_date('8/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1231, 'CUTIVATE (Topical)', '1149380', 'fluticasone', '9953df12-a2b4-4d22-b204-746fc29f7a5f', to_date('3/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1232, 'CUVPOSA (Oral Liquid)', '963353', 'Glycopyrrolate', 'd200bd44-9856-4104-a29e-a4cca3db6737', to_date('6/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1233, 'CYANOKIT (Injectable)', '1377023', 'Hydroxocobalamin', '416c7978-5661-6e63-6546-6f7265766572', to_date('8/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1234, 'Cyclobenzaprine (Oral Pill)', '778711', 'cyclobenzaprine', '54a6b01c-5a7c-4710-93fa-69fd2c2549e3', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1235, 'Cyclobenzaprine/Magnesium Oxide (Oral Pill)', '778711', 'cyclobenzaprine', 'c2b6213c-3397-42cf-8080-59d6a5c31d0a', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1236, 'CYCLOGYL (Ophthalmic)', '910232', 'Cyclopentolate', '1d008c76-7210-4ace-90fa-7cd22762e12e', to_date('8/5/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1237, 'CYCLOMYDRIL (Ophthalmic)', '910232', 'Cyclopentolate', '8268b70f-3f10-48dd-bb24-baaeb27a1325', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1238, 'Cyclopentolate (Ophthalmic)', '910232', 'Cyclopentolate', '0504a84a-0ba4-483b-9682-9bf3818410ee', to_date('2/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1239, 'Cyclopentolate/Phenylephrine (Ophthalmic)', '910232', 'Cyclopentolate', '8268b70f-3f10-48dd-bb24-baaeb27a1325', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1240, 'Cyclophosphamide (Injectable)', '1310317', 'Cyclophosphamide', '591d9955-3d9c-4cdc-a308-2f1288376b9f', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1241, 'Cyclophosphamide (Oral Pill)', '1310317', 'Cyclophosphamide', '15d30249-4714-4b13-b8ca-5dff38424282', to_date('5/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1242, 'cycloSERINE (Oral Pill)', '1710446', 'Cycloserine', '0071f9f3-a29b-4ba6-9555-69f672501cbc', to_date('9/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1243, 'cycloSPORINE (Oral Pill)', '19010482', 'Cyclosporine', 'a8e29b54-e4ab-4bb9-ab6c-e4414a3f025b', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1244, 'CYMBALTA (Oral Pill)', '715259', 'duloxetine', '67927928-c20f-4e12-a327-d26561d7810a', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1245, 'Cyproheptadine (Oral Liquid)', '1110727', 'Cyproheptadine', '54686520-506f-7765-7220-436f736d6963', to_date('8/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1246, 'Cyproheptadine (Oral Pill)', '1110727', 'Cyproheptadine', 'f90faaa3-f40f-4653-8fb8-144d61c6b1d4', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1247, 'CYSTADANE (Oral Liquid)', '1520218', 'Betaine', '05964dae-8b84-467c-af97-c82706a3cad2', to_date('5/17/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1248, 'Cysteamine (Oral Pill)', '910888', 'Cysteamine', 'b7b6e290-5168-46dc-9e7f-5995420ec1c1', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1249, 'Cysteine (Injectable)', '19010955', 'Cysteine', '85669228-2bb1-4095-b90e-a467d357b9bb', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1250, 'Cytarabine (Injectable)', '1311078', 'Cytarabine', 'ee6decae-7e1b-45cf-b2d0-c15946d8fa1f', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1251, 'Cytarabine liposome (Injectable)', '40175460', 'Cytarabine liposome', '9d05d299-b9b0-4bf6-95cf-904dcc4e1f84', to_date('1/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1252, 'CYTOGAM (Injectable)', '586491', 'cytomegalovirus immune globulin', 'd72d56e3-1f27-4ec1-a49d-7c0f8f5bc512', to_date('12/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1253, 'Cytomegalovirus immune globulin (Injectable)', '586491', 'cytomegalovirus immune globulin', 'd72d56e3-1f27-4ec1-a49d-7c0f8f5bc512', to_date('12/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1254, 'CYTOMEL (Oral Pill)', '1505346', 'Triiodothyronine', '248d01a9-a79a-474a-b244-49b24e5b9873', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1255, 'CYTOTEC (Oral Pill)', '1150871', 'Misoprostol', '04c42f2b-d049-4892-b003-bdf346cb4ab4', to_date('8/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1256, 'CYTOVENE (Injectable)', '1757803', 'Ganciclovir', '38e8f819-985c-4d20-aafd-3ba953af26ca', to_date('8/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1257, 'Dabigatran etexilate (Oral Pill)', '40228152', 'dabigatran etexilate', '5db7f199-8752-4d24-85f7-e34ca8f4d02e', to_date('4/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1258, 'Dabrafenib (Oral Pill)', '43532299', 'dabrafenib', '803beaaa-33f9-48cc-9a95-c2e887e095b4', to_date('2/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1259, 'Dacarbazine (Injectable)', '1311409', 'Dacarbazine', 'b6b97e41-5f15-498c-abfb-d8443ea4d216', to_date('2/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1260, 'DACOGEN (Injectable)', '19024728', 'decitabine', 'acaf6e50-7cd3-4431-98ef-d1c07e3ed8c2', to_date('10/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1261, 'DALIRESP (Oral Pill)', '40236897', 'Roflumilast', 'c9a1d0a8-581f-4f91-a2b8-f419192d0ebf', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1262, 'DALLERGY DROPS (Oral Liquid)', '1192710', 'Chlorpheniramine', 'd7ef44ce-626d-41b3-8114-98d2ce1ae31a', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1263, 'DALLERGY REFORMULATED MAR 2014 (Oral Liquid)', '990413', 'chlorcyclizine', '16353978-488f-4248-908a-ad03eee60cbf', to_date('6/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1264, 'DALLERGY REFORMULATED MAR 2014 (Oral Pill)', '990413', 'chlorcyclizine', 'f567b8ff-d476-4e14-838e-8f62467790cf', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1265, 'DALLERGY REFORMULATED NOV 2011 (Chewable)', '990413', 'chlorcyclizine', '70f9d9c5-6204-4ddc-be82-d6c9e59d70e5', to_date('11/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1266, 'DALLERGY REFORMULATED NOV 2011 (Oral Liquid)', '990413', 'chlorcyclizine', '5585cf36-d7e7-40ce-982e-e8c6a58e85d1', to_date('1/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1267, 'Dalteparin (Injectable)', '1301065', 'Dalteparin', '23527b8b-9b28-4e6d-9751-33b143975ac7', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1268, 'DANTRIUM (Injectable)', '711714', 'Dantrolene', '4df35098-8702-46be-ac67-30cfdf1aa570', to_date('5/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1269, 'DANTRIUM (Oral Pill)', '711714', 'Dantrolene', '57b4eec1-49e1-432c-95ae-0fe36e32d64b', to_date('10/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1270, 'Dantrolene (Injectable)', '711714', 'Dantrolene', '8f7b3ac0-604d-4c78-b545-5e0f8ea3d698', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1271, 'Dantrolene (Oral Pill)', '711714', 'Dantrolene', '57b4eec1-49e1-432c-95ae-0fe36e32d64b', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1272, 'Dapagliflozin (Oral Pill)', '44785829', 'dapagliflozin', 'fc6ae30e-868b-4ac9-b69d-900922503998', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1273, 'Dapsone (Oral Pill)', '1711759', 'Dapsone', 'aec21561-42bd-4706-86e6-ff0e1e915079', to_date('9/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1274, 'DAPTOmycin (Injectable)', '1786617', 'Daptomycin', 'e33053a5-38cd-4a34-8566-208f94f55714', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1275, 'DARAPRIM (Oral Pill)', '1760039', 'Pyrimethamine', '5368616d-6520-6f6e-2053-686b72656c69', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1276, 'Dark leaved mugwort pollen extract (Injectable)', '40170722', 'dark leaved mugwort pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1277, 'Darunavir (Oral Pill)', '1756831', 'darunavir', '69b6f72d-fe6b-4347-8801-99ece7e2a29b', to_date('5/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1278, 'DARVON-N (Oral Pill)', '1153664', 'Propoxyphene', 'c6c48eee-240b-4425-8691-35462523652e', to_date('1/25/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1279, 'Dasatinib (Oral Pill)', '1358436', 'dasatinib', '0e7f054c-7a27-4192-bd1c-6115d8be858f', to_date('6/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1280, 'Daunorubicin Liposomal (Injectable)', '19051599', 'Daunorubicin Liposomal', 'bf2b4eaf-5227-42d9-af78-88d921e565f6', to_date('5/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1281, 'DAUNOXOME (Injectable)', '19051599', 'Daunorubicin Liposomal', 'bf2b4eaf-5227-42d9-af78-88d921e565f6', to_date('5/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1282, 'DAYHIST-1 (Oral Pill)', '1197677', 'Clemastine', '1257b2e0-4ae6-4aab-b1f3-c93fd70116c6', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1283, 'DAYPRO (Oral Pill)', '1118045', 'oxaprozin', '755ca241-0d01-41ba-a735-e37365352a71', to_date('1/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1284, 'DDAVP (Injectable)', '1517070', 'desmopressin', '651f6fee-a2c7-431b-8d5d-58b156c72244', to_date('3/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1285, 'DDAVP (Nasal)', '1517070', 'desmopressin', '95e53e87-2d52-4e37-93ea-89f440938f7a', to_date('7/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1286, 'DDAVP (Oral Pill)', '1517070', 'desmopressin', '1bb9b8d5-eed6-45cb-b1b9-e43d3ee6fecd', to_date('9/4/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1287, 'DEBACTEROL (Mucosal)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1288, 'DEBACTEROL (Topical)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1289, 'DEBROX (Otic)', '958999', 'carbamide peroxide', '755d3234-2df4-4464-a2c5-b04276065fc5', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1290, 'DECARA (Oral Pill)', '19095164', 'Cholecalciferol', '3822c324-e22a-4ac4-ac1c-9b63983b516a', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1291, 'DECAVAC (Injectable)', '529303', '"diphtheria toxoid vaccine, inactivated"', 'f7faec1c-046f-45c9-b9c0-ef65d377ba87', to_date('4/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1292, 'Decitabine (Injectable)', '19024728', 'decitabine', '0b9599e8-9018-42ee-b247-e2a944c36510', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1293, 'DECONEX (Oral Pill)', '1163944', 'Guaifenesin', '51c84f58-f1b9-4fa8-916b-78c6eec61861', to_date('3/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1294, 'Deferiprone (Oral Pill)', '19011091', 'deferiprone', 'dc8cbc3d-026c-0db5-42e8-8e93d374dd23', to_date('4/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1295, 'Deferoxamine (Injectable)', '1711947', 'Deferoxamine', 'a7174843-5965-49fc-b842-f7eff7b48bbc', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1296, 'DELATESTRYL (Injectable)', '1636780', 'Testosterone', '67e2cc36-a379-11dc-8314-0800200c9a66', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1297, 'Delavirdine (Oral Pill)', '1747157', 'Delavirdine', '992306f0-c612-41dd-a4df-35d1fd360033', to_date('7/7/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1298, 'DELSYM COUGH PLUS CHEST CONGESTION DM (Oral Liquid)', '1119510', 'Dextromethorphan', '8252cdec-b668-4450-b045-e093479ab542', to_date('11/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1299, 'DELSYM COUGH RELIEF PLUS SOOTHING ACTION (Oral Lozenge)', '1119510', 'Dextromethorphan', 'cac708a5-af6c-4c60-beb4-32e792f588c5', to_date('7/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1300, 'DELSYM NIGHT TIME COUGH AND COLD REFORMULATED JAN 2012 (Oral Liquid)', '1125315', 'Acetaminophen', 'f8437225-5e77-4dae-82f5-e706f7965c53', to_date('12/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1301, 'DELTASONE (Oral Pill)', '1551099', 'Prednisone', '18bebd56-4848-32ae-e054-00144ff88e88', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1302, 'DEMADEX (Injectable)', '942350', 'torsemide', 'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', to_date('2/16/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1303, 'DEMADEX (Oral Pill)', '942350', 'torsemide', 'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', to_date('2/16/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1304, 'Demeclocycline (Oral Pill)', '1714527', 'Demeclocycline', '4ff23e3b-e111-47fd-9776-1d89d6da049b', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1305, 'DEMEROL (Injectable)', '1102527', 'Meperidine', '53ddfe26-5a7e-4f39-8904-829a03538f63', to_date('12/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1306, 'DEMEROL (Oral Pill)', '1102527', 'Meperidine', '6c2b41c3-732c-477f-8790-0eecea43b2da', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1307, 'DEMSER (Oral Pill)', '1401581', 'Metyrosine', '32fb2f2f-34b5-4cd5-9145-c3ab37c5ca92', to_date('3/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1308, 'DENAVIR (Topical)', '981654', 'penciclovir', '8d119057-f299-43ea-b516-e84a09cab890', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1309, 'DENDRACIN NEURODENDRAXCIN (Topical)', '939881', 'Capsaicin', '05742cd5-ece2-4007-bdf0-46b76d23df74', to_date('2/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1310, 'Denileukin diftitox (Injectable)', '19051642', 'denileukin diftitox', '42dfffb1-d0f3-42d5-944c-64f092fc436e', to_date('3/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1311, 'DENTA 5000 PLUS (Toothpaste)', '19069022', 'Sodium Fluoride', '00b09487-043e-4e8c-badd-116dc56eef15', to_date('7/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1312, 'DENTICARE DENTI FOAM (Oral Foam)', '19069022', 'Sodium Fluoride', 'c92bb4ea-e7e0-49ec-8329-2cc215c35ab8', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1313, 'DENTICARE DENTI FREEZE GEL (Oral Gel)', '917006', 'Benzocaine', '8489b2e8-4647-4838-88b9-817b59ef83b0', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1314, 'DENTICARE DENTI FREEZE OINTMENT (Oral Ointment)', '917006', 'Benzocaine', '522754bc-5d11-48b1-99fd-1edcf3cd13fc', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1315, 'DENTICARE NEUTRAL (Mouthwash)', '19069022', 'Sodium Fluoride', '1da64824-9389-4109-bea9-b91600caf023', to_date('7/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1316, 'DENTICARE PRO GEL (Oral Gel)', '19069022', 'Sodium Fluoride', 'b4dbb9f5-4355-4d85-ae8b-a46e4fb2af78', to_date('4/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1317, 'Deoxycorticosterone (Injectable)', '19017895', 'Deoxycorticosterone', '5e9f71f1-09d4-4313-ad66-5cfffe428ba8', to_date('7/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1318, 'DEPAKOTE (Oral Pill)', '745466', 'Valproate', 'd3f7c414-db83-4a7a-a7aa-745c5606cdba', to_date('5/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1319, 'DEPO-ESTRADIOL (Injectable)', '1548195', 'Estradiol', '9a4229fd-fecd-4ac1-9c4f-6d442533457f', to_date('8/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1320, 'DEPO-MEDROL (Injectable)', '1506270', 'Methylprednisolone', '823b0010-2b57-4e76-b5ac-4a8c2963438f', to_date('5/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1321, 'DEPO-PROVERA (Injectable)', '1500211', 'Medroxyprogesterone', '2425f944-15d7-4b84-95a0-6538e843f130', to_date('10/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1322, 'DEPO-TESTOSTERONE (Injectable)', '1636780', 'Testosterone', 'fe808a56-7542-4d23-97b4-d98a3ef63016', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1323, 'DEPOCYT (Injectable)', '40175460', 'Cytarabine liposome', '9d05d299-b9b0-4bf6-95cf-904dcc4e1f84', to_date('1/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1324, 'DEPODUR (Injectable)', '19112635', 'Morphine Liposomal', 'cc8f105c-c8ee-4c57-86ee-ee6bf917cf78', to_date('1/31/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1325, 'DERMA GRAN (Topical)', '985247', 'Aluminum Hydroxide', '464bdaf6-e64b-401f-9d14-f6148bb16653', to_date('11/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1326, 'DERMA-SMOOTHE FS (Topical)', '996541', 'fluocinolone', 'bc61c619-a71c-46f5-80f1-9e9ee71134aa', to_date('8/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1327, 'DERMACORT (Topical)', '975125', 'Hydrocortisone', 'a0962a88-8a49-414c-aecf-db94ec033f16', to_date('11/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1328, 'DERMAREST ECZEMA (Topical)', '975125', 'Hydrocortisone', '0292ab62-5088-45fa-a056-70c2fcc19ef7', to_date('5/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1329, 'DERMAREST PSORIASIS (Topical)', '964407', 'Salicylic Acid', 'aa786552-9ed8-41ef-aa20-0ac254555c41', to_date('5/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1330, 'DERMASORB AF (Topical)', '980867', 'Clioquinol', 'b1f875e9-a95b-47ff-80cc-54a2d7a2c08c', to_date('12/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1331, 'DERMASORB HC (Topical)', '975125', 'Hydrocortisone', 'eaaf8c06-6aac-4488-a4be-2f8912e30363', to_date('11/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1332, 'DERMASORB TA (Topical)', '903963', 'Triamcinolone', '5b1d1510-118f-4b82-9119-386d572971d2', to_date('12/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1333, 'DERMASORB XM (Topical)', '906914', 'Urea', '95e5f86e-897b-4ef9-a514-6b003387f84c', to_date('11/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1334, 'DERMATOP (Topical)', '928110', 'prednicarbate', 'ccc7985a-da29-475f-8a53-0f76ba20b86d', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1335, 'DERMAZENE (Topical)', '975125', 'Hydrocortisone', 'cc657bc6-31db-47cb-970d-796d77ccf0ed', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1336, 'DERMOPLAST ANTIBACTERIAL (Topical)', '916802', 'Benzethonium', '2fbb256e-6b36-4923-b57d-58575f5abf2e', to_date('5/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1337, 'DERMOPLAST PAIN (Topical)', '917006', 'Benzocaine', '0648c46c-a3db-4b82-971b-50a46098ac7e', to_date('5/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1338, 'DERMOTIC (Otic)', '996541', 'fluocinolone', 'd2ffb64b-1614-4e2f-8125-9660ea3754f2', to_date('3/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1339, 'DESENEX (Topical)', '907879', 'Miconazole', 'c2ec4973-07d6-480f-b47a-ac57b4b703f1', to_date('12/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1340, 'DESFERAL (Injectable)', '1711947', 'Deferoxamine', 'a7174843-5965-49fc-b842-f7eff7b48bbc', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1341, 'Desflurane (Inhalant)', '19002770', 'desflurane', '7f977eb6-c7c4-4dc5-ab3b-07414dbe5da5', to_date('3/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1342, 'Desipramine (Oral Pill)', '716968', 'Desipramine', '7500ac1b-a1ca-46ed-8f4e-5998310c676e', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1343, 'DESITIN (Topical)', '911064', 'Zinc Oxide', 'bee0ed35-a0ca-45d4-9fed-b890369e323e', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1344, 'Desloratadine (Oral Disintegrating)', '1103006', 'desloratadine', '84b20dcb-e15b-44a2-b692-1eea5adb996e', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1345, 'Desloratadine (Oral Pill)', '1103006', 'desloratadine', '91ce2b02-8f8e-4929-a962-b8f88a40b70a', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1346, 'Desmopressin (Injectable)', '1517070', 'desmopressin', 'fd7672cb-4c15-403c-8e04-68369ad9bb77', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1347, 'Desmopressin (Nasal)', '1517070', 'desmopressin', 'c9e4aedb-27d6-4499-9245-93937d3a375f', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1348, 'Desmopressin (Oral Pill)', '1517070', 'desmopressin', '7a26b415-77cd-4b2f-9c76-fa52d2eb6be6', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1349, 'Desogestrel/Ethinyl Estradiol (Oral Pill)', '1588000', 'Desogestrel', 'fed687f4-1ffa-49ec-92c9-4d09de17a833', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1350, 'DESONATE (Topical)', '917205', 'Desonide', '8d7c46ed-e6c3-465b-be3d-16ecab43a9e7', to_date('8/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1351, 'Desonide (Topical)', '917205', 'Desonide', 'a7e5f030-b849-4805-94e6-f45631eaa37f', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1352, 'DESOWEN (Topical)', '917205', 'Desonide', 'a7e5f030-b849-4805-94e6-f45631eaa37f', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1353, 'Desoximetasone (Topical)', '917336', 'Desoximetasone', '950f08b4-467f-4f01-ab99-834cac94875e', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1354, 'DESOXYN (Oral Pill)', '704053', 'Methamphetamine', 'f03a68d5-ed00-8a2d-af68-28be909ea85f', to_date('3/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1355, 'DESPEC REFORMULATED JUN 2008 (Oral Liquid)', '1163944', 'Guaifenesin', '5e7c3fe6-ea77-4472-8a4c-4a015ad01fd5', to_date('5/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1356, 'DESQUAM (Soap)', '918172', 'Benzoyl Peroxide', '0e775c30-7294-4e99-bcc5-3b3b01a62fc5', to_date('6/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1357, 'DETROL (Oral Pill)', '913782', 'tolterodine', 'fa938543-29b3-46ce-a176-5563bc8f2f80', to_date('8/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1358, 'DEWEES CARMINATIVE (Oral Liquid)', '908464', 'magnesium carbonate', '163bceeb-ca74-413e-88b9-5c7bc9bbeb0d', to_date('3/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1359, 'Dexamethasone (Injectable)', '1518254', 'Dexamethasone', '685c33e5-c6e0-4717-b3bb-4c2cd0fcb063', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1360, 'Dexamethasone (Ophthalmic)', '1518254', 'Dexamethasone', '863fb43c-dd33-485b-9385-744db7a98b83', to_date('12/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1361, 'Dexamethasone (Oral Liquid)', '1518254', 'Dexamethasone', 'a817ab46-54ec-4e3f-886b-04ce6ac1caf9', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1362, 'Dexamethasone (Oral Pill)', '1518254', 'Dexamethasone', '428cc7bb-e0f9-466c-b38f-11ac22cda752', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1363, 'Dexamethasone/Neomycin/Polymyxin B (Ophthalmic)', '1518254', 'Dexamethasone', '449a6fd8-c2ac-40d0-b74a-e5c7fc6670f3', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1364, 'Dexamethasone/Tobramycin (Ophthalmic)', '1518254', 'Dexamethasone', '1b6887e4-9deb-494a-939d-49ce77ef2c1b', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1365, 'Dexbrompheniramine (Chewable)', '1188052', 'dexbrompheniramine', 'f0b90cc2-901c-4498-b892-d8883182b6fd', to_date('8/13/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1366, 'Dexbrompheniramine (Oral Pill)', '1188052', 'dexbrompheniramine', '0d203b5c-8b10-428b-8703-17be6b4ce6eb', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1367, 'Dexbrompheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', '1188052', 'dexbrompheniramine', 'a3b34f38-87da-4a38-ac73-66d28cc8647e', to_date('1/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1368, 'Dexbrompheniramine/Phenylephrine (Oral Liquid)', '1188052', 'dexbrompheniramine', '16353978-488f-4248-908a-ad03eee60cbf', to_date('6/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1369, 'Dexbrompheniramine/Phenylephrine (Oral Pill)', '1188052', 'dexbrompheniramine', 'f567b8ff-d476-4e14-838e-8f62467790cf', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1370, 'Dexbrompheniramine/Pseudoephedrine (Oral Pill)', '1188052', 'dexbrompheniramine', '82f9f52c-797e-4842-9c9a-40213181d99a', to_date('6/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1371, 'Dexchlorpheniramine (Oral Liquid)', '1188114', 'dexchlorpheniramine', '1950f4d6-7fc2-44cd-9f7d-1359315353fc', to_date('9/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1372, 'Dexchlorpheniramine/Phenylephrine (Oral Pill)', '1188114', 'dexchlorpheniramine', 'c1d6e914-74cc-4cdf-9587-7eaaa4a386e5', to_date('4/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1373, 'Dexchlorpheniramine/Pseudoephedrine (Oral Liquid)', '1188114', 'dexchlorpheniramine', '93e0411b-68c2-4b5c-aa74-b1d94b5b2206', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1374, 'Dexchlorpheniramine/Pseudoephedrine (Oral Pill)', '1188114', 'dexchlorpheniramine', '9d08d801-6cca-4a1c-ab53-5979f16e3110', to_date('3/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1375, 'DEXEDRINE (Oral Pill)', '719311', 'Dextroamphetamine', '9ee6fd99-88ea-4cea-8370-a8945581325f', to_date('3/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1376, 'DEXFERRUM (Injectable)', '1381661', 'Iron-Dextran Complex', '77f5ae2a-8cd3-4f01-bddd-8158f932c8db', to_date('4/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1377, 'DEXILANT (Oral Pill)', '19039926', 'dexlansoprazole', 'd62d754e-2310-4912-b022-603ae925710d', to_date('2/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1378, 'Dexlansoprazole (Oral Pill)', '19039926', 'dexlansoprazole', 'd62d754e-2310-4912-b022-603ae925710d', to_date('2/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1379, 'Dexmedetomidine (Injectable)', '19061088', 'Dexmedetomidine', 'c1b8eb58-596b-481d-beb6-ba9d2237abf4', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1380, 'Dexmethylphenidate (Oral Pill)', '731533', 'dexmethylphenidate', '07efe5d5-9857-490a-9a31-9dd07ea9386e', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1381, 'Dexpanthenol (Injectable)', '988294', 'dexpanthenol', '0ed47f4b-5182-40b7-a440-9e7b06819d95', to_date('9/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1382, 'Dexpanthenol/Niacinamide/Riboflavin/Thiamine/Vitamin B6 (Injectable)', '988294', 'dexpanthenol', '282ccec8-9bcd-4571-9b91-bbb96ef2620d', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1383, 'Dexrazoxane (Injectable)', '1353011', 'Dexrazoxane', '77702d60-d1ea-4e4c-a837-aaa813b66064', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1384, 'Dextran 70/Hypromellose (Ophthalmic)', '1319156', 'Dextran 70', '9dba4117-a6e1-40ef-ab9e-b2f21e032766', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1385, 'Dextran 70/Polyethylene Glycol 400/Povidone/Tetrahydrozoline (Ophthalmic)', '1319156', 'Dextran 70', '593d1899-6c87-4366-9c1b-9f6933598b8a', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1386, 'Dextroamphetamine (Oral Liquid)', '719311', 'Dextroamphetamine', '7658071e-ee2c-4d23-94ce-1906959ec036', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1387, 'Dextroamphetamine (Oral Pill)', '719311', 'Dextroamphetamine', 'd6394df5-f2c9-47eb-b57e-f3e9cfd94f84', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1388, 'Dextroamphetamine XR (Oral Pill)', '719311', 'Dextroamphetamine', '669a308e-ce09-4ac8-84d9-ee252c5d3223', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1389, 'Dextromethorphan (Oral Liquid)', '1119510', 'Dextromethorphan', '4edc0605-25fc-4a66-8f68-798d1d71446b', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1390, 'Dextromethorphan (Oral Lozenge)', '1119510', 'Dextromethorphan', '00ad5b08-5371-4a2f-be49-4254106d7f64', to_date('12/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1391, 'Dextromethorphan (Oral Pill)', '1119510', 'Dextromethorphan', '76118c4c-3008-4173-b114-a8a5553243e3', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1392, 'Dextromethorphan XR (Oral Liquid)', '1119510', 'Dextromethorphan', '5d12a1b8-f1fb-41ca-9a4f-0595a585cbb5', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1393, 'Dextromethorphan/Doxylamine (Oral Liquid)', '1119510', 'Dextromethorphan', 'd26d12d6-b44a-4f33-bf8b-bc0f9c55d2fe', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1394, 'Dextromethorphan/Doxylamine/Pseudoephedrine (Oral Liquid)', '1119510', 'Dextromethorphan', '784843f7-2d13-4831-a50d-d109a371966d', to_date('7/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1395, 'Dextromethorphan/guaiFENesin (Oral Granules)', '1119510', 'Dextromethorphan', '98679846-e383-4341-96a7-7df2a35ca5ff', to_date('11/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1396, 'Dextromethorphan/guaiFENesin (Oral Liquid)', '1119510', 'Dextromethorphan', '6cbf83f6-cbf4-4e5b-a383-6d71124547bc', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1397, 'Dextromethorphan/guaiFENesin (Oral Pill)', '1119510', 'Dextromethorphan', '64797c73-2a3b-4cff-9311-c0eb663872c2', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1398, 'Dextromethorphan/guaiFENesin/Phenylephrine (Oral Liquid)', '1119510', 'Dextromethorphan', 'f8c86c63-281b-40dc-9f64-ba88961bd906', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1399, 'Dextromethorphan/guaiFENesin/Phenylephrine (Oral Pill)', '1119510', 'Dextromethorphan', '5fd655a8-f298-4d35-80df-933c165568aa', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1400, 'Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Liquid)', '1119510', 'Dextromethorphan', '18b42a89-22b9-46d6-9a08-8642b7bbca5e', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1401, 'Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Pill)', '1119510', 'Dextromethorphan', '18043cd4-1062-6059-e054-00144ff88e88', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1402, 'Dextromethorphan/Menthol (Oral Lozenge)', '1119510', 'Dextromethorphan', 'cac708a5-af6c-4c60-beb4-32e792f588c5', to_date('5/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1403, 'Dextromethorphan/Phenylephrine (Oral Liquid)', '1119510', 'Dextromethorphan', '20e45243-3989-413a-bcf1-49d754ff2e44', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1404, 'Dextromethorphan/Phenylephrine/Pyrilamine (Oral Liquid)', '1119510', 'Dextromethorphan', '3b5ca328-d462-490d-a28d-8a1a47299668', to_date('3/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1405, 'Dextromethorphan/Phenylephrine/Pyrilamine (Oral Pill)', '1119510', 'Dextromethorphan', '480b04c4-40ee-41d7-842b-d53ba074dcb8', to_date('5/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1406, 'Dextromethorphan/Phenylephrine/Thonzylamine (Oral Liquid)', '1119510', 'Dextromethorphan', 'd1c74d4c-71bb-4934-9a4e-556366c07fca', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1407, 'Dextromethorphan/Phenylephrine/Triprolidine (Oral Liquid)', '1119510', 'Dextromethorphan', '836d062c-29f0-4fd7-b65c-771a3bbd52c4', to_date('3/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1408, 'Dextromethorphan/Promethazine (Oral Liquid)', '1119510', 'Dextromethorphan', 'c13f5f93-d291-4d0d-80fe-44dba4c5401e', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1409, 'DHE-45 (Injectable)', '1126557', 'Dihydroergotamine', 'aec0308f-f583-4e27-9bb8-21800bde7faa', to_date('1/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1410, 'DHS ZINC (Shampoo)', '944360', 'zinc pyrithione', '62e13b0d-2455-46c2-bff3-1aa88b092327', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1411, 'DI-DAK-SOL (Topical)', '44784806', 'Hypochlorite', 'fdf5975e-20fa-41e4-8cd6-3d1d7c7b2d2c', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1412, 'DIABETIC TUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'e70bcb6c-6ffb-474f-b388-7a6c8cc8c146', to_date('11/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1413, 'DIAMODE (Oral Pill)', '991876', 'Loperamide', '069e7979-a223-4819-b6cf-ea2731bf156b', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1414, 'Diazepam (Injectable)', '723013', 'Diazepam', '0fb9bdfb-4d92-483e-acfe-4c9b2a84441c', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1415, 'Diazepam (Oral Liquid)', '723013', 'Diazepam', '78d5a77d-5ca7-4f16-b4d0-fce86456593c', to_date('3/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1416, 'Diazepam (Oral Pill)', '723013', 'Diazepam', '66ea2936-8b6c-4b72-b077-ecf88e83fee7', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1417, 'Diazoxide (Oral Liquid)', '1523280', 'Diazoxide', 'b16c7832-2fd9-49af-b923-1dc0d91fd6e2', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1418, 'Dibasic potassium phosphate/Potassium phosphate (Injectable)', '19076714', 'Dibasic potassium phosphate', 'e7d6dfe1-d8ad-4daf-9c6a-5f42e3e19138', to_date('7/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1419, 'Dibucaine (Rectal)', '923840', 'Dibucaine', 'bcf33951-d3a4-46c5-b208-56adc0011047', to_date('1/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1420, 'Dibucaine (Topical)', '923840', 'Dibucaine', 'fc11a231-1d2f-42ba-8ece-34495a14ab44', to_date('9/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1421, 'Diclofenac (Ophthalmic)', '1124300', 'Diclofenac', '980b3b80-44cb-44b5-89cc-d451a3b20ae3', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1422, 'Diclofenac (Oral Liquid)', '1124300', 'Diclofenac', 'd7335594-50c9-4ae2-a3e3-b9a375187b62', to_date('4/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1423, 'Diclofenac (Oral Pill)', '1124300', 'Diclofenac', '7a7e69c1-6eea-4f27-b2ed-3e5fb176fdae', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1424, 'Diclofenac (Topical)', '1124300', 'Diclofenac', '43d7d5d1-a593-4b97-ae24-f3e92be90004', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1425, 'Diclofenac/Misoprostol (Oral Pill)', '1124300', 'Diclofenac', '27ccf64c-fc2b-44d3-bf57-397417b406f8', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1426, 'Dicloxacillin (Oral Pill)', '1724666', 'Dicloxacillin', '24e821aa-85b8-4f5a-aa13-83ff132952ca', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1427, 'Dicyclomine (Oral Liquid)', '924724', 'Dicyclomine', 'd59fa254-7959-47c9-bb77-ab7946a1a127', to_date('5/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1428, 'Dicyclomine (Oral Pill)', '924724', 'Dicyclomine', 'b8c72fd8-6030-4c0a-80a6-d36cf698a576', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1429, 'Didanosine (Oral Pill)', '1724869', 'Didanosine', '79d6a5ea-77d3-4547-aa67-1b465141b1f5', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1430, 'DIDREX (Oral Pill)', '719128', 'Benzphetamine', 'fe6d8813-25d9-4e56-84c7-ca6c3111a19a', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1431, 'Dienogest/Estradiol (Oral Pill)', '19054876', 'dienogest', '02c91fba-9c47-43ef-ac78-e82369798834', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1432, 'Diethylpropion (Oral Pill)', '725822', 'Diethylpropion', '31b58e5e-60af-4466-bd20-4b648e867e64', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1433, 'DIFFERIN (Topical)', '981774', 'adapalene', 'e616d076-9e99-46ea-b69a-585867334142', to_date('12/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1434, 'DIFICID (Oral Pill)', '40239985', 'fidaxomicin', 'dd966338-c820-4270-b704-09ef75fa3ceb', to_date('5/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1435, 'Diflorasone (Topical)', '960988', 'Diflorasone', '5b92dbac-3f28-4c72-b529-7455e1b7b366', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1436, 'DIFLUCAN (Oral Pill)', '1754994', 'Fluconazole', '9d45bff1-5615-4be0-8b7e-d749f919ea36', to_date('2/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1437, 'Diflunisal (Oral Pill)', '1126128', 'Diflunisal', '3baf108a-e9c1-4a2a-8e69-34aa69af1de3', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1438, 'DIGIFAB (Injectable)', '19045317', 'digoxin antibodies Fab fragments', 'c05ee6a5-c98b-45f4-83fd-40781639d653', to_date('7/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1439, 'DIGITEK (Oral Pill)', '1326303', 'Digoxin', 'de7843bb-2cbd-4a76-8cd7-838ed1a12826', to_date('6/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1440, 'DIGOX (Oral Pill)', '1326303', 'Digoxin', 'd2b7a781-8ef2-482b-b359-ef47d12f3e8e', to_date('10/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1441, 'Digoxin (Injectable)', '1326303', 'Digoxin', '58678fd6-afe3-4a4c-a37f-356444194cd6', to_date('1/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1442, 'Digoxin (Oral Liquid)', '1326303', 'Digoxin', '7b03a2d7-f17c-4954-85c9-fb78cfec7d76', to_date('8/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1443, 'Digoxin (Oral Pill)', '1326303', 'Digoxin', '73b5f256-f362-4206-a021-db117930ff53', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1444, 'Digoxin antibodies Fab fragments (Injectable)', '19045317', 'digoxin antibodies Fab fragments', 'c05ee6a5-c98b-45f4-83fd-40781639d653', to_date('7/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1445, 'Dihematoporphyrin Ether (Injectable)', '19089602', 'Dihematoporphyrin Ether', 'f5fdda24-da7d-4e61-936e-9d1a55056b82', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1446, 'Dihydrocodeine/guaiFENesin (Oral Liquid)', '1189596', 'dihydrocodeine', '61e61344-bf91-4742-be57-d74b30cfa4ad', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1447, 'Dihydrocodeine/guaiFENesin/Phenylephrine (Oral Liquid)', '1189596', 'dihydrocodeine', 'a3d94294-e66b-4384-9e9a-489a98bd5964', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1448, 'Dihydroergotamine (Injectable)', '1126557', 'Dihydroergotamine', 'fe826e6a-75c8-43ed-9c36-f8263ec35aff', to_date('1/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1449, 'Dihydroergotamine (Nasal)', '1126557', 'Dihydroergotamine', '977de209-c53a-4cb4-9f3f-1e850600a9dc', to_date('3/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1450, 'DILANTIN (Chewable)', '740910', 'Phenytoin', '95d29970-f8ef-4799-b489-ebe2285de4de', to_date('4/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1451, 'DILANTIN (Oral Pill)', '740910', 'Phenytoin', '0c2e0671-bb5e-4704-a242-83c5b9a0bbb0', to_date('7/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1452, 'DILANTIN XR (Oral Pill)', '740910', 'Phenytoin', 'ecab970d-83e9-4aad-92de-dbb73d7a151f', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1453, 'DILATRATE XR (Oral Pill)', '1383925', 'Isosorbide Dinitrate', '2a4cd065-a1dd-4b88-9f7a-7ba93502f972', to_date('11/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1454, 'DILAUDID (Injectable)', '1126658', 'Hydromorphone', 'c88f81ac-1643-4c08-ae2c-63cbe956db7e', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1455, 'DILAUDID (Oral Liquid)', '1126658', 'Hydromorphone', '3afae8b9-bb24-447a-bc7f-041c8326a438', to_date('7/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1456, 'DILAUDID (Oral Pill)', '1126658', 'Hydromorphone', '4daba60f-af60-4c7e-916e-f2ad7e7532c5', to_date('7/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1457, 'Diltiazem (Injectable)', '1328165', 'Diltiazem', 'f5ea3383-5da4-4219-9802-3737a2eaeef4', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1458, 'Diltiazem (Oral Pill)', '1328165', 'Diltiazem', 'a174f7b4-4b61-4f8f-b0ec-44b8eb8826e1', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1459, 'dimenhyDRINATE (Chewable)', '928744', 'Dimenhydrinate', '09936316-8667-4950-b017-19e3a05385a4', to_date('1/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1460, 'dimenhyDRINATE (Injectable)', '928744', 'Dimenhydrinate', 'bc71539e-1a33-4709-8a24-c2894e8dbc1c', to_date('1/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1461, 'dimenhyDRINATE (Oral Pill)', '928744', 'Dimenhydrinate', '14ccdb11-5706-4007-aa27-a60ef3f09ce7', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1462, 'Dimercaprol (Injectable)', '1728903', 'Dimercaprol', 'bee9a137-160f-47e8-a551-ca461ae4f51e', to_date('5/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1463, 'DIMETAPP COLD (Chewable)', '1130863', 'Brompheniramine', '655b4796-6ffc-c27f-b66e-d2ae0c7ad053', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1464, 'DIMETAPP LONG ACTING COUGH PLUS COLD (Oral Liquid)', '1192710', 'Chlorpheniramine', '059a3e6e-ea98-b0c5-ba27-b7cbbdedc917', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1465, 'DIMETAPP NIGHTTIME COLD & CONGESTION (Oral Liquid)', '1129625', 'Diphenhydramine', 'df83f907-4695-7257-f503-6e92dc97a2f2', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1466, 'Dimethicone (Topical)', '916662', 'dimethicone', '3b0aacd3-348d-4d47-93c6-c56ea3b94ce7', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1467, 'Dimethicone/Menthol (Topical)', '916662', 'dimethicone', '33cc1470-f0c2-4e25-bc49-ca23e3b195f0', to_date('9/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1468, 'Dimethicone/Menthol/Pramoxine (Topical)', '916662', 'dimethicone', '7c0f98df-6900-4fe5-abee-8378799ea754', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1469, 'Dimethicone/Miconazole/Zinc Oxide (Topical)', '916662', 'dimethicone', '4114c685-acd1-4c65-842b-1cb7840852dc', to_date('11/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1470, 'Dimethicone/Petrolatum (Topical)', '916662', 'dimethicone', '0b5753aa-b591-4d6e-8341-fcc9456299b6', to_date('12/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1471, 'Dimethicone/Pramoxine (Topical)', '916662', 'dimethicone', 'd5a58662-a628-4e3d-b2f9-b9c7ac12f772', to_date('12/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1472, 'Dimethicone/Zinc Oxide (Topical)', '916662', 'dimethicone', '54d7250e-6aaa-4fc8-88b3-2fee58ebaf73', to_date('6/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1473, 'Dimethyl Sulfoxide (Irrigation)', '928980', 'Dimethyl Sulfoxide', '58b25d79-78f2-4953-b0c6-61658dc4ef0d', to_date('6/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1474, 'Dinoprost (Injectable)', '19029421', 'Dinoprost', '069a7c28-5442-4fb7-83a1-bcf6ce147a21', to_date('5/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1475, 'Dinoprostone (Implant)', '1329415', 'Dinoprostone', 'f1391c7c-233e-44d8-8838-36cc12f01044', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1476, 'Dinoprostone (Vaginal)', '1329415', 'Dinoprostone', 'fae013fc-e199-43f3-86ef-66d34017c534', to_date('10/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1477, 'DIOVAN (Oral Pill)', '1308842', 'valsartan', '9e70df98-38fe-4634-a49c-c5f0b562e0b7', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1478, 'DIOVAN HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', '1bbdcc66-c8c0-4710-a447-d12cc78b5aa8', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1479, 'DIPENTUM (Oral Pill)', '916282', 'olsalazine', '75a96561-6f52-4c11-a105-391fbbfe4827', to_date('10/10/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1480, 'DIPHENHIST (Oral Pill)', '1129625', 'Diphenhydramine', 'ae7957ee-72b3-46f8-966c-526ac894af92', to_date('1/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1481, 'diphenhydrAMINE (Chewable)', '1129625', 'Diphenhydramine', 'b06d03d1-3d61-4a46-91f4-5e3ad2e8b2b1', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1482, 'diphenhydrAMINE (Injectable)', '1129625', 'Diphenhydramine', '4c40fb96-819a-4e11-9500-f11cbd51fd6c', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1483, 'diphenhydrAMINE (Oral Disintegrating)', '1129625', 'Diphenhydramine', '826c5868-c9bf-42b2-a97e-2e7ae6fae057', to_date('7/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1484, 'diphenhydrAMINE (Oral Liquid)', '1129625', 'Diphenhydramine', 'bea08963-16c9-4c27-b0d6-5734b91a3900', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1485, 'diphenhydrAMINE (Oral Pill)', '1129625', 'Diphenhydramine', 'a19f1edc-d2cf-45fc-8233-d882441b0247', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1486, 'diphenhydrAMINE (Topical)', '1129625', 'Diphenhydramine', 'baa7ae0b-dfce-4f56-a26b-5bfe31099b66', to_date('9/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1487, 'DiphenhydrAMINE/Ibuprofen (Oral Pill)', '1129625', 'Diphenhydramine', '3cc319ee-4908-4739-887c-8c5131208368', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1488, 'DiphenhydrAMINE/Naproxen (Oral Pill)', '1129625', 'Diphenhydramine', '82891458-ab0d-459a-8602-dcebd22c3010', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1489, 'DiphenhydrAMINE/Phenylephrine (Oral Liquid)', '1129625', 'Diphenhydramine', '40ae8bfc-4007-4483-bb08-cf32f2e802c6', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1490, 'DiphenhydrAMINE/Phenylephrine (Oral Pill)', '1129625', 'Diphenhydramine', 'd5cbf5f5-746a-443c-9fa4-b3a7745d0dab', to_date('4/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1491, 'DiphenhydrAMINE/Pramoxine (Topical)', '1129625', 'Diphenhydramine', '70c5bb8c-24d2-448b-a3b1-92c7f4754614', to_date('12/6/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1492, 'DiphenhydrAMINE/Zinc Acetate (Topical)', '1129625', 'Diphenhydramine', '020e139a-6f0a-4c18-8169-d95e9b5dc7f4', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1493, '"Diphtheria toxoid vaccine, inactivated/Tetanus toxoid vaccine, inactivated (Injectable)"', '529303', '"diphtheria toxoid vaccine, inactivated"', 'ce88effe-7ff2-418f-acb3-3cb5d5d2bf95', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1494, 'DIPRIVAN (Injectable)', '753626', 'Propofol', 'e3105799-a4b6-f3f4-e6e2-b2b29bbdb538', to_date('6/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1495, 'DIPROLENE (Topical)', '920458', 'Betamethasone', 'dbe069ce-f93e-4f67-bcb2-dfbb932a1f15', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1496, 'Dipyridamole (Injectable)', '1331270', 'Dipyridamole', 'c76c3c6f-c3e0-4e35-ab01-5468585e0d9d', to_date('7/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1497, 'Dipyridamole (Oral Pill)', '1331270', 'Dipyridamole', 'dcf785b2-e923-43bf-93bb-00a9501479f4', to_date('2/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1498, 'DISALCID (Oral Pill)', '1137460', 'Salsalate', '30371119-beaf-4ade-a9d5-12adc09f7827', to_date('10/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1499, 'Disopyramide (Oral Pill)', '1335606', 'Disopyramide', 'f5e0c230-db38-4476-8357-9a227ccff1bc', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1500, 'Disulfiram (Oral Pill)', '735850', 'Disulfiram', 'f0ca0e1f-9641-48d5-9367-e5d1069e8680', to_date('3/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1501, 'DIUREX (Oral Pill)', '1134439', 'Caffeine', 'e02a39f9-1c8c-4d38-b394-3f5b7062932c', to_date('9/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1502, 'DIUREX AQUAGELS (Oral Pill)', '1172206', 'pamabrom', '22122002-c367-480b-b9f5-0504f918cc98', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1503, 'DIUREX MAX (Oral Pill)', '1172206', 'pamabrom', '37dfece3-d570-4ab2-ba95-af6eb1f3acd4', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1504, 'DIURIL (Injectable)', '992590', 'Chlorothiazide', '1d9fa4e6-6516-45cd-a316-292c6a529ecc', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1505, 'DIVIGEL (Topical)', '1548195', 'Estradiol', '22191eca-c98d-4a07-844e-11edb0f04b8d', to_date('11/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1506, 'DOAN''S (Oral Pill)', '1168079', 'Magnesium Salicylate', 'd98ee9c8-40e2-4abb-b5c1-45e73e7dd23b', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1507, 'DOBUTamine (Injectable)', '1337720', 'Dobutamine', 'a0882db1-2532-4b80-b753-68f013fe79e7', to_date('11/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1508, 'DOCEtaxel (Injectable)', '1315942', 'docetaxel', '70aeb960-426c-4805-b956-476bebccd926', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1509, 'Docosanol (Topical)', '980955', 'docosanol', 'c39b38a7-dcdd-4c32-8f35-b565c4d3cec6', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1510, 'Docusate (Oral Liquid)', '941258', 'Docusate', '1fcb6361-7598-4ac9-b04d-faf4397197eb', to_date('2/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1511, 'Docusate (Oral Pill)', '941258', 'Docusate', 'c49fb9f2-489e-48d1-b377-5cd3e2fabeba', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1512, 'Docusate (Rectal)', '941258', 'Docusate', '1235366d-b572-3a41-e054-00144ff8d46c', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1513, '"Docusate/Sennosides, USP (Oral Pill)"', '941258', 'Docusate', '16b2ff3b-0a96-4521-9b41-c7adcee27f8b', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1514, 'DOCUSOL (Rectal)', '941258', 'Docusate', '0d9355f0-d19f-4404-9b9e-bb2c874e39d6', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1515, 'DOCUSOL PLUS (Rectal)', '917006', 'Benzocaine', '08d1d3ed-1427-4a14-a2c0-91d46e258e07', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1516, 'Dodecyl sulfate/Oxyquinoline (Vaginal)', '43012263', 'dodecyl sulfate', '1e4a1caa-e6ba-44ef-8347-07e6385a7c9e', to_date('12/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1517, 'Dog hair extract (Injectable)', '40170475', 'dog hair extract', 'ea1e43ad-632d-4e07-887f-c80f4e9798af', to_date('6/9/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1518, 'DOK (Oral Pill)', '941258', 'Docusate', '7f48d80a-df42-4776-ad22-2d7a47bd03e1', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1519, 'DOLOGEN (Oral Pill)', '1125315', 'Acetaminophen', 'dad63da3-cd1f-42a8-93d5-44b39aae1268', to_date('8/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1520, 'DOLOGESIC (Oral Liquid)', '1125315', 'Acetaminophen', '738e7767-42de-4076-acf2-9152484c2007', to_date('6/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1521, 'DOLORACIN (Topical)', '939881', 'Capsaicin', 'ce4747e3-d8a4-48e6-910f-0f287c0c38fd', to_date('9/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1522, 'Dolutegravir (Oral Pill)', '43560385', 'dolutegravir', '63df5af3-b8ac-4e76-9830-2dbb340af922', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1523, 'DOMEBORO (Topical)', '19030692', 'aluminum sulfate', '28c39200-2f7c-954b-3ce7-7349b2738812', to_date('7/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1524, 'DONATUSSIN DROPS (Oral Liquid)', '1163944', 'Guaifenesin', '9ebee4c3-c0fb-417e-901f-eaaf678654f9', to_date('1/7/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1525, 'Donepezil (Oral Disintegrating)', '715997', 'donepezil', '6bbb7b73-910b-4664-8856-4c6adbbb48cb', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1526, 'Donepezil (Oral Pill)', '715997', 'donepezil', '11ac01f4-d26e-47b2-9660-d514ab097fdb', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1527, 'DONNATAL (Oral Liquid)', '914335', 'Atropine', '85c207ad-83bb-20e8-ef73-9a374eb8ccb6', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1528, 'DONNATAL (Oral Pill)', '914335', 'Atropine', 'c93cccdc-2f92-4cb3-9d14-06acdd51d94c', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1529, 'DONNATAL XR (Oral Pill)', '914335', 'Atropine', '2064014b-6f8e-4232-88c2-d1870042abc7', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1530, 'DOPamine (Injectable)', '1337860', 'Dopamine', 'e061fb3e-afd7-4188-b5fb-617ac1d3e38d', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1531, 'DOPRAM (Injectable)', '738152', 'Doxapram', 'b8eb330a-a75b-46cb-b694-5be9327ed2eb', to_date('4/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1532, 'Dornase Alfa (Inhalant)', '1125443', 'Dornase Alfa', 'd8c78a7e-ff99-48f3-8952-643ec2ea0f86', to_date('1/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1533, 'DORYX (Oral Pill)', '1738521', 'Doxycycline', '1292fa83-e2a1-4fda-b0dd-ccf763265fe1', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1534, 'Dorzolamide (Ophthalmic)', '981709', 'dorzolamide', 'f16732ba-2cd8-473d-b79f-f48f29869c8d', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1535, 'Dorzolamide/Timolol (Ophthalmic)', '981709', 'dorzolamide', '06c062ca-add7-4ddf-ba7c-7b5dd531e9ec', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1536, 'DOVONEX (Topical)', '908921', 'calcipotriene', '92d53473-e33d-4490-9390-ec333dbf7676', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1537, 'Doxapram (Injectable)', '738152', 'Doxapram', 'b8eb330a-a75b-46cb-b694-5be9327ed2eb', to_date('4/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1538, 'Doxazosin (Oral Pill)', '1363053', 'Doxazosin', '7d5b94bd-bd39-414d-855e-b8e6f22e593e', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1539, 'Doxepin (Oral Liquid)', '738156', 'Doxepin', 'fa31c1a5-91ed-4726-ab58-fbe98056fe5e', to_date('12/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1540, 'Doxepin (Oral Pill)', '738156', 'Doxepin', 'c97a2f91-fe58-4d78-afc2-1a4ceb1f9344', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1541, 'Doxepin (Topical)', '738156', 'Doxepin', '64311378-2da2-4835-a222-5df5204c59c2', to_date('2/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1542, 'Doxercalciferol (Oral Pill)', '1512446', 'Doxercalciferol', '1bb3ce2f-c77a-436f-980f-a02668f99fed', to_date('2/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1543, 'Doxorubicin liposome (Injectable)', '19051649', 'doxorubicin liposome', '1d5beebf-77f3-47ca-a9a1-5f64f42fed07', to_date('5/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1544, 'DOXY (Injectable)', '1738521', 'Doxycycline', 'b0894010-39bd-459f-8563-cf83343105ee', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1545, 'Doxycycline (Injectable)', '1738521', 'Doxycycline', 'f9b9ca8a-5cfc-446a-8330-36cf96625a57', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1546, 'Doxycycline (Oral Pill)', '1738521', 'Doxycycline', '1292fa83-e2a1-4fda-b0dd-ccf763265fe1', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1547, 'Doxylamine (Oral Pill)', '738818', 'Doxylamine', '8051a431-94ab-4593-bfca-f28ea988b474', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1548, 'Doxylamine/Phenylephrine (Oral Pill)', '738818', 'Doxylamine', '8f6622e1-b40d-4d1c-9322-463775728a25', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1549, 'Doxylamine/Pseudoephedrine (Oral Liquid)', '738818', 'Doxylamine', 'fe74017b-3387-4e72-9e2d-9eb46465c3df', to_date('4/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1550, 'DR. SCHOLL''S (Topical)', '964407', 'Salicylic Acid', 'fd446f5f-c086-4b58-b350-a8ff3c92259f', to_date('6/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1551, 'DR. SCHOLL''S DISCS (Topical)', '964407', 'Salicylic Acid', 'f5d4c321-dec2-49f1-bfe2-30a053166880', to_date('6/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1552, 'DR. SMITH''S DIAPER RASH (Topical)', '911064', 'Zinc Oxide', '7705b182-acf7-4195-9996-7d9fcdfbf055', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1553, 'DRAMAMINE (Chewable)', '928744', 'Dimenhydrinate', '09936316-8667-4950-b017-19e3a05385a4', to_date('1/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1554, 'DRAMAMINE (Oral Pill)', '928744', 'Dimenhydrinate', 'f9302a5a-295a-4501-9332-e3f5eb387362', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1555, 'DRAMAMINE LESS DROWSY (Oral Pill)', '994341', 'Meclizine', 'fa6a0969-7427-4b87-bc04-a2792665c218', to_date('9/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1556, 'DRISDOL (Oral Pill)', '19045045', 'Ergocalciferol', '0d501431-82d3-4f8e-94c4-5eabcefc00ad', to_date('7/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1557, 'DRISTAN 12-HOUR NASAL SPRAY (Nasal)', '925636', 'Oxymetazoline', '9ddfb021-fa96-94a6-a413-839ce5a7e744', to_date('3/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1558, 'DRITHOCREME (Topical)', '952538', 'Anthralin', '4d624774-3618-423c-89bd-492f4795ad19', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1559, 'Dronedarone (Oral Pill)', '40163615', 'dronedarone', '236d4549-f44b-4677-b857-acedd10b9920', to_date('12/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1560, 'Droperidol (Injectable)', '739323', 'Droperidol', '7bd2c1cf-31c0-49c7-a856-f238a46f6f1f', to_date('11/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1561, 'Drospirenone/Estradiol (Oral Pill)', '1512674', 'drospirenone', '761834c2-6b61-4583-84c2-f1ca4a97c4f2', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1562, 'Drospirenone/Ethinyl Estradiol (Oral Pill)', '1512674', 'drospirenone', '8edef6f6-c278-4595-a00e-55a773b15733', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1563, 'Drospirenone/Ethinyl Estradiol/Levomefolic Acid (Oral Pill)', '1512674', 'drospirenone', '8132454a-6135-4bac-b206-83a55eb8dbc6', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1564, 'DROXIA (Oral Pill)', '1377141', 'hydroxyurea', '740e054b-faac-7c27-f06d-a56efb699355', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1565, 'Droxidopa (Oral Pill)', '44814542', 'Droxidopa', '2179f02c-48d7-48eb-8007-5ae43d8d16bc', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1566, 'DUAVEE (Oral Pill)', '44506794', 'bazedoxifene', 'e1b75458-2e5b-46b9-92c6-fa6daba3770f', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1567, 'DUEXIS (Oral Pill)', '953076', 'Famotidine', '558b9f26-37b2-423b-932d-25a37afe57ec', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1568, 'DULCOLAX (Oral Pill)', '924939', 'Bisacodyl', '8527ae95-fdfd-4b62-9f56-598c2656aeb6', to_date('11/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1569, 'DULCOLAX (Rectal)', '924939', 'Bisacodyl', '1bf775a9-bd9e-41a6-acef-9a3795fbf25c', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1570, 'DULoxetine (Oral Pill)', '715259', 'duloxetine', '752d7078-6cc5-4cb8-b5d2-5fc0851320a4', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1571, 'DUONEB (Inhalant)', '1154343', 'Albuterol', '926d8687-5a1f-4550-b33a-b56f9d015994', to_date('6/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1572, 'DURACLON (Injectable)', '1398937', 'Clonidine', '8c126bb8-732a-4949-8754-2f50b5543638', to_date('3/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1573, 'DURAMORPH (Injectable)', '1110410', 'Morphine', 'ebb18761-e5c4-4238-bb84-f9549f500210', to_date('11/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1574, 'DURAPREP (Topical)', '19125582', 'iodine povacrylex', '3a73b934-ea39-43c2-86bf-dfb88353b8bd', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1575, 'DURICEF (Oral Liquid)', '1769535', 'Cefadroxil', '4ad759f3-72dd-412e-9500-055335cda6cf', to_date('5/22/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1576, 'DURICEF (Oral Pill)', '1769535', 'Cefadroxil', '4ad759f3-72dd-412e-9500-055335cda6cf', to_date('5/22/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1577, 'Dutasteride (Oral Pill)', '989482', 'Dutasteride', '813507ec-1fc1-420f-ac5c-5c794b1059cd', to_date('12/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1578, 'Dutasteride/Tamsulosin (Oral Pill)', '989482', 'Dutasteride', 'f96c6acd-4d02-4ece-bd54-2d5a35aab7f5', to_date('5/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1579, 'DYAZIDE (Oral Pill)', '974166', 'Hydrochlorothiazide', '7330f40d-b269-425b-a4e3-e7263a088fb7', to_date('2/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1580, 'Dyclonine (Oral Lozenge)', '992308', 'dyclonine', '6fde9446-0f8d-4bba-98dc-3e3a1f170488', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1581, 'DYNA-HEX (Topical)', '1790812', 'Chlorhexidine', '6cc89ac1-baef-40bb-85a3-d9ae9e3e7a63', to_date('1/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1582, 'DYNACIN (Oral Pill)', '1708880', 'Minocycline', 'f174edbd-3ac0-4e27-a116-3b74804721bb', to_date('12/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1583, 'Dyphylline (Oral Pill)', '1140088', 'Dyphylline', '6d7ed7c0-9646-11de-a404-0002a5d5c51b', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1584, 'Dyphylline/guaiFENesin (Oral Liquid)', '1140088', 'Dyphylline', 'd35db38b-8b0e-4872-ab18-09795c5e07e9', to_date('8/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1585, 'DYRENIUM (Oral Pill)', '904542', 'Triamterene', '5012f997-9fb2-4c3d-99fd-4f7efd7c39af', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1586, 'DYSPORT (Injectable)', '40165377', 'abobotulinumtoxinA', '71313a04-1349-4c26-b840-a39e4a3ddaed', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1587, 'Eastern cottonwood pollen extract (Injectable)', '40161793', 'eastern cottonwood pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1588, 'Echothiophate (Ophthalmic)', '958368', 'Echothiophate', 'e4bb53c7-9061-43fc-878f-dc1b19801bfc', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1589, 'Econazole (Topical)', '940864', 'Econazole', '050155b7-e8fe-4eee-9516-716399f559f6', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1590, 'ECONOCHLOR (Ophthalmic)', '990069', 'Chloramphenicol', '29bd93cf-6524-45b9-b4b3-c9665da89e34', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1591, 'ECONOPRED (Ophthalmic)', '1550557', 'prednisolone', '2d6c3ea4-5189-4f6e-bb6a-c9379f441d7a', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1592, 'ECOTRIN (Oral Pill)', '1112807', 'Aspirin', 'f950d4eb-39b9-4ef7-b5f3-0cf45d4d6bc0', to_date('7/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1593, 'ECPIRIN (Oral Pill)', '1112807', 'Aspirin', '0ad0996b-31fb-305a-e054-00144ff88e88', to_date('12/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1594, 'ECZEMIN (Topical)', '927478', 'pramoxine', 'b108cbf1-55f4-49c8-93d1-13c0326cc487', to_date('12/6/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1595, 'ED SPAZ (Oral Disintegrating)', '923672', 'Hyoscyamine', 'f33a4774-9fbb-4782-a7e1-068e83b7504d', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1596, 'EDARBI (Oral Pill)', '40235485', 'azilsartan', '75b16bfc-38c1-4133-bd7d-13258d54edec', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1597, 'EDARBYCLOR (Oral Pill)', '40235485', 'azilsartan', 'e60f795b-fce3-4361-aa03-f143451689d1', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1598, 'EDECRIN (Oral Pill)', '987406', 'Ethacrynate', 'd65ed93d-77c8-45d1-af3d-06e9e5d65930', to_date('1/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1599, 'EDECRIN SODIUM (Injectable)', '987406', 'Ethacrynate', '9e6e2048-0d65-4c23-8324-95767cbf86f1', to_date('8/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1600, 'Edetate Calcium (Injectable)', '43013616', 'Edetate Calcium', 'f960dbfa-b00c-4f3e-ad32-ed6a5deea831', to_date('4/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1601, 'Edetic Acid (Injectable)', '1741008', 'Edetic Acid', '290c3e9c-c0c6-440a-1a9c-46e3e2b07a77', to_date('3/1/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1602, 'EDLUAR (Sublingual)', '744740', 'zolpidem', 'a32884d0-85b5-11de-8a39-0800200c9a66', to_date('11/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1603, 'Edrophonium (Injectable)', '740924', 'Edrophonium', '98a5a2f6-3194-4202-963f-0fcd28ecadbc', to_date('4/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1604, 'EESCULA (Ophthalmic)', '915829', 'isopropyl unoprostone', '53d05ced-51dd-11de-8a39-0800200c9a66', to_date('1/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1605, 'Efavirenz (Oral Pill)', '1738135', 'efavirenz', '04b5c345-c446-43a4-83f0-509bc287e10b', to_date('3/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1606, 'Efavirenz/Emtricitabine/Tenofovir disoproxil (Oral Pill)', '1738135', 'efavirenz', '5c6c7ba4-6d42-4e07-a127-b3cf72c866ad', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1607, 'EFFACLAR DUO (Topical)', '918172', 'Benzoyl Peroxide', '6cdd0ab1-d30f-40d3-bf3a-5d7d178b1d31', to_date('1/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1608, 'EFFIENT (Oral Pill)', '40163718', 'prasugrel', 'cb684ad9-0b72-406f-8a07-a419254ccd36', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1609, 'Eflornithine (Topical)', '978236', 'Eflornithine', 'e872db73-7cd7-4886-9b0f-6710700e3765', to_date('9/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1610, 'EFUDEX (Topical)', '955632', 'Fluorouracil', '35de1c1c-bef5-46c5-b6f8-ea032147411c', to_date('5/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1611, 'EGG YOLK PHOSPHOLIPIDS/Glycerin/Soybean Oil (Injectable)', '19013789', 'EGG YOLK PHOSPHOLIPIDS', 'dd269651-30e8-43f0-880f-484346eaafeb', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1612, 'EGRIFTA (Injectable)', '40231628', 'tesamorelin', '3de31cec-31dc-4ac4-9717-367a687d22f2', to_date('3/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1613, 'ELDEPRYL (Oral Pill)', '766209', 'Selegiline', '106429ad-859a-4b29-babf-42cb85f7236e', to_date('7/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1614, 'ELELYSO (Injectable)', '42800246', 'taliglucerase alfa', 'fa3cbd5d-677c-4b19-9032-d9182cb69a83', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1615, 'ELESTAT (Ophthalmic)', '943634', 'epinastine', 'a9628ec7-bbeb-4cfa-932f-645a8aca8987', to_date('1/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1616, 'ELESTRIN (Topical)', '1548195', 'Estradiol', '8e1a3641-25ca-41bd-a940-51ae0ec64ed9', to_date('7/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1617, 'Eletriptan (Oral Pill)', '1189697', 'eletriptan', '523b947a-4e92-42ff-886c-4317af8d7b56', to_date('3/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1618, 'ELIDEL (Topical)', '915935', 'Pimecrolimus', 'e4027e5a-0f9b-4070-b196-f60172f45c4c', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1619, 'Eliglustat (Oral Pill)', '45775782', 'eliglustat', '819f828a-b888-4e46-83fc-94d774a28a83', to_date('9/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1620, 'ELIMITE (Topical)', '922868', 'Permethrin', '4de55a80-67d6-42c0-a6fc-57b89400c5b3', to_date('11/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1621, 'ELIPHOS (Oral Pill)', '951469', 'calcium acetate', '9fc1ada4-9ef4-48e9-8203-32aa857d0429', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1622, 'ELIQUIS (Oral Pill)', '43013024', 'apixaban', 'a454cd24-0c6d-46e8-b1e4-197388606175', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1623, 'ELIXOPHYLLIN (Oral Liquid)', '1237049', 'Theophylline', '2676f761-4fe5-40a9-a07d-ed2542847883', to_date('3/13/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1624, 'ELLA (Oral Pill)', '40225722', 'ulipristal', '052bfe45-c485-49e5-8fc4-51990b2efba4', to_date('7/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1625, 'ELMIRON (Oral Pill)', '924151', 'Pentosan Polysulfate', '3b172ad2-074f-4534-af1f-89d951647ee9', to_date('7/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1626, 'ELOCON (Topical)', '905233', 'Mometasone', 'aa905762-80be-45be-89d5-b32564e82f92', to_date('4/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1627, 'ELOCTATE (Injectable)', '45776421', 'factor VIII (b-domain deleted recombinant) FC fusion protein', 'bec39fa0-1524-4e6b-897f-db0ef093085e', to_date('7/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1628, 'ELOXATIN (Injectable)', '1318011', 'oxaliplatin', '3c740b43-f396-4998-bc66-6964a21f7161', to_date('3/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1629, 'ELTA SEAL MOISTURE BARRIER (Topical)', '911064', 'Zinc Oxide', '9ebe3684-d591-464f-9828-379a8b627728', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1630, 'Elvitegravir (Oral Pill)', '42874212', 'elvitegravir', 'be87c3bc-97bb-49cb-8053-9b0c756a1965', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1631, 'EMADINE (Ophthalmic)', '903893', 'emedastine', '98a010d5-4905-4abf-a9d2-c85a07daa23b', to_date('7/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1632, 'EMBEDA XR (Oral Pill)', '1110410', 'Morphine', 'dfe97a3d-247d-4dda-a641-1a95196cd8d8', to_date('3/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1633, 'EMCYT (Oral Pill)', '1349025', 'Estramustine', 'a9b01bc6-95ac-46f9-befa-d845a74d53c1', to_date('6/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1634, 'Emedastine (Ophthalmic)', '903893', 'emedastine', '98a010d5-4905-4abf-a9d2-c85a07daa23b', to_date('7/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1635, 'EMEND (Oral Pill)', '936748', 'aprepitant', 'ec44482e-6194-4829-a3f7-ebe8d48a41a5', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1636, 'EMETROL (Oral Liquid)', '956691', 'Fructose', 'd0ce87b8-d484-4307-95a9-05705a6caf85', to_date('4/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1637, 'EMLA (Topical)', '989878', 'Lidocaine', 'b466c7eb-bca3-4686-ada6-325103ab06f3', to_date('3/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1638, 'Empagliflozin (Oral Pill)', '45774751', 'empagliflozin', 'faf3dd6a-9cd0-39c2-0d2e-232cb3f67565', to_date('7/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1639, 'Emtricitabine (Oral Liquid)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', to_date('11/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1640, 'Emtricitabine (Oral Pill)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', to_date('11/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1641, 'Emtricitabine/Rilpivirine/Tenofovir disoproxil (Oral Pill)', '1703069', 'emtricitabine', '54c8bec2-d565-489c-8d7c-afd3cdf78df5', to_date('3/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1642, 'Emtricitabine/Tenofovir disoproxil (Oral Pill)', '1703069', 'emtricitabine', '8bd3debe-d414-450f-b8d9-a70fb1dd5341', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1643, 'EMTRIVA (Oral Liquid)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', to_date('11/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1644, 'EMTRIVA (Oral Pill)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', to_date('11/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1645, 'Enalapril (Oral Liquid)', '1341927', 'Enalapril', '94c9a9d6-957f-4667-8f09-509e99bac777', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1646, 'Enalapril (Oral Pill)', '1341927', 'Enalapril', '5cc4f6f0-8925-81e1-b210-b5a4509a25a9', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1647, 'Enalapril/Hydrochlorothiazide (Oral Pill)', '1341927', 'Enalapril', '7cb92cf2-46f2-4379-937c-168d230e43a4', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1648, 'Enalaprilat (Injectable)', '1342001', 'Enalaprilat', 'd3d573a7-50d5-46a8-9f92-baad3ae0831e', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1649, 'ENDODAN REFORMULATED MAY 2009 (Oral Pill)', '1112807', 'Aspirin', '23a60947-6058-4bf7-a3ee-ae396e55d939', to_date('6/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1650, 'ENDRATE (Injectable)', '1741008', 'Edetic Acid', '290c3e9c-c0c6-440a-1a9c-46e3e2b07a77', to_date('3/1/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1651, 'ENEMEEZ (Rectal)', '941258', 'Docusate', '0b06445d-0839-497e-bdff-e0fe224a7738', to_date('8/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1652, 'ENEMEEZ PLUS (Rectal)', '917006', 'Benzocaine', '1670ca59-7275-4ac6-bef4-674a7b24c7b3', to_date('8/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1653, 'English plantain pollen extract (Injectable)', '40160939', 'English plantain pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1654, 'ENJUVIA (Oral Pill)', '1586808', '"synthetic conjugated estrogens, B"', 'b7aba0b2-72d1-4429-bb64-98b92e9d9433', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1655, 'ENLON (Injectable)', '740924', 'Edrophonium', '98a5a2f6-3194-4202-963f-0fcd28ecadbc', to_date('4/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1656, 'ENLON-PLUS (Injectable)', '914335', 'Atropine', 'bdeb47eb-e538-498d-ae98-14d5db29eab0', to_date('12/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1657, 'Enoxaparin (Injectable)', '1301025', 'Enoxaparin', '2cc08d08-555a-4135-b6da-9f8cf7b11ad7', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1658, 'Entacapone (Oral Pill)', '782211', 'entacapone', '01ea62f4-bfac-485a-bb4b-a9abb345749f', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1659, 'Entecavir (Oral Pill)', '1711246', 'entecavir', 'e527b81a-5e15-4b58-91ed-3df45f3ac589', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1660, 'ENTEREG (Oral Pill)', '19059654', 'alvimopan', '77a67dc6-35d3-48ff-9d18-292d4d442f70', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1661, 'ENTEX LQ (Oral Liquid)', '1163944', 'Guaifenesin', '0accdd47-9712-4faa-aae4-ad1e641b26a1', to_date('4/19/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1662, 'ENTOCORT (Oral Pill)', '939259', 'Budesonide', '98a4eca1-904c-4355-957a-b5a141573cc2', to_date('11/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1663, 'ENTYVIO (Injectable)', '45774639', 'vedolizumab', '6e94621c-1a95-4af9-98d1-52b9e6f1949c', to_date('5/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1664, 'ENULOSE (Oral Liquid)', '987245', 'Lactulose', 'a9b8bc93-af0f-44e6-a5f2-ff001542a81f', to_date('2/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1665, 'Enzalutamide (Oral Pill)', '42900250', 'enzalutamide', 'b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1666, 'EPANED (Oral Liquid)', '1341927', 'Enalapril', '94c9a9d6-957f-4667-8f09-509e99bac777', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1667, 'ePHEDrine (Injectable)', '1143374', 'Ephedrine', '16f212c3-d504-4d3c-813e-cc23a04aaa88', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1668, 'ePHEDrine (Oral Pill)', '1143374', 'Ephedrine', 'b63d6ef1-ccce-4cd7-80f7-6d674dbf432f', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1669, 'ePHEDrine/guaiFENesin (Oral Pill)', '1143374', 'Ephedrine', '699e7629-5e8a-4dac-b494-fe42698ee460', to_date('6/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1670, 'Epicoccum nigrum extract (Injectable)', '40162020', 'Epicoccum nigrum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1671, 'EPIDUO (Topical)', '981774', 'adapalene', '67002593-3bd3-4e91-a48f-9f7483e579a0', to_date('2/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1672, 'EPIFOAM (Topical)', '975125', 'Hydrocortisone', 'b22b8b41-2f1e-11e4-8c21-0800200c9a66', to_date('9/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1673, 'Epinastine (Ophthalmic)', '943634', 'epinastine', 'df001833-f478-ee51-325a-9e1b56199567', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1674, 'EPINEPHrine (Injectable)', '1343916', 'Epinephrine', '3ed35d7d-616c-43cd-9776-705821afc1f0', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1675, 'EPINEPHrine/Lidocaine (Injectable)', '1343916', 'Epinephrine', '169e2102-199a-46b6-80ae-8bb5ff2a5c69', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1676, 'EPINEPHrine/Lidocaine (Transdermal)', '1343916', 'Epinephrine', '82b5bf2c-7dc9-40bd-9fb4-b5b1b5be0470', to_date('9/14/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1677, 'Epirubicin (Injectable)', '1344354', 'Epirubicin', 'bc0a3a39-4ac3-47de-a388-9c3672e3e130', to_date('3/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1678, 'EPIVIR (Oral Pill)', '1704183', 'Lamivudine', '3b1f8ee3-d582-4faa-a7f2-0fbc45721298', to_date('9/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1679, 'EPIVIR HBV (Oral Pill)', '1704183', 'Lamivudine', '83009c27-f54b-47df-b8b2-e2e4e0b8f4e8', to_date('10/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1680, 'Eplerenone (Oral Pill)', '1309799', 'eplerenone', 'c7bc9486-8e61-4ba1-827f-2cd8c304b454', to_date('8/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1681, 'Epoetin Alfa (Injectable)', '1301125', 'Epoetin Alfa', '9bbe9a5b-ad1d-41a4-9699-ff6dc776bce1', to_date('1/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1682, 'Epoprostenol (Injectable)', '1354118', 'Epoprostenol', 'd669ff68-ddcf-42f6-913c-d8f1aedbd9c4', to_date('12/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1683, 'Eprosartan/Hydrochlorothiazide (Oral Pill)', '1346686', 'eprosartan', 'b1dfcac3-ef66-4d3e-9d58-37d3f516eb31', to_date('1/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1684, 'EPZICOM (Oral Pill)', '1736971', 'abacavir', '080e3423-5962-4465-8e78-cd8793699336', to_date('9/1/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1685, 'EQUAGESIC (Oral Pill)', '1112807', 'Aspirin', '941e1ec2-1f14-4153-a5ea-cf7669d5efd1', to_date('1/25/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1686, 'Ergocalciferol (Oral Liquid)', '19045045', 'Ergocalciferol', '7dec2cd0-b4cf-45b7-924c-cbb003f5f8f8', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1687, 'Ergocalciferol (Oral Pill)', '19045045', 'Ergocalciferol', '88218156-081a-4809-8143-f97bdab194ba', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1688, '"Ergoloid mesylates, USP (Oral Pill)"', '745268', '"ergoloid mesylates, USP"', '1344cf98-7d79-4ab4-9a63-2e632d9afbd4', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1689, 'ERGOMAR (Sublingual)', '1145379', 'Ergotamine', '1bfd4827-5123-4dbb-8f94-7b097f5bfd5c', to_date('9/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1690, 'Ergotamine (Inhalant)', '1145379', 'Ergotamine', 'e713859d-f454-4f7e-a535-868b8d5f2c88', to_date('9/1/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1691, 'Ergotamine (Sublingual)', '1145379', 'Ergotamine', '1bfd4827-5123-4dbb-8f94-7b097f5bfd5c', to_date('9/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1692, 'ERIVEDGE (Oral Pill)', '42709321', 'vismodegib', 'eb368bb6-80e3-4df9-8a85-91df0a2ada6a', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1693, 'Erlotinib (Oral Pill)', '1325363', 'erlotinib', '5783976b-0862-44e5-9b19-0f41d236d5c3', to_date('1/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1694, 'ERTACZO (Topical)', '939134', 'sertaconazole', '821073f7-33f6-464d-baed-f66d97987d6d', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1695, 'ERY (Topical)', '1746940', 'Erythromycin', '9a63da11-01be-4c63-a260-e6bdbb4a7a69', to_date('11/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1696, 'ERY-TAB (Oral Pill)', '1746940', 'Erythromycin', 'e7dd481b-5c2a-412e-86df-dfe1376ce38c', to_date('4/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1697, 'ERYC (Oral Pill)', '1746940', 'Erythromycin', 'c3f7cd94-d842-4f6b-a582-a38c751a790a', to_date('12/19/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1698, 'ERYGEL (Topical)', '1746940', 'Erythromycin', '26eb3e52-e857-4ab6-841e-fd47a838e4f4', to_date('1/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1699, 'ERYPED (Oral Liquid)', '1746940', 'Erythromycin', '04775721-ab87-4b66-808c-d67a21032385', to_date('8/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1700, 'ERYTHROCIN STEARATE (Oral Pill)', '1746940', 'Erythromycin', '81698259-aab4-42ec-a549-b32e9c9565d0', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1701, 'Erythromycin (Ophthalmic)', '1746940', 'Erythromycin', 'dc3ee55d-114e-44f2-adb2-fb0c24eba732', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1702, 'Erythromycin (Oral Pill)', '1746940', 'Erythromycin', '83b88647-1b7c-444f-ab20-cdb5afd265bf', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1703, 'Erythromycin (Topical)', '1746940', 'Erythromycin', 'aa993373-f75f-440f-bdae-59892557ba2c', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1704, 'Erythromycin Ethylsuccinate (Oral Liquid)', '1746940', 'Erythromycin', '04775721-ab87-4b66-808c-d67a21032385', to_date('8/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1705, 'Erythromycin Ethylsuccinate (Oral Pill)', '1746940', 'Erythromycin', '6d8c343b-30d9-4cdb-8f55-2a20983a71c1', to_date('5/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1706, 'Erythromycin Ethylsuccinate/SulfiSOXAZOLE (Oral Liquid)', '1746940', 'Erythromycin', 'eb6ea746-3228-4969-8a26-653288662fd7', to_date('8/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1707, 'Erythromycin stearate (Oral Pill)', '1746940', 'Erythromycin', '26f2704c-92ae-41c5-badc-dbebfb2eed35', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1708, 'Escitalopram (Oral Liquid)', '715939', 'Escitalopram', '82d793ee-4039-45fc-ac83-4bd5235f00aa', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1709, 'Escitalopram (Oral Pill)', '715939', 'Escitalopram', '83b762b9-bb12-43fe-bdc4-00d5c4fd98ce', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1710, 'ESGIC (Oral Pill)', '1125315', 'Acetaminophen', '8aa576ac-c870-4ac0-a9a5-5539b38f653d', to_date('11/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1711, 'Eslicarbazepine (Oral Pill)', '44507780', 'eslicarbazepine', '3d0c9554-eaeb-4694-8089-00133fcadce3', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1712, 'Esmolol (Injectable)', '19063575', 'esmolol', '94f069f9-dd52-4a69-a103-ebdb4294f088', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1713, 'Esomeprazole (Injectable)', '904453', 'Esomeprazole', 'dce12085-d6c4-48a5-959b-e771c413c9c5', to_date('2/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1714, 'Esomeprazole (Oral Pill)', '904453', 'Esomeprazole', 'ea79f802-e9ac-480b-91e6-1e3900b11803', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1715, 'Esomeprazole/Naproxen (Oral Pill)', '904453', 'Esomeprazole', 'baa47781-7151-4c75-a9a2-d2eac0a7d55e', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1716, 'ESOTERICA (Topical)', '976778', 'hydroquinone', '0de38654-f598-4cca-9e1e-47af1f21d21c', to_date('10/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1717, 'Estazolam (Oral Pill)', '748010', 'Estazolam', '50914a46-eab6-4c83-97cf-6ab0234c8126', to_date('8/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1718, 'ESTRACE (Oral Pill)', '1548195', 'Estradiol', 'a3803ba3-4eee-4e2e-ac8c-821a4e6720cc', to_date('9/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1719, 'ESTRACE (Vaginal)', '1548195', 'Estradiol', 'dfc41fcd-c5ba-4b25-b647-cf04d3988b3e', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1720, 'Estradiol (Injectable)', '1548195', 'Estradiol', 'c5f32941-3427-4a38-bc3d-38337b41d9d3', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1721, 'Estradiol (Oral Pill)', '1548195', 'Estradiol', 'a3803ba3-4eee-4e2e-ac8c-821a4e6720cc', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1722, 'Estradiol (Topical)', '1548195', 'Estradiol', '9a0aa631-133d-406b-9d32-8a1a99af4e50', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1723, 'Estradiol (Vaginal)', '1548195', 'Estradiol', 'dfc41fcd-c5ba-4b25-b647-cf04d3988b3e', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1724, 'Estradiol/Norethindrone (Oral Pill)', '1548195', 'Estradiol', 'b85df980-7df1-4973-bee3-ae51274b588f', to_date('10/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1725, 'Estramustine (Oral Pill)', '1349025', 'Estramustine', 'a9b01bc6-95ac-46f9-befa-d845a74d53c1', to_date('6/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1726, '"Estrogens, Conjugated (USP) (Oral Pill)"', '1549080', '"Estrogens, Conjugated (USP)"', '55495ca7-54a3-4f52-935d-63432d14db4d', to_date('5/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1727, '"Estrogens, Conjugated (USP)/MedroxyPROGESTERone (Oral Pill)"', '1549080', '"Estrogens, Conjugated (USP)"', '198d547d-c985-46bc-a66f-e3182a294cb5', to_date('3/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1728, '"Estrogens, Esterified (USP) (Oral Pill)"', '1551673', '"Estrogens, Esterified (USP)"', 'efb195b9-b995-48f3-a4cb-b7e09d56350e', to_date('1/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1729, '"Estrogens, Esterified (USP)/MethylTESTOSTERone (Oral Pill)"', '1551673', '"Estrogens, Esterified (USP)"', '316650b7-5770-4f1a-867d-68a72c60c8f2', to_date('5/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1730, 'Estropipate (Vaginal)', '1525278', 'estropipate', 'ea3d70e5-dccd-4302-964b-b5cb1394b514', to_date('9/28/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1731, 'Eszopiclone (Oral Pill)', '757352', 'Eszopiclone', 'e711e994-a489-d14b-9a50-60557b9ed137', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1732, 'Ethacrynate (Injectable)', '987406', 'Ethacrynate', '9e6e2048-0d65-4c23-8324-95767cbf86f1', to_date('8/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1733, 'Ethacrynate (Oral Pill)', '987406', 'Ethacrynate', 'd65ed93d-77c8-45d1-af3d-06e9e5d65930', to_date('1/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1734, 'Ethambutol (Oral Pill)', '1749301', 'Ethambutol', 'b2f95b0b-9de3-4c0b-a46e-a7eee6428b4b', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1735, 'ETHAMOLIN (Injectable)', '19095285', 'ethanolamine oleate', 'a9c1d8c5-443e-400e-a42c-16a25fb47231', to_date('4/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1736, 'Ethanol (Injectable)', '955372', 'Ethanol', '6361091f-c341-4bc7-a2a5-bd6ea73cc028', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1737, 'Ethanol (Soap)', '955372', 'Ethanol', '44f4034a-0e13-49ae-98e6-1fb627a0e930', to_date('10/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1738, 'Ethanol (Topical)', '955372', 'Ethanol', '7aebcd0c-1b86-4c82-b7cb-e0e02648b9a0', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1739, 'Ethanol/Glucose (Injectable)', '955372', 'Ethanol', '14a2b1ab-f94b-45f1-b5c3-dce751648e93', to_date('11/9/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1740, 'Ethanolamine oleate (Injectable)', '19095285', 'ethanolamine oleate', 'a9c1d8c5-443e-400e-a42c-16a25fb47231', to_date('4/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1741, 'Ethinyl Estradiol (Oral Pill)', '1549786', 'Ethinyl Estradiol', '2b8b5145-77ad-4817-8f9e-77fd7938242e', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1742, 'Ethinyl Estradiol/Ethynodiol (Oral Pill)', '1549786', 'Ethinyl Estradiol', 'ae3c20e4-8850-4559-9ca3-06a98b3dabab', to_date('10/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1743, 'Ethinyl Estradiol/Levonorgestrel (Oral Pill)', '1549786', 'Ethinyl Estradiol', '709031e4-4c20-4ea7-beff-6c459709a433', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1744, 'Ethinyl Estradiol/Norethindrone (Chewable)', '1549786', 'Ethinyl Estradiol', '51267e7f-2ff6-482d-bb68-04f75a6999d9', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1745, 'Ethinyl Estradiol/Norethindrone (Oral Pill)', '1549786', 'Ethinyl Estradiol', '0beef9d3-8326-48cf-b89a-fa794902c6c1', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1746, 'Ethinyl Estradiol/Norgestimate (Oral Pill)', '1549786', 'Ethinyl Estradiol', '7841b848-ba6b-41b8-8c32-fde3eda6e8e6', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1747, 'Ethinyl Estradiol/Norgestrel (Oral Pill)', '1549786', 'Ethinyl Estradiol', 'aa7f4a83-71cf-4306-b0a1-01784f67bae2', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1748, 'Ethosuximide (Oral Liquid)', '750119', 'Ethosuximide', '8a5cc930-0b36-48a8-9ad0-de633b208742', to_date('3/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1749, 'Ethosuximide (Oral Pill)', '750119', 'Ethosuximide', 'cb5577e2-e906-438f-b13d-e55709a0e7fd', to_date('6/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1750, 'Etidronate (Oral Pill)', '1552929', 'Etidronate', 'fa07734d-b381-4f33-a555-53b6614f4b08', to_date('4/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1751, 'Etodolac (Oral Pill)', '1195492', 'Etodolac', '4d682f98-1e8a-4c2b-6df3-169d2ed10dc1', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1752, 'ETOPOFOS (Injectable)', '1350504', 'Etoposide', 'e28c05f0-081f-406d-8bfb-9160a6908307', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1753, 'Etoposide (Injectable)', '1350504', 'Etoposide', '4f850eb2-3542-43a0-90e8-bb37fa05cf15', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1754, 'Etoposide (Oral Pill)', '1350504', 'Etoposide', '508a418e-985f-4208-9324-2230655bb5c2', to_date('7/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1755, 'Etravirine (Oral Pill)', '1758536', 'etravirine', '73667241-b95a-49b0-9c51-a4289f20d5c2', to_date('3/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1756, 'Eucalyptol/Menthol/Methyl salicylate/Thymol (Mouthwash)', '19050346', 'Eucalyptol', '0c3ee0f2-6637-42fd-9f72-01ec4de3c7ba', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1757, 'EURAX (Topical)', '969276', 'crotamiton', '56465446-7f78-4ad1-acb3-08a4d60e5715', to_date('2/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1758, 'European house dust mite extract/White oak pollen extract (Injectable)', '40242103', 'European house dust mite extract', '3bfb5be4-542a-4b86-beac-688a07fc830c', to_date('10/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1759, 'European olive pollen extract (Injectable)', '40161710', 'european olive pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1760, 'EVAMIST (Topical)', '1548195', 'Estradiol', 'd8c4a929-c039-4c7d-a3bc-986ae31fc8a6', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1761, 'EVOCLIN (Topical)', '997881', 'Clindamycin', 'daa3d9d1-c906-41f3-83a2-c47f2283da48', to_date('10/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1762, 'EVOXAC (Oral Pill)', '954819', 'cevimeline', 'bf6bebde-81ef-4a49-bd8b-2b7444f7adbf', to_date('3/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1763, 'EX-LAX MAXIMUM RELIEF FORMULA (Oral Pill)', '938268', '"sennosides, USP"', '800366b2-e974-4791-9a0d-c341c80ac859', to_date('3/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1764, 'EXAPRIN (Oral Pill)', '1125315', 'Acetaminophen', '9fe82229-cc3e-4d79-a448-014fe3d0055b', to_date('11/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1765, 'EXCEDRIN (Oral Pill)', '1125315', 'Acetaminophen', '58375804-3c14-4af9-805b-68458e2fed8c', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1766, 'EXCEDRIN BACK & BODY (Oral Pill)', '1125315', 'Acetaminophen', '4b77be54-e962-4e6b-a244-e3d53a8fecd9', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1767, 'EXCEDRIN PM (Oral Pill)', '1125315', 'Acetaminophen', '375ba5bf-16c1-4912-9aa1-a8e7196aed31', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1768, 'EXCEDRIN PM TRIPLE ACTION (Oral Pill)', '1125315', 'Acetaminophen', 'b3812d27-40af-40d7-864a-dfa4ae34cb9e', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1769, 'EXCEDRIN TENSION HEADACHE (Oral Pill)', '1125315', 'Acetaminophen', 'cc17ee50-1401-4b31-8c01-e153b4291c7a', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1770, 'EXELDERM (Topical)', '940535', 'sulconazole', '9b963f0d-b041-43be-9434-7161eab49adb', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1771, 'Exemestane (Oral Pill)', '1398399', 'exemestane', '61d86c55-9946-273f-4f22-42d3fc33d143', to_date('8/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1772, 'EXFORGE (Oral Pill)', '1332418', 'Amlodipine', '15ba7c1c-dd10-4d09-b6e2-284c1b67f4da', to_date('1/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1773, 'EXFORGE HCT (Oral Pill)', '1332418', 'Amlodipine', '782bcaf4-0aa4-4527-b36f-d350ceb95637', to_date('4/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1774, 'EXPAREL (Injectable)', '40244151', 'Bupivacaine liposome', 'bb5a9e59-0f51-11df-8a39-0800200c9a66', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1775, 'EXUBERA (Inhalant)', '1588986', '"insulin human, rDNA origin"', '4e25a881-dfc3-44a2-9ede-49f7443776d8', to_date('4/18/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1776, 'EYE STREAM (Ophthalmic)', '19010309', 'Water', 'ff9560df-d834-57a8-37b0-3f10e82f5a5d', to_date('9/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1777, 'EZ-OX (Inhalant)', '19025274', 'Oxygen', 'cc02c6b7-c397-4929-9322-bef702c9255c', to_date('2/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1778, 'Ezetimibe (Oral Pill)', '1526475', 'ezetimibe', 'cb18564f-663f-4da2-9dd9-700ea9bdd398', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1779, 'Ezetimibe/Simvastatin (Oral Pill)', '1526475', 'ezetimibe', '65e1c3ae-a462-4345-8a28-c7d2c0388af8', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1780, 'Factor VIII (b-domain deleted recombinant) FC fusion protein (Injectable)', '45776421', 'factor VIII (b-domain deleted recombinant) FC fusion protein', 'bec39fa0-1524-4e6b-897f-db0ef093085e', to_date('7/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1781, 'Factor VIII (Injectable)', '1352213', 'Factor VIII', '80fa03d2-cd4c-4155-9b57-1396c4fa42da', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1782, 'Factor XIII (Injectable)', '19106100', 'factor XIII', '8664978e-1814-4930-aca5-97a24455f6df', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1783, 'FALLBACK SOLO (Oral Pill)', '1589505', 'Levonorgestrel', '38c26cb9-052e-426f-9916-c13e7a5e62d0', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1784, 'False ragweed pollen extract (Injectable)', '40161714', 'false ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1785, 'Famciclovir (Oral Pill)', '1703603', 'famciclovir', 'eeeee9c4-8566-4100-8ca4-3df936a3365d', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1786, 'Famotidine (Injectable)', '953076', 'Famotidine', 'e3b13e23-122b-4bd4-95cf-b5a14b7afc05', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1787, 'Famotidine (Oral Disintegrating)', '953076', 'Famotidine', 'adb54fe50fcc4a01afc64aa3d3db45bb', to_date('12/1/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1788, 'Famotidine (Oral Liquid)', '953076', 'Famotidine', 'a8010e10-68fd-455f-968f-d62a1c3e0ffd', to_date('1/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1789, 'Famotidine (Oral Pill)', '953076', 'Famotidine', '387088a6-8eaa-fc49-8050-a546d0f0fd32', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1790, 'Famotidine/Ibuprofen (Oral Pill)', '953076', 'Famotidine', '558b9f26-37b2-423b-932d-25a37afe57ec', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1791, 'FANAPT (Oral Pill)', '19017241', 'iloperidone', '43452bf8-76e7-47a9-a5d8-41fe84d061f0', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1792, 'FARESTON (Oral Pill)', '1342346', 'Toremifene', '2cab8dd1-3a10-48e6-86ce-0e5275ed49e5', to_date('11/29/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1793, 'FARXIGA (Oral Pill)', '44785829', 'dapagliflozin', 'fc6ae30e-868b-4ac9-b69d-900922503998', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1794, 'FASPRIN (Oral Disintegrating)', '1112807', 'Aspirin', '73859ea9-01a0-4c3d-97d4-17b9d3378899', to_date('12/1/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1795, 'FAST FREEZE (Topical)', '938205', 'Camphor', '60c94da8-6c00-4544-a9a6-a3e87ebabd68', to_date('11/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1796, 'Febuxostat (Oral Pill)', '19017742', 'febuxostat', 'ae1e0d8a-03fc-419b-9d44-afa68fbd5681', to_date('1/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1797, 'Felbamate (Oral Liquid)', '795661', 'felbamate', '2e325d79-d0a4-4af7-b09b-96ee5a5b2a37', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1798, 'Felbamate (Oral Pill)', '795661', 'felbamate', 'ce919497-c2f3-4362-bfb7-cf4e82e10a5c', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1799, 'FELBATOL (Oral Liquid)', '795661', 'felbamate', '2f522701-397a-11de-8a39-0800200c9a66', to_date('11/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1800, 'FELBATOL (Oral Pill)', '795661', 'felbamate', '2f522701-397a-11de-8a39-0800200c9a66', to_date('11/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1801, 'FELDENE (Oral Pill)', '1146810', 'Piroxicam', '9d3e528b-a748-4bc5-b604-e7e9c5ab9183', to_date('12/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1802, 'FEM PH (Vaginal)', '929549', 'Acetic Acid', '77237c50-aeb5-44a0-a1e6-ce1551b49f75', to_date('5/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1803, 'Fenofibrate (Oral Pill)', '1551803', 'Fenofibrate', '194cd14a-d952-4507-91be-3f1d5371d3b8', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1804, 'FENOGLIDE (Oral Pill)', '1551803', 'Fenofibrate', '35e89d4e-45cf-4374-bf93-fca8d40d783b', to_date('11/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1805, 'Fenoprofen (Oral Pill)', '1153928', 'Fenoprofen', 'ef59e72f-6218-4f42-8f00-d10a6a14223a', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1806, 'fentaNYL (Buccal)', '1154029', 'Fentanyl', 'ad7ac196-4c6e-4aab-8742-bdb9f38f4be6', to_date('1/24/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1807, 'fentaNYL (Injectable)', '1154029', 'Fentanyl', '73cede3f-aff0-40b8-8a58-f5fc269d1b8d', to_date('8/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1808, 'fentaNYL (Oral Lozenge)', '1154029', 'Fentanyl', '8c3a8b2e-3ec2-4fad-bb9f-838822d97e6f', to_date('4/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1809, 'fentaNYL (Sublingual)', '1154029', 'Fentanyl', 'f969e2bc-6297-4e29-89d3-a3685a2c7c6b', to_date('1/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1810, 'FERRALET 90 (Oral Pill)', '19011773', 'Ascorbic Acid', '2c9fd33d-4b38-42be-ad36-b1521ded47e1', to_date('5/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1811, 'Ferric carboxymaltose (Injectable)', '43560392', 'ferric carboxymaltose', '517b4a19-45b3-4286-9f6a-ced4e10447de', to_date('8/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1812, 'Ferric citrate (Oral Pill)', '45776202', 'ferric citrate', 'aadd18e0-3752-11e4-8510-0800200c9a66', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1813, '"Ferric oxide, saccharated (Injectable)"', '1395773', '"ferric oxide, saccharated"', 'f1ab1a22-2b99-4d27-8b5a-9c3bcd5e3040', to_date('1/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1814, 'Ferric subsulfate solution (Topical)', '19095786', 'ferric subsulfate solution', 'e93bce8b-de3b-4477-be41-d361e68849c6', to_date('11/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1815, 'FERRIPROX (Oral Pill)', '19011091', 'deferiprone', 'dc8cbc3d-026c-0db5-42e8-8e93d374dd23', to_date('4/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1816, 'FERRLECIT (Injectable)', '1399177', 'Sodium ferric gluconate complex', 'b25b34ab-9cf1-4a2b-bdf2-5eaf66625999', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1817, 'Ferrous fumarate (Chewable)', '1595799', 'Ferrous fumarate', '5bdeee62-962f-4466-a1f4-ba0713d45478', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1818, 'Ferrous fumarate (Oral Pill)', '1595799', 'Ferrous fumarate', '4cafa90a-9903-40d0-b8be-6ad78018b4b6', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1819, 'Ferrous fumarate/Folic Acid (Oral Pill)', '1595799', 'Ferrous fumarate', '30138a3b-2759-48ee-afac-70eb294292f7', to_date('10/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1820, 'Ferrous gluconate (Oral Pill)', '1396012', 'ferrous gluconate', '304fdee6-0290-4717-be3d-b367bec7e411', to_date('9/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1821, 'Ferrous sulfate (Oral Liquid)', '1396131', 'ferrous sulfate', 'a017eb78-8c70-4b59-b7c0-22ec6945c1a1', to_date('8/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1822, 'Ferrous sulfate (Oral Pill)', '1396131', 'ferrous sulfate', '91ff2cb4-1fb9-4125-9435-c9d008161203', to_date('11/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1823, 'FEVERALL (Rectal)', '1125315', 'Acetaminophen', '3ade895b-5dca-4d81-9415-8091923162ff', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1824, 'FEXMID (Oral Pill)', '778711', 'cyclobenzaprine', '615f1e2f-63ec-4e20-bb74-293b5baf1d43', to_date('10/24/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1825, 'Fexofenadine (Oral Disintegrating)', '1153428', 'fexofenadine', '06115cea-5a44-409d-85ed-bb71743491c1', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1826, 'Fexofenadine (Oral Liquid)', '1153428', 'fexofenadine', 'c5f2ac86-b6be-486d-b1d3-7704f56c3245', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1827, 'Fexofenadine (Oral Pill)', '1153428', 'fexofenadine', 'd1d8d0ec-2bdd-fb07-a051-d6353e3c240c', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1828, 'FIBER TAB (Oral Pill)', '940426', 'calcium polycarbophil', 'bee100da-b9c9-4261-b6e6-7b3db5715625', to_date('9/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1829, 'FIBERCON (Oral Pill)', '940426', 'calcium polycarbophil', '80e507f2-d9bd-bc7b-2249-f5bfc8ac1845', to_date('2/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1830, 'FIBRICOR (Oral Pill)', '1551803', 'Fenofibrate', 'b3149443-4baf-429b-a751-4a34a27f0249', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1831, 'Fibrinogen concentrate (human) (Injectable)', '19044986', 'fibrinogen concentrate (human)', '903dc8d0-39da-462c-9dac-004e0c7a26cc', to_date('2/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1832, 'Fibrinogen/Thrombin (Transdermal)', '19054702', 'Fibrinogen', '5918e503-b457-48ab-b68b-243e29651d06', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1833, 'Fidaxomicin (Oral Pill)', '40239985', 'fidaxomicin', 'dd966338-c820-4270-b704-09ef75fa3ceb', to_date('5/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1834, 'FINACEA (Topical)', '986790', 'Azelate', '6c5e836c-2851-4524-b91d-12ffadffd9ba', to_date('5/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1835, 'Finasteride (Oral Pill)', '996416', 'Finasteride', 'c59f8018-fff8-4884-a3c8-bc306e2c8f64', to_date('8/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1836, 'FIORICET (Oral Pill)', '1125315', 'Acetaminophen', '5d248332-87ff-45c2-be92-e9e8386a4749', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1837, 'FIORICET WITH CODEINE (Oral Pill)', '1125315', 'Acetaminophen', 'df9801fc-03fe-41da-a6b3-0f76788217c9', to_date('12/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1838, 'FIORINAL (Oral Pill)', '1112807', 'Aspirin', 'a00c6776-e9ef-411b-9396-915c3787559a', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1839, 'FLANAX ANTACID (Oral Liquid)', '985247', 'Aluminum Hydroxide', '8d2e51f6-4b70-4b3d-856b-072fc5af2f72', to_date('10/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1840, 'flavoxATE (Oral Pill)', '954853', 'Flavoxate', '22a99f74-2718-48b3-b686-caf102d3071c', to_date('10/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1841, 'Flecainide (Oral Pill)', '1354860', 'Flecainide', 'b764c8b8-7e23-4016-830f-68312d84f3d3', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1842, 'FLEET ENEMA (Rectal)', '991710', '"Sodium Phosphate, Dibasic"', '0a201d6d-0e45-43ca-8e09-e8b0e10ed2f4', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1843, 'FLEET GLYCERIN SUPPOSITORIES ADULT (Rectal)', '961145', 'Glycerin', '28ebc9ae-0ffa-4bc7-859d-e084505917cf', to_date('11/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1844, 'FLEET MINERAL OIL (Rectal)', '908523', 'Mineral Oil', '2528cb5e-437e-41f0-9c34-e9ce57404d8b', to_date('2/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1845, 'FLEET SOF-LAX (Oral Pill)', '941258', 'Docusate', 'be5f87ac-044f-4b38-95c2-140bb60e1ba0', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1846, 'FLEXALL (Topical)', '901656', 'Menthol', '9361fcaa-ccf8-43ec-9c1e-2294377d19db', to_date('6/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1847, 'FLEXBUMIN (Injectable)', '1344143', '"Albumin Human, USP"', '98b96ee2-86d2-4056-bdda-4d75d72d891f', to_date('10/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1848, 'FLO-PRED (Oral Liquid)', '1550557', 'prednisolone', '980b3c11-a502-4235-bbff-af83a17ebcdf', to_date('1/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1849, 'FLOMAX (Oral Pill)', '924566', 'tamsulosin', '0bef87bd-42fc-428f-b683-e0538b78f8d0', to_date('3/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1850, 'Fluconazole (Injectable)', '1754994', 'Fluconazole', 'd3ca59bd-ae00-48ab-89aa-87c7f56e9989', to_date('6/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1851, 'Fluconazole (Oral Liquid)', '1754994', 'Fluconazole', '29bd0efa-fb16-4e69-bb96-8f6bcf80b9f7', to_date('1/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1852, 'Fluconazole (Oral Pill)', '1754994', 'Fluconazole', '82af879c-9ecf-4f9a-b00f-779ab4104a2f', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1853, 'Flucytosine (Oral Pill)', '1755112', 'Flucytosine', '58189ec7-118b-458a-8e4f-7867a97cfcbd', to_date('11/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1854, 'Fludarabine (Injectable)', '1395557', 'fludarabine', '763d6c6d-cfed-4813-8cc5-41e78d357845', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1855, 'Fludrocortisone (Oral Pill)', '1555120', 'Fludrocortisone', 'bf927cd9-1891-4de4-b4be-743a26363a64', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1856, 'FLUMADINE (Oral Liquid)', '1763339', 'Rimantadine', '9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', to_date('7/19/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1857, 'FLUMADINE (Oral Pill)', '1763339', 'Rimantadine', '9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', to_date('11/29/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1858, 'Flumazenil (Injectable)', '19055153', 'Flumazenil', 'e6237019-490f-4162-bfe0-6e2d08c0a1be', to_date('8/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1859, 'Fluocinolone (Implant)', '996541', 'fluocinolone', '4400e471-7402-11df-93f2-0800200c9a66', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1860, 'Fluocinolone (Otic)', '996541', 'fluocinolone', 'd2ffb64b-1614-4e2f-8125-9660ea3754f2', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1861, 'Fluocinolone (Shampoo)', '996541', 'fluocinolone', 'a52763d0-7024-48a8-9cca-3127333dfb01', to_date('11/2/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1862, 'Fluocinolone (Topical)', '996541', 'fluocinolone', '8d55d846-c833-4040-b02d-ac7783311dd6', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1863, 'Fluocinolone/Hydroquinone/Tretinoin (Topical)', '996541', 'fluocinolone', 'a35fa709-5eb5-4429-b38f-f1e0019bf0ee', to_date('4/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1864, 'Fluocinolone/Neomycin (Topical)', '996541', 'fluocinolone', 'e96ae9cf-e829-466f-b66d-ede83b4d8b3d', to_date('7/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1865, 'Fluocinonide (Topical)', '955252', 'Fluocinonide', 'edb61362-d48f-487a-b15f-5ea3089d2f30', to_date('6/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1866, 'FLUOR A DAY (Oral Liquid)', '19069022', 'Sodium Fluoride', '4c854364-e732-4dec-b1d1-b8a97e4e1176', to_date('8/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1867, 'FLUOR A DAY CHEWABLE (Chewable)', '19069022', 'Sodium Fluoride', '4c854364-e732-4dec-b1d1-b8a97e4e1176', to_date('8/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1868, 'FLUOR-OP (Ophthalmic)', '955583', 'Fluorometholone', '545776fe-63df-44ab-ace3-f3d73d2e0092', to_date('8/7/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1869, 'Fluorescein/Proparacaine (Ophthalmic)', '996625', 'Fluorescein', 'dae037ad-dcb8-42e6-8996-e575922d7631', to_date('1/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1870, 'FLUORIDEX (Toothpaste)', '19069022', 'Sodium Fluoride', 'd05f94c8-3020-4f7c-877a-d64d6841a122', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1871, 'FLUORIDEX DAILY DEFENSE SENSITIVITY (Toothpaste)', '927322', 'potassium nitrate', 'fed4c40e-e9ce-4e99-8223-325af383eaa8', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1872, 'FLUORITAB (Chewable)', '19069022', 'Sodium Fluoride', 'cd18915a-0b63-4fed-aebe-0c2fe60d8505', to_date('10/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1873, 'Fluorometholone (Ophthalmic)', '955583', 'Fluorometholone', 'b810b4c3-ac7a-4ba5-85bf-ebfaf3b1dabf', to_date('2/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1874, 'Fluorometholone/Tobramycin (Ophthalmic)', '955583', 'Fluorometholone', 'cbdf11f4-d84c-4c4a-aac2-f8c23304fb02', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1875, 'FLUOROPLEX (Topical)', '955632', 'Fluorouracil', '258bb79a-56b3-4f46-ade6-7331ec031074', to_date('11/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1876, 'Fluorouracil (Injectable)', '955632', 'Fluorouracil', 'beb8c6c5-4b6e-4770-b6d4-718e33c7a2ff', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1877, 'Fluorouracil (Topical)', '955632', 'Fluorouracil', '58fa81e2-9dbc-4cef-82d4-e5dc4aec5b26', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1878, 'FLUoxetine (Oral Liquid)', '755695', 'Fluoxetine', '142f9b27-65a7-4add-bdcc-2468695fedff', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1879, 'FLUoxetine (Oral Pill)', '755695', 'Fluoxetine', '23899405-007b-48d9-82a9-a530b8e90784', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1880, 'FLUoxetine/OLANZapine (Oral Pill)', '755695', 'Fluoxetine', '2f6ceda3-3edc-4427-98a6-23e3c930c44d', to_date('3/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1881, 'Fluoxymesterone (Oral Pill)', '1555887', 'Fluoxymesterone', '5328c194-5650-4d1f-9e28-8cea038cce81', to_date('10/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1882, 'fluPHENAZine (Injectable)', '756018', 'Fluphenazine', '2a8ef5f7-c806-470d-96ff-3b3827dc8938', to_date('12/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1883, 'fluPHENAZine (Oral Liquid)', '756018', 'Fluphenazine', '0860b3f3-3116-40f8-bcb0-e5c47731bdc8', to_date('12/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1884, 'fluPHENAZine (Oral Pill)', '756018', 'Fluphenazine', '33bffb02-f1cc-4554-a3b7-9f2291feb4ac', to_date('9/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1885, 'FLURA-DROPS (Oral Liquid)', '19069022', 'Sodium Fluoride', 'ddb4c0d6-6739-2a4b-8a90-1c8aec94f4ab', to_date('5/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1886, 'Flurandrenolide (Topical)', '956266', 'Flurandrenolide', 'a0949773-c75f-4ef0-a69c-1abd978340d0', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1887, 'Flurazepam (Oral Pill)', '756349', 'Flurazepam', '2f2db2f5-49d3-4d47-a08a-628df49d2120', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1888, 'Flurbiprofen (Ophthalmic)', '1156378', 'Flurbiprofen', '5a4d5684-b20a-4fde-a808-404c7b9d25b3', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1889, 'Flurbiprofen (Oral Pill)', '1156378', 'Flurbiprofen', 'c9449292-e81e-486a-84e1-bb9dd0f612c5', to_date('6/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1890, 'Flutamide (Oral Pill)', '1356461', 'Flutamide', 'bae781d4-7101-4008-9af2-6e76b5e1c408', to_date('9/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1891, 'Fluticasone (Topical)', '1149380', 'fluticasone', '0e20d1cc-5c7a-4e0d-810b-b94c4d6dd1c0', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1892, 'Fluvastatin (Oral Pill)', '1549686', 'fluvastatin', 'e38126a5-9d6a-422f-812c-a01610108162', to_date('8/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1893, 'fluvoxaMINE (Oral Pill)', '751412', 'Fluvoxamine', '727a5eb4-ac82-444d-8381-44c34ee3b895', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1894, 'FLUXID (Oral Disintegrating)', '953076', 'Famotidine', 'adb54fe50fcc4a01afc64aa3d3db45bb', to_date('12/1/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1895, 'FML (Ophthalmic)', '955583', 'Fluorometholone', 'c374d65a-35b5-4c9e-9069-5148875dc4df', to_date('2/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1896, 'FML FORTE LIQUIFILM (Ophthalmic)', '955583', 'Fluorometholone', 'b810b4c3-ac7a-4ba5-85bf-ebfaf3b1dabf', to_date('2/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1897, 'FML-S (Ophthalmic)', '955583', 'Fluorometholone', '9d71d7fd-2b25-4163-922f-018ed8c5171f', to_date('2/23/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1898, 'FOILLE (Topical)', '917006', 'Benzocaine', 'e2eca808-e97b-43e0-aa51-7025cc61c7a8', to_date('3/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1899, 'FOLBIC (Oral Pill)', '19111620', 'Folic Acid', '99121923-2b2d-427a-865a-e8b7dd052569', to_date('12/13/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1900, 'FOLCAPS (Oral Pill)', '19111620', 'Folic Acid', '47d368ab-5165-4ce3-b993-f5d72bb5b238', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1901, 'Folic Acid (Injectable)', '19111620', 'Folic Acid', 'e215318c-4f8b-4711-ae76-f370d1da0f3b', to_date('9/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1902, 'Folic Acid (Oral Pill)', '19111620', 'Folic Acid', 'f2c543b3-1b17-4072-8b86-ddecaf3445d6', to_date('6/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1903, 'Folic Acid/Heme iron polypeptide/Polysaccharide iron complex/Vitamin B 12 (Oral Pill)', '19111620', 'Folic Acid', 'a7c1400a-d230-45db-afff-d5f70b091ee9', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1904, 'Folic Acid/Polysaccharide iron complex/Vitamin B 12 (Oral Pill)', '19111620', 'Folic Acid', 'ed2308e3-5310-41bd-9333-615c26183493', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1905, 'Folic Acid/Vitamin B 12/Vitamin B6 (Oral Pill)', '19111620', 'Folic Acid', '8751d1f4-7ed7-40ce-bc4d-bde94d96a859', to_date('2/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1906, 'Follitropin Alfa (Injectable)', '1542948', 'Follitropin Alfa', 'ae85b9c3-e7eb-4981-a5d9-346050e8f189', to_date('5/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1907, 'FOLTABS (Oral Pill)', '19111620', 'Folic Acid', 'a0c87255-6105-4ae6-a698-dae0115265ab', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1908, 'Fomepizole (Injectable)', '19022479', 'fomepizole', 'a306cd11-9acf-45f1-91ec-9fef2b08fdb1', to_date('8/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1909, 'FORADIL (Inhalant)', '1196677', 'formoterol', '04212000-ec03-42a3-8b9e-3a28237f415e', to_date('3/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1910, 'FORANE (Inhalant)', '782043', 'Isoflurane', '3d30eb8d-a62e-475f-926b-78ba63bee9c8', to_date('12/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1911, 'FORMA-RAY (Topical)', '1756524', 'Formaldehyde', '74a85045-d668-4c98-8302-099a063cca3a', to_date('10/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1912, 'FORMADON (Topical)', '1756524', 'Formaldehyde', '36b221c6-4318-4e2a-8cd0-d5558b04cdc6', to_date('10/7/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1913, 'Formaldehyde (Topical)', '1756524', 'Formaldehyde', '74a85045-d668-4c98-8302-099a063cca3a', to_date('10/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1914, 'Formoterol (Inhalant)', '1196677', 'formoterol', '04212000-ec03-42a3-8b9e-3a28237f415e', to_date('3/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1915, 'FORTICAL (Nasal)', '1537655', 'salmon calcitonin', 'e662c321-8c1b-4829-b4c9-459284f654c3', to_date('9/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1916, 'FOSAMAX (Oral Pill)', '1557272', 'Alendronate', 'e6ffadda-2ace-4e99-8bb4-75631c54f39b', to_date('3/10/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1917, 'FOSAMAX PLUS D (Oral Pill)', '1557272', 'Alendronate', 'd4a71df1-7488-46a2-8ded-dd0db56de618', to_date('12/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1918, 'Fosamprenavir (Oral Pill)', '1736829', 'fosamprenavir', '009575f9-74e8-4a6d-9fa6-3cae72fd01c3', to_date('5/26/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1919, 'Foscarnet (Injectable)', '1724700', 'Foscarnet', 'a09299d5-9c55-4cef-aed0-3a6a45532289', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1920, 'FOSCAVIR (Injectable)', '1724700', 'Foscarnet', '90e3da4e-3b1f-428b-99ca-e4bed1c80028', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1921, 'Fosinopril (Oral Pill)', '1363749', 'Fosinopril', 'cfd96e4b-fcf1-4959-aaf4-7aabe0d80ab5', to_date('7/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1922, 'Fosinopril/Hydrochlorothiazide (Oral Pill)', '1363749', 'Fosinopril', '7f60424f-b90c-459c-ae53-b732ee3d67b5', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1923, 'FOSRENOL (Chewable)', '990028', 'lanthanum carbonate', '21bc55ec-5f23-4d0b-9488-d5b08b7c0fc2', to_date('4/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1924, 'FRAGMIN (Injectable)', '1301065', 'Dalteparin', '23527b8b-9b28-4e6d-9751-33b143975ac7', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1925, 'FRESHKOTE (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '6397ebc5-0670-4dc0-8660-6c0f733e6fd1', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1926, 'FROVA (Oral Pill)', '1189458', 'frovatriptan', '8ce8bf0a-8b21-41a5-bbea-71302312c2c5', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1927, 'Frovatriptan (Oral Pill)', '1189458', 'frovatriptan', '35941e47-106d-414d-9529-0a56af7396d5', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1928, 'Fructose/Glucose/Phosphoric acid (Oral Liquid)', '956691', 'Fructose', '24d87e9b-58d5-4753-a123-6e1a5336e4ed', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1929, 'Fructose/Glucose/Sodium citrate (Oral Liquid)', '956691', 'Fructose', '728376f5-6cab-404e-b519-f6c595291d6f', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1930, 'FUNGI-NAIL (Topical)', '914244', 'Undecylenate', 'bc737ee2-0651-4f02-8157-bbed81507c35', to_date('4/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1931, 'FUNGICURE MAXIMUM STRENGTH (Topical)', '914244', 'Undecylenate', '0eca7b88-8c23-4fff-a07b-7f850832ff10', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1932, 'FUNGOID (Topical)', '907879', 'Miconazole', '250d0a66-01d1-4aba-8f24-4cb4ca529fda', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1933, 'Furosemide (Injectable)', '956874', 'Furosemide', '71b48f4d-9936-448c-9e3a-33f1182e1039', to_date('7/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1934, 'Furosemide (Oral Liquid)', '956874', 'Furosemide', '9ca6640e-dbfb-4bcd-bf3e-c8c68b7d41a1', to_date('4/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1935, 'Furosemide (Oral Pill)', '956874', 'Furosemide', 'ea5805d3-400b-4978-b27d-bd2b5b1cb636', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1936, 'Fusarium oxysporum vasinfectum extract (Injectable)', '40167646', 'Fusarium oxysporum vasinfectum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1937, 'G-ZYNCOF (Oral Liquid)', '1119510', 'Dextromethorphan', 'c1aa7060-0f32-4ea1-8e2e-1aa131bd55fc', to_date('12/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1938, 'Gabapentin (Oral Liquid)', '797399', 'gabapentin', '3255245c-6ae6-46ab-a1c1-0b8d4d4cdaa2', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1939, 'Gabapentin (Oral Pill)', '797399', 'gabapentin', '9508cb1b-3f9f-48bd-8f34-a6fbb68c9a4a', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1940, 'GABITRIL (Oral Pill)', '715458', 'tiagabine', '175f2d9f-449b-4d95-a4b9-94f891f8e3ae', to_date('8/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1941, 'Galantamine (Oral Liquid)', '757627', 'Galantamine', 'd5b0e225-e94d-4324-afb2-b6e51c949dd0', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1942, 'Galantamine (Oral Pill)', '757627', 'Galantamine', '7dc963dd-84d6-45f3-857f-46a44fe9edc8', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1943, 'Gallium nitrate (Injectable)', '19097605', 'gallium nitrate', '8bc2ddf8-d695-46b3-bf76-9f85ce6027e3', to_date('3/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1944, 'GALZIN (Oral Pill)', '979096', 'Zinc Acetate', 'a0c72bff-20f3-4241-b966-34a95178d1a3', to_date('6/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1945, 'Gamma-Aminobutyrate/Melatonin/Valerian root extract (Oral Pill)', '19123846', 'gamma-Aminobutyrate', 'b450210c-516d-4068-b792-8bed31b26e32', to_date('12/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1946, 'GAMMAGARD (Injectable)', '19117912', 'Immunoglobulin G', '9d42adca-0dd7-4df7-864d-5a7feee52130', to_date('3/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1947, 'Ganciclovir (Injectable)', '1757803', 'Ganciclovir', '35addab5-09db-4f8a-9c69-6fbce33ecc37', to_date('4/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1948, 'Ganciclovir (Oral Pill)', '1757803', 'Ganciclovir', '3406db8a-5ae9-4120-94bd-036701adbeca', to_date('7/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1949, 'GANITE (Injectable)', '19097605', 'gallium nitrate', '8bc2ddf8-d695-46b3-bf76-9f85ce6027e3', to_date('3/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1950, 'GARAMYCIN (Ophthalmic)', '919345', 'Gentamicin Sulfate (USP)', 'aa2b006d-f67c-4c71-abce-55d55295b5bb', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1951, 'Garrys oak pollen extract (Injectable)', '40172997', 'Garrys oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1952, 'GAS-X (Chewable)', '966991', 'Simethicone', 'c70b8a69-f853-4981-aff5-389aa58f7169', to_date('6/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1953, 'GAS-X (Oral Pill)', '966991', 'Simethicone', 'ee9a8404-0653-433f-90e5-7ac69bdab8df', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1954, 'GAS-X EXTRA STRENGTH (Oral Pill)', '966991', 'Simethicone', '980362cf-1d15-4286-8ab8-bfeac7d34f4a', to_date('12/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1955, 'GASTROCROM (Oral Liquid)', '1152631', 'Cromolyn', '00623958-a8fe-47d1-a0d2-0aa4e2f7966e', to_date('6/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1956, 'Gatifloxacin (Ophthalmic)', '1789276', 'gatifloxacin', '3dd6ac6b-877a-46c7-bbc8-c7119f341abe', to_date('4/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1957, 'GATTEX (Injectable)', '43013171', 'teduglutide', '66b69c1e-b25c-44d3-b5ff-1c1de9a516fa', to_date('1/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1958, 'GAVILAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '19672e23-1606-497e-a112-939af33af195', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1959, 'GAVILYTE-N (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '27195187-75a3-431f-90d9-84da1b94e849', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1960, 'GAVISCON (Chewable)', '985247', 'Aluminum Hydroxide', '7f367927-c366-465c-a059-e2cfb337d562', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1961, 'GAVISCON (Oral Liquid)', '985247', 'Aluminum Hydroxide', '2d74e5bc-1f10-4fb6-9258-cd906e360013', to_date('8/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1962, 'GAVISCON CHEWABLE (Chewable)', '985247', 'Aluminum Hydroxide', '7f367927-c366-465c-a059-e2cfb337d562', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1963, 'Gefitinib (Oral Pill)', '1319193', 'gefitinib', '827d60e8-7e07-41b7-c28b-49ef1c4a5a41', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1964, 'GEL-KAM (Oral Gel)', '1036094', 'Stannous Fluoride', '8c2c3c5c-ddef-4a4d-8bc3-5a98c577e74c', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1965, 'GELATO PERIO RINSE (Mouthwash)', '1036094', 'Stannous Fluoride', 'f8721665-b304-4b1c-9bda-385d7671d099', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1966, 'GELATO SODIUM FLUORIDE (Oral Foam)', '19069022', 'Sodium Fluoride', 'bcf97201-341a-4aa5-9aa8-1d73bb55b881', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1967, 'GELATO SODIUM FLUORIDE (Oral Gel)', '19069022', 'Sodium Fluoride', 'a857af18-8eb8-47dc-bb26-73a321ed643c', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1968, 'GELATO SODIUM FLUORIDE (Toothpaste)', '19069022', 'Sodium Fluoride', '8b267c4d-4d07-421a-85c6-0451012d7dae', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1969, 'GELNIQUE (Topical)', '918906', 'oxybutynin', 'c6754623-b14c-4fc3-8719-48eee3119156', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1970, 'Gemcitabine (Injectable)', '1314924', 'gemcitabine', '6004fba9-49c0-4781-8134-44bf7cf196fd', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1971, 'Gemfibrozil (Oral Pill)', '1558242', 'Gemfibrozil', '22ea8379-50aa-4550-98f0-708d6da97e79', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1972, 'GENERLAC (Oral Liquid)', '987245', 'Lactulose', '2a2eee86-273e-4718-8f78-34f15e193040', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1973, 'GENTAK (Ophthalmic)', '919345', 'Gentamicin Sulfate (USP)', 'a357d23d-1f10-44ce-a2fa-a6a5e03e7739', to_date('7/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1974, 'Gentamicin Sulfate (USP) (Injectable)', '919345', 'Gentamicin Sulfate (USP)', '1bf429e3-6e0c-4244-ba1a-af1a3a153c24', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1975, 'Gentamicin Sulfate (USP) (Ophthalmic)', '919345', 'Gentamicin Sulfate (USP)', 'c5fac820-18a1-452f-bc2c-58ed73babb0c', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1976, 'Gentamicin Sulfate (USP) (Topical)', '919345', 'Gentamicin Sulfate (USP)', '4cfbe37e-11d6-46fc-b287-0561387b17b7', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1977, 'GENTEAL (Ophthalmic)', '902251', 'hypromellose', '3c4ea323-2407-4f9d-b44f-eebf127924ba', to_date('10/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1978, 'GENTEAL GEL DROPS (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'c9dcab71-3ec8-45ff-83f0-132c6c6e63bd', to_date('10/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1979, 'Gentian Violet (Topical)', '959362', 'Gentian Violet', '7b4e6572-cb44-491d-8063-f7519307a8e5', to_date('3/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1980, 'GENTLELAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '0d820dcc-440a-4036-86e9-fdb30cac9573', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1981, 'GEOCILLIN (Oral Pill)', '1740546', 'Carbenicillin', '02010995-9826-4a67-945b-f3022e6081df', to_date('9/14/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1982, 'GEODON (Injectable)', '712615', 'ziprasidone', '036db1f2-52b3-42a0-acf9-817b7ba8c724', to_date('2/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1983, 'GEODON (Oral Pill)', '712615', 'ziprasidone', 'a3aa96bb-2cc1-4316-b94c-61593e927505', to_date('7/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1984, 'GERI-HYDROLAC (Topical)', '19011035', 'Lactate', '5d2efce6-3cb4-4c86-b899-c1611a25384e', to_date('6/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1985, 'Giant ragweed pollen extract (Injectable)', '40161718', 'giant ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1986, 'Giant ragweed pollen extract/Western ragweed pollen extract (Injectable)', '40161718', 'giant ragweed pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1987, 'GIAZO (Oral Pill)', '934262', 'balsalazide', 'fc5146c6-448b-44c9-bb06-8bdfe484f2f1', to_date('5/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1988, 'GILOTRIF (Oral Pill)', '43533090', 'Afatinib', 'fd638e5e-8032-e7ca-0179-95e96ab5d387', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1989, 'GILPHEX (Oral Pill)', '1163944', 'Guaifenesin', '80a33cba-9577-402a-84bc-1507c439c933', to_date('4/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1990, 'GINGI MED (Mouthwash)', '1036094', 'Stannous Fluoride', 'e07e291b-2cdd-444a-a510-1e9199323f38', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1991, 'Glimepiride (Oral Pill)', '1597756', 'glimepiride', '1249298e-9d2c-41e6-94ac-95f8e75d6c26', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1992, 'glipiZIDE (Oral Pill)', '1560171', 'Glipizide', '2e51d1ae-a486-4d7a-b5ee-2324c8c42fb2', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1993, 'GlipiZIDE/metFORMIN (Oral Pill)', '1560171', 'Glipizide', '0e7bfe7f-c0c5-4ef1-a7bf-9b01712621f0', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1994, 'GLUCAGEN (Injectable)', '1560278', 'Glucagon', 'f09feb8e-6651-4708-a811-bb5264712059', to_date('1/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1995, 'Glucagon (Injectable)', '1560278', 'Glucagon', 'ff16e4b1-3668-4cb4-91a4-77ee509cd6f6', to_date('5/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1996, 'Glucarpidase (Injectable)', '42709319', 'glucarpidase', 'acaef5a6-b740-40e3-8ffe-74a75c74745c', to_date('4/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1997, 'GLUCOPHAGE (Oral Pill)', '1503297', 'Metformin', '4a0166c7-7097-4e4a-9036-6c9a60d08fc6', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1998, 'Glucose (Injectable)', '1560524', 'Glucose', 'c8758d46-17c8-4fcd-9a0f-e73a2dad6860', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(1999, 'Glucose (Oral Gel)', '1560524', 'Glucose', '39edd887-b89f-4765-8fac-72df3ba3efc3', to_date('9/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2000, 'Glucose (Oral Liquid)', '1560524', 'Glucose', 'fe237543-f1f9-42f9-a262-d34b581cfeb3', to_date('12/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2001, 'Glucose/Magnesium acetate/Potassium Acetate/Sodium Chloride (Injectable)', '1560524', 'Glucose', '85c08b62-8de0-42d2-8cdc-fe42e6b605d7', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2002, 'Glucose/Potassium Chloride (Injectable)', '1560524', 'Glucose', '45de5402-5e61-4bbd-8bbc-5e3392c9920e', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2003, 'Glucose/Potassium Chloride/Sodium Chloride (Injectable)', '1560524', 'Glucose', '01321de3-bf0b-4460-9aee-511406ee101e', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2004, 'Glucose/Sodium Chloride (Injectable)', '1560524', 'Glucose', '7949edf6-3afd-48cb-9f02-5136d69f9e27', to_date('12/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2005, 'GLUCOTROL (Oral Pill)', '1560171', 'Glipizide', '504567d2-e4f1-428d-b524-f29db76e6dfb', to_date('1/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2006, 'Glutamine (Oral Liquid)', '19060985', 'Glutamine', 'cd3fb572-c5b1-43da-aea2-31208985f544', to_date('7/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2007, 'GLUTOSE (Oral Gel)', '1560524', 'Glucose', '39edd887-b89f-4765-8fac-72df3ba3efc3', to_date('9/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2008, 'GLY-OXIDE (Mucosal)', '958999', 'carbamide peroxide', '086a0b82-e947-41c9-89e7-ba06483960c9', to_date('7/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2009, 'glyBURIDE (Oral Pill)', '1559684', 'Glyburide', 'f26d05c9-d01b-46ab-933d-a01ea488ec9b', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2010, 'GlyBURIDE/metFORMIN (Oral Pill)', '1559684', 'Glyburide', 'e57d2503-11d2-44cd-a4a6-6981db0dec34', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2011, 'Glycerin (Ophthalmic)', '961145', 'Glycerin', '00071697-4ac6-4962-8eee-388b8b52bd40', to_date('11/23/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2012, 'Glycerin (Oral Gel)', '961145', 'Glycerin', '0d371e48-d722-4b77-b354-5a44179247bc', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2013, 'Glycerin (Rectal)', '961145', 'Glycerin', '5dcea9dc-51f7-4de8-ba41-1bebfd2a6671', to_date('10/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2014, 'Glycerin (Topical)', '961145', 'Glycerin', 'a6d4c5a0-8276-4d02-9573-b439be2780a4', to_date('3/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2015, 'Glycerin/Hypromellose/Polyethylene Glycol 400 (Ophthalmic)', '961145', 'Glycerin', 'ac9fb8ee-d0b9-43dc-900b-1362b56974cc', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2016, 'Glycerin/Naphazoline (Ophthalmic)', '961145', 'Glycerin', 'a26ef66e-2def-4c98-9959-d40d4cfe3108', to_date('2/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2017, 'Glycerin/Naphazoline/Zinc Sulfate (Ophthalmic)', '961145', 'Glycerin', 'a710be3f-fa5b-46a6-87b5-5a4d1f807e1c', to_date('4/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2018, 'Glycerin/Petrolatum/Phenylephrine/Pramoxine (Rectal)', '961145', 'Glycerin', 'fb170371-2e5d-43ca-a259-538a973ee3b8', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2019, 'Glycerin/Phenol (Mucosal)', '961145', 'Glycerin', '882c940c-b3c3-4aa4-8d64-e4260f066ff4', to_date('3/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2020, 'Glycerin/Propylene glycol (Ophthalmic)', '961145', 'Glycerin', '5a435dbc-669f-49c9-abf2-5e35f1e3d578', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2021, 'Glycine (Irrigation)', '962398', 'Glycine', 'f4d83550-42de-44c7-b8d5-1d0debc6aec2', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2022, 'GLYCOLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '5e25cd00-69a8-4d83-b3a4-d97fffeaf893', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2023, 'Glycopyrrolate (Injectable)', '963353', 'Glycopyrrolate', 'd5a18d74-0d40-46e2-aa0a-41d18609a536', to_date('6/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2024, 'Glycopyrrolate (Oral Liquid)', '963353', 'Glycopyrrolate', 'd200bd44-9856-4104-a29e-a4cca3db6737', to_date('6/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2025, 'Glycopyrrolate (Oral Pill)', '963353', 'Glycopyrrolate', 'a9fe52b4-9290-4e26-a142-1506572bc217', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2026, 'GLYNASE (Oral Pill)', '1559684', 'Glyburide', 'a7fce80a-2f13-43cc-8e1c-561f7d3ec3d5', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2027, 'GLYTONE (Topical)', '976778', 'hydroquinone', 'f1fd0340-7975-435f-9de8-3064c6e2250e', to_date('8/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2028, 'GOLD BOND ANTI-ITCH INTENSIVE RELIEF (Topical)', '916662', 'dimethicone', '7c0f98df-6900-4fe5-abee-8378799ea754', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2029, 'GOLD BOND BABY CORNSTARCH PLUS (Topical)', '40230159', 'cornstarch', '5654facc-ad51-4501-a505-9c0b2035e653', to_date('9/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2030, 'GOLD BOND BODY POWDER EXTRA STRENGTH (Topical)', '901656', 'Menthol', 'dd74205d-4520-417e-b43f-6622c35c1971', to_date('1/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2031, 'GOLD BOND BODY POWDER ORIGINAL STRENGTH (Topical)', '901656', 'Menthol', 'dd74205d-4520-417e-b43f-6622c35c1971', to_date('1/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2032, 'GOLD BOND FOOT POWDER MAXIMUM STRENGTH (Topical)', '901656', 'Menthol', '9074c659-dea5-4656-8abb-01f0b1a6927e', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2033, 'GOLD BOND LOTION (Topical)', '916662', 'dimethicone', '33cc1470-f0c2-4e25-bc49-ca23e3b195f0', to_date('1/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2034, 'GOLD BOND ULTIMATE ECZEMA RELIEF (Topical)', '986261', 'Colloidal oatmeal', '52744c77-278f-40b1-a356-14ae4366389b', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2035, 'Golimumab (Injectable)', '19041065', 'golimumab', '9e260a47-55af-4c92-8d88-a86ccc767fff', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2036, 'Gonadorelin (Injectable)', '19089810', 'Gonadorelin', '34d9ef24-7c00-4c5a-8851-dc9a9885eb8f', to_date('8/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2037, 'GONAL F (Injectable)', '1542948', 'Follitropin Alfa', 'ae85b9c3-e7eb-4981-a5d9-346050e8f189', to_date('5/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2038, 'GONIOSOFT (Ophthalmic)', '902251', 'hypromellose', 'b9885de2-bd4c-c5c8-7ce3-c3f1669e74ea', to_date('12/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2039, 'GONIOVISC (Ophthalmic)', '902251', 'hypromellose', 'b8b57c41-aae6-4cbd-8fbf-0a1c6fa196d9', to_date('4/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2040, 'GOODY''S BODY PAIN (Oral Powder)', '1125315', 'Acetaminophen', '055d0288-61d4-48bc-b91f-6ecc1969beb8', to_date('11/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2041, 'GOODY''S EXTRA STRENGTH (Oral Powder)', '1125315', 'Acetaminophen', '16d774cc-4247-4bf8-9b5a-c338ffebda3d', to_date('11/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2042, 'GOODY''S PM (Oral Powder)', '1125315', 'Acetaminophen', 'db5d6c2b-688e-4e88-a42d-0fa2b0d8140b', to_date('12/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2043, 'Gramicidin/Neomycin/Polymyxin B (Ophthalmic)', '963742', 'Gramicidin', '94e3b620-f9b2-4c8b-9ee8-8b27207a2cab', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2044, 'Granisetron (Injectable)', '1000772', 'Granisetron', 'af68579f-c863-4535-94af-a4126b43c182', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2045, 'Granisetron (Oral Pill)', '1000772', 'Granisetron', '02dc4c34-04e8-4f16-8109-b04d600a9c61', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2046, 'GRASTEK (Sublingual)', '40161488', 'Timothy grass pollen extract', '1d7f3e56-c233-47a4-9bcd-80098ffff47d', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2047, 'Green ash pollen extract/White ash pollen extract (Injectable)', '40161734', 'green ash pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2048, 'GRIS-PEG (Oral Pill)', '1763779', 'Griseofulvin', '20aa6571-ee10-4dc1-9be9-018aa0a680fc', to_date('11/5/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2049, 'Griseofulvin (Oral Liquid)', '1763779', 'Griseofulvin', '82f52d21-eacd-4edf-8ad5-a8ef090ffa2a', to_date('4/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2050, 'Griseofulvin (Oral Pill)', '1763779', 'Griseofulvin', '993f0609-0f63-4bd5-b383-a19a00945c7e', to_date('1/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2051, 'Groundsel pollen extract (Injectable)', '40172352', 'groundsel pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2052, 'guaiFENesin (Oral Granules)', '1163944', 'Guaifenesin', 'fd8a69aa-eb75-4e7a-8b6e-3361f810c578', to_date('6/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2053, 'guaiFENesin (Oral Liquid)', '1163944', 'Guaifenesin', '60e25a79-ec9a-4266-9f95-6f2848ce69cd', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2054, 'guaiFENesin (Oral Pill)', '1163944', 'Guaifenesin', '43829ee3-23a7-4430-8a08-a5df09fc564d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2055, 'guaiFENesin/HYDROcodone (Oral Liquid)', '1163944', 'Guaifenesin', '1d0c2c03-ca11-30b1-e054-00144ff8d46c', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2056, 'guaiFENesin/Phenylephrine (Oral Liquid)', '1163944', 'Guaifenesin', '9ebee4c3-c0fb-417e-901f-eaaf678654f9', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2057, 'guaiFENesin/Phenylephrine (Oral Pill)', '1163944', 'Guaifenesin', 'ae9f4939-6a79-4f68-a58e-89246e36e158', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2058, 'guaiFENesin/Pseudoephedrine (Oral Pill)', '1163944', 'Guaifenesin', '383281d7-0d25-4423-ace2-d2985f2c37d0', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2059, 'guanFACINE (Oral Pill)', '1344965', 'Guanfacine', 'c6e30fc7-5ad3-41c1-a673-b4db53f2b98f', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2060, 'Guanidine (Oral Pill)', '766337', 'Guanidine', '903fbd33-e5d9-41fb-9414-7bd6f42a8593', to_date('8/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2061, 'GYNE-LOTRIMIN (Vaginal)', '1000632', 'Clotrimazole', '79ee7b42-9934-472c-8e08-cda31be9e72d', to_date('3/29/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2062, 'GYNOL II (Vaginal)', '969444', 'Nonoxynol-9', 'eaf86a36-0573-4c39-9324-88919c4d009b', to_date('12/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2063, '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine (Injectable)"', '529118', '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine"', '8143d01c-4911-40db-95b2-47f3ebea2a7d', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2064, 'Halcinonide (Topical)', '966468', 'Halcinonide', 'e60d0691-0628-4c98-9a17-f4a89822baf2', to_date('1/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2065, 'HALDOL (Injectable)', '766529', 'Haloperidol', '27cfe684-7d11-4f37-9c8b-b2bdd6b5348e', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2066, 'HALLS (Oral Lozenge)', '901656', 'Menthol', '5f4af8e8-8550-45c7-a199-694efac9e7be', to_date('4/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2067, 'Halobetasol (Topical)', '949759', 'halobetasol', 'c420da92-a3e3-4760-8cad-e50cbacebfeb', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2068, 'HALOG (Topical)', '966468', 'Halcinonide', 'e60d0691-0628-4c98-9a17-f4a89822baf2', to_date('1/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2069, 'Haloperidol (Injectable)', '766529', 'Haloperidol', '7b01bd62-d0fa-4229-9a09-f90893dd6dbd', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2070, 'Haloperidol (Oral Liquid)', '766529', 'Haloperidol', '2d848e8c-de42-4a09-96f1-a2d250af059d', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2071, 'Haloperidol (Oral Pill)', '766529', 'Haloperidol', '0027b8a3-73bf-4005-a7e3-b035f451a861', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2072, 'HALOTESTIN (Oral Pill)', '1555887', 'Fluoxymesterone', '09bafc2d-1893-4618-86dc-e9403407cd41', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2073, 'Hard maple pollen extract (Injectable)', '40161785', 'hard maple pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2074, 'Hard maple pollen extract/Red maple pollen extract/Silver maple pollen extract (Injectable)', '40161785', 'hard maple pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2075, 'HARVONI (Oral Pill)', '45775020', 'ledipasvir', '1a1c555d-2fdf-4150-8ace-dbc770c226bf', to_date('12/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2076, 'Hazelnut pollen extract (Injectable)', '40161789', 'hazelnut pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2077, 'HEAD & SHOULDERS (Shampoo)', '944360', 'zinc pyrithione', '83f0f5e0-2883-4c68-a6bc-f22f6c9d9f80', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2078, 'HEALTHYLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '9b14e26f-17cb-4890-bb47-9db79f352bd2', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2079, 'Heavy mineral oil (Oral Liquid)', '998394', 'Heavy mineral oil', '9f943fdf-5058-4e18-ba96-6be112bf72ca', to_date('3/13/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2080, 'HECORIA (Oral Pill)', '950637', 'Tacrolimus', '95b03516-34b0-4438-a05c-918d80f70091', to_date('12/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2081, 'HECTOROL (Oral Pill)', '1512446', 'Doxercalciferol', 'dc676bc5-f3f7-4755-92e1-1814498c1f4f', to_date('1/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2082, 'Helium (Inhalant)', '19067073', 'Helium', 'e1d2805c-1ede-4de5-b06e-f5cffc3ffd3c', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2083, 'Helium/Oxygen (Inhalant)', '19067073', 'Helium', '3d03af31-bb94-4dd5-bccd-9592cd0bc74c', to_date('8/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2084, 'HEMANGEOL (Oral Liquid)', '1353766', 'Propranolol', 'b6f9dd2a-632b-87eb-70f0-b2064d7ed48a', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2085, 'HEMOBAN (Mucosal)', '957393', 'aluminum chloride', '7054c4ea-fee2-4627-aff2-e99ceb1080c7', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2086, 'HEMOCYTE (Oral Pill)', '1595799', 'Ferrous fumarate', 'b8ea96eb-099a-41c0-b894-dd4fc9428863', to_date('10/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2087, 'HEMOCYTE-F (Oral Pill)', '1595799', 'Ferrous fumarate', 'c484c59d-4178-4283-8e6c-e3a4567a78f1', to_date('10/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2088, 'HEMOFIL (Injectable)', '1352213', 'Factor VIII', 'b8953ff7-3bba-4a0b-a486-f26fb81f05d9', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2089, '"Heparin, porcine (Injectable)"', '19055137', '"heparin, porcine"', '7014808d-cec9-4b2c-8eb5-940493e356ab', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2090, 'HEPSERA (Oral Pill)', '1729323', 'adefovir', '80595d45-2224-47d1-bd5c-4b11a824e5bd', to_date('6/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2091, 'HERCEPTIN (Injectable)', '1387104', 'trastuzumab', '492dbdb2-077e-4064-bff3-372d6af0a7a2', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2092, 'HESPAN (Injectable)', '19077117', 'Hetastarch', '6d1c2560-f289-49a9-9471-71199492fd8e', to_date('2/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2093, 'Hetastarch (Injectable)', '19077117', 'Hetastarch', '6d1c2560-f289-49a9-9471-71199492fd8e', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2094, 'HETLIOZ (Oral Pill)', '44814600', 'tasimelteon', 'ca4a9b63-708e-49e9-8f9b-010625443b90', to_date('12/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2095, 'Hexachlorophene (Soap)', '1768734', 'Hexachlorophene', '41ee3eb5-c3b6-4b50-87c6-04a723ca4c35', to_date('7/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2096, 'HEXALEN (Oral Pill)', '1368823', 'Altretamine', '90a5e59a-bee8-404a-ad69-fabddeaf27f9', to_date('1/11/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2097, 'Hexylresorcinol (Oral Lozenge)', '969004', 'Hexylresorcinol', 'e282ba65-b674-45d5-82c2-ab4e4a95243b', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2098, 'HIBERIX (Injectable)', '529118', '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine"', '745ff8df-1618-4b76-9aa1-6f42752c0dda', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2099, 'HIBICLENS (Soap)', '1790812', 'Chlorhexidine', '910c0491-ec27-4164-a7ab-d89e82a2bdb5', to_date('10/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2100, 'HIBISTAT (Topical)', '1790812', 'Chlorhexidine', 'c6f941d6-527e-4fb8-9581-8532dd84e7a8', to_date('7/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2101, 'HIPREX (Oral Pill)', '904356', 'Methenamine', '7488ad5c-376d-47a2-8c23-47eff94547fb', to_date('3/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2102, 'Histamine (Injectable)', '19069019', 'Histamine', '1159c24c-d9ce-49a2-b0bd-dc27c710f146', to_date('5/20/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2103, 'Histamine (Topical)', '19069019', 'Histamine', '3801584a-6212-4ad0-8d6e-ef60e7edae14', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2104, 'Histamine/Menthol (Topical)', '19069019', 'Histamine', 'd123deae-d9ef-45ce-81ed-2d79384b1298', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2105, 'HISTEX PE (Oral Liquid)', '1135766', 'Phenylephrine', '26c2117e-804e-4132-8707-fc0302fb9090', to_date('3/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2106, 'HISTEX SYRUP (Oral Liquid)', '1105889', 'Triprolidine', 'cc466d33-cf3e-4f1c-a794-6d3d79903adf', to_date('3/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2107, 'Homatropine (Ophthalmic)', '1101703', 'homatropine', '7d64b0e4-10c3-44b6-ac95-ededde5fda71', to_date('1/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2108, 'Homatropine/HYDROcodone (Oral Liquid)', '1101703', 'homatropine', '0184de92-e728-4390-95f6-a463f583416a', to_date('1/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2109, 'Homatropine/HYDROcodone (Oral Pill)', '1101703', 'homatropine', '6c0bba34-07db-42f5-9e5e-ad79b71b4276', to_date('10/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2110, '"House dust mite extract, Dermatophagoides farinae (Injectable)"', '40161821', '"house dust mite extract, Dermatophagoides farinae"', 'cbe1d24d-df77-4940-baf8-623993fa731b', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2111, '"House dust mite extract, Dermatophagoides pteronyssinus (Injectable)"', '40161835', '"house dust mite extract, Dermatophagoides pteronyssinus"', 'cbe1d24d-df77-4940-baf8-623993fa731b', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2112, 'House fly extract (Injectable)', '40175853', 'house fly extract', '470d7a58-b8ee-4f97-a5e2-3e8c65096231', to_date('12/18/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2113, 'HumaLOG (Injectable)', '1550023', 'Insulin Lispro', 'c5f75765-86b8-4926-b8c3-b42133ca7ac8', to_date('9/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2114, 'HUMAN ALBUMIN GRIFOLS (Injectable)', '1344143', '"Albumin Human, USP"', 'a43c5ed6-7423-4ee5-8acb-5fccc2d7b6cc', to_date('3/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2115, 'Human Secretin (Injectable)', '19084212', 'Human Secretin', 'b4dfe70f-0a86-4488-9ba1-dcd8f86cbfcd', to_date('8/15/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2116, 'Humicola grisea extract (Injectable)', '40228383', 'Humicola grisea extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2117, 'HUMULIN R (Injectable)', '1596977', '"Regular Insulin, Human"', '9ec3e28a-cea9-4e45-9057-e5bf8e37014c', to_date('12/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2118, 'HURRICAINE (Mucosal)', '917006', 'Benzocaine', '159d412c-6d1a-45d4-88c0-8c93960f946e', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2119, 'HURRICAINE (Oral Gel)', '917006', 'Benzocaine', '1f3d68f6-afd6-42e7-b3e5-210228c8e7de', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2120, 'Hyaluronate (Injectable)', '787787', 'hyaluronate', 'f2b381d4-b181-4e88-a543-075917fc34ed', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2121, 'Hyaluronate/Urea (Topical)', '787787', 'hyaluronate', 'ce953fdf-a73a-4f7e-8946-959346990626', to_date('12/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2122, 'Hyaluronidase (Injectable)', '19073699', 'Hyaluronidase', '21fbd12e-4a12-4ad1-ad01-964cd5ec9996', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2123, '"Hyaluronidase, Human (Injectable)"', '19088713', '"Hyaluronidase, Human"', '1e547159-daa7-4b5d-9ad5-5261ea866e13', to_date('6/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2124, 'HYBRISIL (Topical)', '1506270', 'Methylprednisolone', 'f8432414-d8a6-4597-a226-61fd09a80e0c', to_date('4/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2125, 'HYCET (Oral Liquid)', '1125315', 'Acetaminophen', '00ff75bc-aebe-4c55-adea-1c49cf1addb3', to_date('12/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2126, 'HYCODAN (Oral Liquid)', '1101703', 'homatropine', '08bb4884-403b-4163-bee7-5aa40992ac4e', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2127, 'hydrALAZINE (Injectable)', '1373928', 'Hydralazine', 'f34904dc-c945-4de4-8594-34e4f4ac1983', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2128, 'hydrALAZINE (Oral Pill)', '1373928', 'Hydralazine', 'b96e789d-0f29-42fe-818f-3ff2f579e5fd', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2129, 'HydrALAZINE/Hydrochlorothiazide/Reserpine (Oral Pill)', '1373928', 'Hydralazine', 'bdd0658e-38fb-4726-9720-09c502138ab0', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2130, 'HydrALAZINE/Isosorbide Dinitrate (Oral Pill)', '1373928', 'Hydralazine', 'e1e63cd5-d1e4-4af5-bad5-1ad41ea46b00', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2131, 'HYDREA (Oral Pill)', '1377141', 'hydroxyurea', '050bd2a2-a125-721a-e366-255c5466f018', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2132, 'HYDRO (Topical)', '906914', 'Urea', 'c1fc0ed7-6383-455a-98c3-ef44b312fc0d', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2133, 'Hydrochlorothiazide (Oral Pill)', '974166', 'Hydrochlorothiazide', 'f82b7d4f-8cf2-4502-b066-d2d7c3a7a6fe', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2134, 'Hydrochlorothiazide/Irbesartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '72fa8cd4-bc2a-4a7d-8feb-2d60e077d801', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2135, 'Hydrochlorothiazide/Lisinopril (Oral Pill)', '974166', 'Hydrochlorothiazide', '00f67e1a-6999-4295-9c9f-fcb1ce9711b8', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2136, 'Hydrochlorothiazide/Losartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '90b479ce-1a28-4b14-b33a-7ba374305079', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2137, 'Hydrochlorothiazide/Methyldopa (Oral Pill)', '974166', 'Hydrochlorothiazide', '5bf74178-66b8-44d4-a87d-1fd760b94ad3', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2138, 'Hydrochlorothiazide/Metoprolol (Oral Pill)', '974166', 'Hydrochlorothiazide', 'faaf13ce-5d8d-4c57-a49f-a7a73daa41a5', to_date('5/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2139, 'Hydrochlorothiazide/Moexipril (Oral Pill)', '974166', 'Hydrochlorothiazide', '621614de-4a5c-43c8-af77-e98128f01c8b', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2140, 'Hydrochlorothiazide/Olmesartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '91d45442-4232-4111-9dd8-0d787085af6d', to_date('12/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2141, 'Hydrochlorothiazide/Quinapril (Oral Pill)', '974166', 'Hydrochlorothiazide', 'ae34a8e0-5f82-4aa8-d71c-b7a3f720925c', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2142, 'Hydrochlorothiazide/Spironolactone (Oral Pill)', '974166', 'Hydrochlorothiazide', '66134130-5718-483b-a076-36ecdb0add34', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2143, 'Hydrochlorothiazide/Telmisartan (Oral Pill)', '974166', 'Hydrochlorothiazide', 'b88054b3-fafa-4b4e-acf5-5294e5555720', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2144, 'Hydrochlorothiazide/Triamterene (Oral Pill)', '974166', 'Hydrochlorothiazide', '5171e219-38cb-4f4d-b33b-abbd713bf642', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2145, 'Hydrochlorothiazide/Valsartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '6b6ad6c8-22f8-456b-bc54-a02fb6cbea8c', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2146, 'HYDROcodone/Ibuprofen (Oral Pill)', '1174888', 'Hydrocodone', 'd86ced85-6767-4218-bf88-e294b44d1e74', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2147, 'HYDROcodone/Pseudoephedrine (Oral Liquid)', '1174888', 'Hydrocodone', 'd8344453-c7c0-4e4b-aab7-8447ef28322a', to_date('12/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2148, 'Hydrocortisone (Injectable)', '975125', 'Hydrocortisone', 'b2b4c961-363d-49fe-b354-d59b39fd517a', to_date('5/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2149, 'Hydrocortisone (Oral Pill)', '975125', 'Hydrocortisone', 'd4d2912e-d1e8-4b40-af88-59c87fa12318', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2150, 'Hydrocortisone (Rectal)', '975125', 'Hydrocortisone', 'a5b47406-b933-4f6b-96dc-db837bcccf77', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2151, 'Hydrocortisone (Topical)', '975125', 'Hydrocortisone', '94a776de-aa08-4274-ab07-48de6e934791', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2152, 'Hydrocortisone/Iodoquinol (Topical)', '975125', 'Hydrocortisone', '3d7278ee-2c8e-4df1-9372-d43403122945', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2153, 'Hydrocortisone/Lidocaine (Rectal)', '975125', 'Hydrocortisone', '0db13203-e001-42fc-b3a2-7f189d171de3', to_date('1/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2154, 'Hydrocortisone/Neomycin/Polymyxin B (Ophthalmic)', '975125', 'Hydrocortisone', '64e4cb91-f5bd-4a2f-b92d-0a1341f40d35', to_date('6/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2155, 'Hydrocortisone/Neomycin/Polymyxin B (Otic)', '975125', 'Hydrocortisone', 'f1995e7d-81c0-42c0-89fe-50634b6e2274', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2156, 'Hydrocortisone/Neomycin/Polymyxin B (Topical)', '975125', 'Hydrocortisone', 'e492b2b0-ad73-4866-c996-a1fcb12dbcad', to_date('4/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2157, 'Hydrocortisone/Pramoxine (Rectal)', '975125', 'Hydrocortisone', 'fecf8380-3bb5-11e5-98c5-0002a5d5c51b', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2158, 'Hydrocortisone/Pramoxine (Topical)', '975125', 'Hydrocortisone', '26beacc7-75b2-4592-a643-3b50ed860f23', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2159, 'Hydroflumethiazide (Oral Pill)', '1376289', 'Hydroflumethiazide', '6153ef9e-77f0-4233-a5bc-3e3d1f732323', to_date('10/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2160, 'Hydrofluoric Acid/Phosphoric acid/Sodium Fluoride (Oral Gel)', '976309', 'Hydrofluoric Acid', '11d08dc0-fa26-4506-830c-d809f50c5411', to_date('12/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2161, 'Hydrofluoric Acid/Sodium Fluoride (Oral Foam)', '976309', 'Hydrofluoric Acid', '8f73af62-6124-4bf6-915d-4b913add7ad1', to_date('2/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2162, 'Hydrogen Peroxide (Mouthwash)', '1776430', 'Hydrogen Peroxide', 'b1325ab5-6667-4f22-a625-8e91fe543c11', to_date('3/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2163, 'Hydrogen Peroxide (Mucosal)', '1776430', 'Hydrogen Peroxide', 'f82230e0-a6eb-4d1e-8fea-0bf386d97c58', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2164, 'Hydrogen Peroxide (Topical)', '1776430', 'Hydrogen Peroxide', '97fae8f6-bf62-4b4f-8d5c-5a3f6f7bd784', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2165, 'HYDROMET (Oral Liquid)', '1101703', 'homatropine', 'a324c912-a3ef-4296-b9a8-b0fec687eb06', to_date('10/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2166, 'HYDROmorphone (Injectable)', '1126658', 'Hydromorphone', '7122ccea-f35c-4816-b90a-6f12fdc808dd', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2167, 'HYDROmorphone (Oral Liquid)', '1126658', 'Hydromorphone', 'cc574063-6ede-4da7-82c4-7450c92b229b', to_date('7/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2168, 'HYDROmorphone (Oral Pill)', '1126658', 'Hydromorphone', 'd42f2e61-f65a-42f2-bec5-2d248d788e78', to_date('9/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2169, 'HYDROmorphone (Rectal)', '1126658', 'Hydromorphone', '1bfbba46-1979-4797-a29e-d67718131686', to_date('9/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2170, 'Hydroquinone (Topical)', '976778', 'hydroquinone', '50c30793-472a-4196-ba41-5074686f7edc', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2171, 'HYDROSKIN (Topical)', '975125', 'Hydrocortisone', '5d96dccc-5117-4a47-b0af-f2a2c09a0c8f', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2172, 'Hydroxocobalamin (Injectable)', '1377023', 'Hydroxocobalamin', 'd35ad609-70d3-4eb2-8276-c9631ca815d1', to_date('1/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2173, 'Hydroxychloroquine (Oral Pill)', '1777087', 'Hydroxychloroquine', '1959d645-6b82-4f4d-b1f2-af644dec7c8f', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2174, 'Hydroxyethyl starch 130-0.4 (Injectable)', '43012293', 'hydroxyethyl starch 130-0.4', 'be7729c9-f7cf-483b-bafe-0d42d6b62f06', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2175, 'Hydroxypropylcellulose (Implant)', '19002257', 'hydroxypropylcellulose', 'cc7a6a52-0b77-4df7-8403-dd21c1334f6c', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2176, 'Hydroxyurea (Oral Pill)', '1377141', 'hydroxyurea', 'b9514ae5-79ae-4cc2-9d7f-c8f7806d1694', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2177, 'hydrOXYzine (Injectable)', '777221', 'Hydroxyzine', '7def1daa-c800-4263-9526-eac8d53e4636', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2178, 'hydrOXYzine (Oral Liquid)', '777221', 'Hydroxyzine', '85e3c789-a740-4a09-a810-9808c3d0f7d9', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2179, 'hydrOXYzine (Oral Pill)', '777221', 'Hydroxyzine', 'e0f40d4e-4167-4641-a8a4-599bc1877077', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2180, 'HYLENEX (Injectable)', '19088713', '"Hyaluronidase, Human"', '3023cc56-ed4b-4e87-b3a1-81b20943f658', to_date('6/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2181, 'HYOPHEN (Oral Pill)', '711452', 'Benzoate', '2c1f0f4c-e57b-4df5-9a58-41d39c3d8893', to_date('10/25/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2182, 'Hyoscyamine (Injectable)', '923672', 'Hyoscyamine', 'dd2e786c-29a7-40f8-a5f3-7641413f5036', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2183, 'Hyoscyamine (Oral Disintegrating)', '923672', 'Hyoscyamine', 'e5fd8476-418a-4149-a688-205ea943b30c', to_date('5/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2184, 'Hyoscyamine (Oral Liquid)', '923672', 'Hyoscyamine', '6f31e729-e36b-4b6e-98de-88077b29bf2b', to_date('12/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2185, 'Hyoscyamine (Oral Pill)', '923672', 'Hyoscyamine', '480d688d-2103-443c-90cc-feb861bdce13', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2186, 'Hyoscyamine (Sublingual)', '923672', 'Hyoscyamine', 'c9623ab9-ead1-4ae5-94d8-e18384b1e30c', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2187, '"Hyoscyamine/Methenamine/Methylene blue/Phenyl salicylate/Sodium Phosphate, Monobasic (Oral Pill)"', '923672', 'Hyoscyamine', '263ed7eb-a390-4a26-9985-16ac883f4bfc', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2188, '"Hyoscyamine/Methenamine/Methylene blue/Sodium Phosphate, Monobasic (Oral Pill)"', '923672', 'Hyoscyamine', 'f650dd78-615c-42d3-9b2d-3a989039d80c', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2189, 'Hypochlorite (Topical)', '44784806', 'Hypochlorite', '3d72b72c-2949-4eb6-b64c-6c4aef0eddd9', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2190, 'Hypomyces perniciosus extract (Injectable)', '40244381', 'Hypomyces perniciosus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2191, 'Hypromellose (Ophthalmic)', '902251', 'hypromellose', '785199ea-3bd6-48ea-afd0-e0c4cf39652b', to_date('9/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2192, 'Hypromellose/Naphazoline/Polysorbate 80/Zinc Sulfate (Ophthalmic)', '902251', 'hypromellose', '9a1ce5e2-c3da-424d-b754-cf2de8c655e3', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2193, 'HYZAAR (Oral Pill)', '974166', 'Hydrochlorothiazide', 'd7d7dcc9-c3e0-45e5-abcd-135a6d8c8dab', to_date('6/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2194, 'I (Oral Pill)', '715997', 'donepezil', 'd9d15879-3883-4963-9c93-73d5251484fa', to_date('8/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2195, 'Ibandronate (Oral Pill)', '1512480', 'Ibandronate', 'bcac6719-ad8c-e4a5-c32a-af1c0511c591', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2196, 'Ibrutinib (Oral Pill)', '44507848', 'Ibrutinib', '0dfd0279-ff17-4ea9-89be-9803c71bab44', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2197, 'IBU (Oral Pill)', '1177480', 'Ibuprofen', '181e3925-4a81-4012-b2b6-6b247e2eb663', to_date('2/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2198, 'Ibuprofen (Chewable)', '1177480', 'Ibuprofen', 'ce54a65b-2913-450f-b7af-b23c54fbb742', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2199, 'Ibuprofen (Injectable)', '1177480', 'Ibuprofen', '1eaa7790-f1a1-4f51-b10a-cbbaf033f684', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2200, 'Ibuprofen (Oral Liquid)', '1177480', 'Ibuprofen', '17bd342d-8eb3-4663-88f5-2e7c90254dc7', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2201, 'Ibuprofen (Oral Pill)', '1177480', 'Ibuprofen', '5715910e-33be-49bd-8a1f-eeb46320e28d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2202, 'Ibuprofen/oxyCODONE (Oral Pill)', '1177480', 'Ibuprofen', 'a95425ac-6ab7-45e4-820d-bddffde30a0f', to_date('6/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2203, 'Ibuprofen/Phenylephrine (Oral Pill)', '1177480', 'Ibuprofen', '525cc513-9945-43fe-af1b-e168d562a1db', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2204, 'Ibuprofen/Pseudoephedrine (Oral Liquid)', '1177480', 'Ibuprofen', 'b6c844c4-4ba6-4827-8db8-5f3f5e99b0c2', to_date('10/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2205, 'Ibuprofen/Pseudoephedrine (Oral Pill)', '1177480', 'Ibuprofen', 'faa26964-a140-4d30-ab1e-19f49f9458ac', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2206, 'Ibutilide (Injectable)', '19050087', 'ibutilide', 'c25d21e7-6136-4a7a-b139-12f53116fc3d', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2207, 'Ichthammol (Topical)', '977949', 'ichthammol', '9698b98c-bca1-4a7e-8a67-05d2a2b770a5', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2208, 'ICLUSIG (Oral Pill)', '43013182', 'ponatinib', '807f988e-117b-4497-934d-73aa78baac71', to_date('10/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2209, 'ICY HOT (Topical)', '901656', 'Menthol', '4ce2b823-7ef5-4cca-a2d8-2fe781bc958e', to_date('12/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2210, 'ICY HOT (Transdermal)', '901656', 'Menthol', 'd4e13689-8973-4041-9f33-e710547dcdee', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2211, 'ICY HOT WITH METHYL SALICYLATE (Topical)', '901656', 'Menthol', '40c8c02f-fa5f-4e80-81a0-48271fa6f94b', to_date('4/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2212, 'IDAMYCIN (Injectable)', '19078097', 'Idarubicin', '0a5a6d93-cc1e-4d7f-8da1-446c134503b3', to_date('1/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2213, 'IDArubicin (Injectable)', '19078097', 'Idarubicin', '615d206a-b178-4ff4-b6c1-7e349099f3c7', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2214, 'Idelalisib (Oral Pill)', '45776944', 'idelalisib', 'efbdafa9-d18c-4e85-b4a2-1e620fc74e50', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2215, 'IFEREX (Oral Pill)', '1300751', 'Polysaccharide iron complex', '968c74e0-0510-4a0e-add2-37af97fc6928', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2216, 'IFEX (Injectable)', '19078187', 'Ifosfamide', 'b7241707-7538-4d1a-91e7-3a25a91e0b9a', to_date('2/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2217, 'Ifosfamide (Injectable)', '19078187', 'Ifosfamide', 'f6fef680-884f-46fc-bf81-0ef7c5db6f32', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2218, 'Iloperidone (Oral Pill)', '19017241', 'iloperidone', '43452bf8-76e7-47a9-a5d8-41fe84d061f0', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2219, 'ILOTYCIN (Ophthalmic)', '1746940', 'Erythromycin', '9b1c6c13-4562-4c8e-a8bb-42493dc5cadb', to_date('10/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2220, 'ILUVIEN (Implant)', '996541', 'fluocinolone', '4400e471-7402-11df-93f2-0800200c9a66', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2221, 'IMBRUVICA (Oral Pill)', '44507848', 'Ibrutinib', '0dfd0279-ff17-4ea9-89be-9803c71bab44', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2222, 'Imiglucerase (Injectable)', '1348407', 'imiglucerase', 'df60f030-866b-4374-a31f-8ae3f6b45c38', to_date('12/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2223, 'Imipramine (Oral Pill)', '778268', 'Imipramine', '3361779c-095c-45dc-8a85-7626652ff75f', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2224, 'Imiquimod (Topical)', '981691', 'imiquimod', '0c3aed27-7b3f-442e-9f60-f2f5c672c85d', to_date('4/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2225, 'IMITREX (Oral Pill)', '1140643', 'Sumatriptan', '040abcc1-cc1c-4f00-b302-36070611f7b2', to_date('10/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2226, 'Immunoglobulin G (Injectable)', '19117912', 'Immunoglobulin G', '88eac3b8-55a5-4451-9d25-c30e43ab7068', to_date('3/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2227, 'IMODIUM (Oral Liquid)', '991876', 'Loperamide', '76a976d5-8bee-4158-a94d-7fbfc5544fd4', to_date('1/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2228, 'IMODIUM (Oral Pill)', '991876', 'Loperamide', '01da76d0-1979-4c45-9d39-c72ae4e4ffe2', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2229, 'IMOVAX (Injectable)', '544505', '"rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated"', 'ba8d4e72-f452-4859-ae6f-3644b4b0a78c', to_date('9/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2230, 'IMPAVIDO (Oral Pill)', '44816310', 'miltefosine', 'd6658aeb-7bc1-4eef-ad0d-0a873ddbecf5', to_date('9/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2231, 'INAPSINE (Injectable)', '739323', 'Droperidol', 'dbc2d9eb-eefe-454d-a8c3-55cec840d54f', to_date('12/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2232, 'Indapamide (Oral Pill)', '978555', 'Indapamide', 'a8a4ec2c-9d4b-482b-ad29-88185c96db74', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2233, 'Indian wormwood sage pollen extract (Injectable)', '40224992', 'Indian wormwood sage pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2234, 'Indinavir (Oral Pill)', '1711523', 'Indinavir', '01c5574c-1056-49c6-af20-e950db3f4139', to_date('6/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2235, 'Indomethacin (Injectable)', '1178663', 'Indomethacin', '30e38747-c553-4e2d-bc23-634e1dd90b8d', to_date('7/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2236, 'Indomethacin (Oral Pill)', '1178663', 'Indomethacin', '3d5df05a-f4af-48d8-b880-97dfb92e900c', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2237, 'Indomethacin (Rectal)', '1178663', 'Indomethacin', 'a8ed14ef-cd4b-3be7-0b5f-b677c72d2e88', to_date('9/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2238, 'Indomethacin XR (Oral Pill)', '1178663', 'Indomethacin', '85014b51-1354-4d16-9995-3ee33a7155fa', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2239, 'Inert Ingredients (Oral Pill)', '19127890', 'Inert Ingredients', '39988aa6-8f68-40e8-9bdd-c40a3bdaad61', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2240, 'INFASURF (Inhalant)', '19089891', 'calfactant', '315c128a-272d-4c57-bfbe-1a8b3402af08', to_date('7/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2241, 'INFED (Injectable)', '1381661', 'Iron-Dextran Complex', 'abacb7fa-2fc2-471e-9200-944eeac8ca2a', to_date('7/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2242, 'INFERGEN (Injectable)', '1781314', 'interferon alfacon-1', 'a7248eca-45d6-472d-8c2a-d8887c2594d5', to_date('4/18/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2243, 'Influenza A-California-7-2009-(H1N1)v-like virus vaccine (Injectable)', '40166605', 'influenza A-California-7-2009-(H1N1)v-like virus vaccine', 'fc5cfd1c-1ff5-4cfa-b544-db8d7f26d46f', to_date('12/4/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2244, 'INFUMORPH (Injectable)', '1110410', 'Morphine', 'db9ac9e3-d761-4a99-9f34-4946ebe8f255', to_date('6/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2245, 'INJECTAFER (Injectable)', '43560392', 'ferric carboxymaltose', '517b4a19-45b3-4286-9f6a-ced4e10447de', to_date('8/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2246, 'INLYTA (Oral Pill)', '42709322', 'axitinib', '84137882-e000-47da-bd5b-fa76ab3c76f9', to_date('8/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2247, 'INNOFEM (Oral Pill)', '1548195', 'Estradiol', '10e1d3ef-808e-47e4-a050-93a5918b1085', to_date('1/31/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2248, 'INNOHEP (Injectable)', '1308473', 'tinzaparin', '1513b960-d9d1-11de-8a1e-0002a5d5c51b', to_date('10/21/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2249, 'INSPRA (Oral Pill)', '1309799', 'eplerenone', 'c7bc9486-8e61-4ba1-827f-2cd8c304b454', to_date('1/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2250, 'INSTA-CHAR (Oral Liquid)', '1701928', 'Activated Charcoal', '6285e38c-40bf-415d-bf68-68b38e318ab5', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2251, '"Insulin analog, Detemir (Injectable)"', '1516976', 'insulin detemir', '2b8d9730-686b-444b-9941-7b5877255924', to_date('9/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2252, '"Insulin analog, Glargine (Injectable)"', '1502905', 'Insulin Glargine', '13cfe263-6a6a-4b0f-94f4-771ab6a105c0', to_date('11/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2253, '"Insulin, human isophane (Injectable)"', '1596914', '"NPH Insulin, Human"', '99c995f1-522e-42aa-b45a-117e0af77d81', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2254, '"Insulin, human mixed (Injectable)"', '1596914', '"NPH Insulin, Human"', '0cc57309-01ef-4a02-8d27-b981c768135a', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2255, '"Insulin, human regular (Injectable)"', '1596977', '"Regular Insulin, Human"', '9ec3e28a-cea9-4e45-9057-e5bf8e37014c', to_date('10/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2256, '"Insulin, human, rDNA origin (Inhalant)"', '1588986', '"insulin human, rDNA origin"', '4e25a881-dfc3-44a2-9ede-49f7443776d8', to_date('4/18/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2257, 'INTELENCE (Oral Pill)', '1758536', 'etravirine', '1b5a2dc7-0570-4977-876d-88b4176844a1', to_date('3/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2258, 'Interferon Alfa-2b (Injectable)', '1380068', 'Interferon Alfa-2b', '30789790-8317-49f9-b97b-8c5ba17b53d2', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2259, 'Interferon alfacon-1 (Injectable)', '1781314', 'interferon alfacon-1', 'a7248eca-45d6-472d-8c2a-d8887c2594d5', to_date('4/18/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2260, 'Interferon beta-1a (Injectable)', '722424', 'Interferon beta-1a', '0de49d64-3e18-494c-bf14-bc152247c798', to_date('10/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2261, 'Interferon beta-1b (Injectable)', '713196', 'interferon beta-1b', '261fde67-efb2-4bd7-947e-4f68a56e76ff', to_date('4/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2262, 'Interferon gamma-1b (Injectable)', '1380191', 'Interferon gamma-1b', '498b2231-65e8-4b27-947b-8d1f6f91289c', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2263, 'INTERMEZZO (Sublingual)', '744740', 'zolpidem', '913b6cfe-1fb0-44a8-817a-26374bbce995', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2264, 'INTRALIPID (Injectable)', '19013789', 'EGG YOLK PHOSPHOLIPIDS', '55609586-f0b4-42e6-8dd9-cd090afb5dca', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2265, 'INTRON A (Injectable)', '1380068', 'Interferon Alfa-2b', '30789790-8317-49f9-b97b-8c5ba17b53d2', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2266, 'INVIRASE (Oral Pill)', '1746244', 'Saquinavir', 'b8b53129-06ab-4143-b9b7-7675e49a52ef', to_date('9/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2267, 'INVOKAMET (Oral Pill)', '43526465', 'canagliflozin', '6868666b-c25e-40d1-9d1f-306bbe9390c1', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2268, 'INZO (Topical)', '907879', 'Miconazole', '3afb78ad-af6e-47f6-b142-6cce45bd5e9e', to_date('4/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2269, 'Iodine (Topical)', '1780601', 'Iodine', '615e3547-4e5e-44fc-8f89-712243d30a1e', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2270, 'Iodine povacrylex/Isopropyl Alcohol (Topical)', '19125582', 'iodine povacrylex', 'd35a9f96-a0db-4060-9f9d-ba2117288fd0', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2271, 'Iodine/Potassium Iodide (Oral Liquid)', '1780601', 'Iodine', 'cf5b0102-4f76-4f9e-907a-bf9425890aea', to_date('11/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2272, 'Iodine/Potassium Iodide (Topical)', '1780601', 'Iodine', '7d8f4f37-948c-4740-8e23-2f23e47ebd5b', to_date('11/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2273, 'IOPIDINE (Ophthalmic)', '919986', 'apraclonidine', 'de798d0d-a93c-40fb-95ea-10a4e6b287b7', to_date('7/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2274, 'IOSAT (Oral Pill)', '19049909', 'Potassium Iodide', 'ea98aef8-93b6-4fac-be35-eb17a1a04a92', to_date('4/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2275, 'Ipratropium (Inhalant)', '1112921', 'Ipratropium', '769febba-671d-476b-b0c8-71489a2f9d20', to_date('10/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2276, 'IQUIX (Ophthalmic)', '1742253', 'Levofloxacin', '067ea8ec-99a3-4a0b-9116-4ffd6160b24b', to_date('4/29/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2277, 'Irbesartan (Oral Pill)', '1347384', 'irbesartan', 'bba6b8f0-daf5-4b0b-bd07-4f59aa679077', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2278, 'IRESSA (Oral Pill)', '1319193', 'gefitinib', '827d60e8-7e07-41b7-c28b-49ef1c4a5a41', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2279, 'Irinotecan (Injectable)', '1367268', 'irinotecan', '407e0758-9e2e-4e45-8c1b-10cfd2115b1f', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2280, 'Iron Carbonyl (Chewable)', '1400498', 'Iron Carbonyl', '5c8d104d-feb4-4a1b-aa1c-b2ebbcbc5ccc', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2281, 'Iron Carbonyl (Oral Liquid)', '1400498', 'Iron Carbonyl', 'a7cd1b35-93d6-eb31-3924-eda5c7c0b335', to_date('10/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2282, 'Iron-Dextran Complex (Injectable)', '1381661', 'Iron-Dextran Complex', '77f5ae2a-8cd3-4f01-bddd-8158f932c8db', to_date('7/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2283, 'ISENTRESS (Oral Pill)', '1712889', 'raltegravir', 'e463b253-ad05-4e5c-8a3b-595d55c56ed7', to_date('4/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2284, 'ISMO (Oral Pill)', '1383815', 'Isosorbide', 'ec09ab1c-52fa-4f41-bf65-a632dce8f097', to_date('4/26/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2285, 'ISMOTIC PB (Oral Liquid)', '1383815', 'Isosorbide', 'f305b18b-8506-4414-87a1-10aa3b76a691', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2286, 'ISOCAINE (Injectable)', '702774', 'Mepivacaine', '53eda85c-65cd-4d6c-b4b7-eb3ae2942ed0', to_date('4/26/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2287, 'ISOCAINE WITH LEVONORDEFRIN (Injectable)', '19015395', 'Levonordefrin', '53eda85c-65cd-4d6c-b4b7-eb3ae2942ed0', to_date('4/26/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2288, 'Isocarboxazid (Oral Pill)', '781705', 'Isocarboxazid', 'ac387aa0-3f04-4865-a913-db6ed6f4fdc5', to_date('3/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2289, 'Isoflurane (Inhalant)', '782043', 'Isoflurane', 'd6851c71-0c2f-43f6-883c-a43fe894985d', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2290, 'ISONARIF (Oral Pill)', '1782521', 'isoniazid', '1d3f27ec-1616-40fd-bc4f-91bb1744ceb0', to_date('4/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2291, 'Isoniazid (Oral Liquid)', '1782521', 'isoniazid', '0044ca87-ab7e-4955-a77f-e8fd665ce2ae', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2292, 'Isoniazid (Oral Pill)', '1782521', 'isoniazid', '60a6b514-fa7f-4bc7-85b0-e5a14fa56b59', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2293, 'Isoniazid/Pyrazinamide/Rifampin (Oral Pill)', '1782521', 'isoniazid', '429a2f62-9fe6-4299-b314-92a9d22b1381', to_date('4/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2294, 'Isoniazid/Rifampin (Oral Pill)', '1782521', 'isoniazid', '3cc36609-8e2d-4caa-a8e0-c0367e3e52df', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2295, 'Isopropyl Alcohol (Otic)', '19028106', 'Isopropyl Alcohol', 'cb566013-3fc4-4636-b214-3de64ce73b91', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2296, 'Isopropyl Alcohol (Topical)', '19028106', 'Isopropyl Alcohol', 'bc1cd6bf-99b6-48d5-ad59-f56bd3026d47', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2297, 'Isopropyl Alcohol/Povidone-Iodine (Topical)', '19028106', 'Isopropyl Alcohol', '76615174-e530-4e88-a02c-2f7d0b5a5b04', to_date('5/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2298, 'Isopropyl unoprostone (Ophthalmic)', '915829', 'isopropyl unoprostone', '53d05ced-51dd-11de-8a39-0800200c9a66', to_date('1/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2299, 'ISOPTIN XR (Oral Pill)', '1307863', 'Verapamil', '6ae13cb4-0316-40d1-9216-c7d5556aaed3', to_date('5/22/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2300, 'ISOPTO ALKALINE (Ophthalmic)', '902251', 'hypromellose', 'f1753a5b-7ba8-103d-6fe4-d93a3fc5f803', to_date('9/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2301, 'ISOPTO CETAMIDE (Ophthalmic)', '1036252', 'Sulfacetamide', '5a5d8fee-b42a-4f0c-a508-75c7c71bedb4', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2302, 'ISOPTOCARPINE (Ophthalmic)', '945286', 'Pilocarpine', '22e4c7f4-bbd0-4e74-85da-bb56fc377568', to_date('8/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2303, 'ISORDIL (Oral Pill)', '1383925', 'Isosorbide Dinitrate', '0e5bc1a3-6e3c-4ab9-856f-fd953eacf867', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2304, 'Isosorbide (Oral Liquid)', '1383815', 'Isosorbide', 'f305b18b-8506-4414-87a1-10aa3b76a691', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2305, 'Isosorbide (Oral Pill)', '1383815', 'Isosorbide', 'b35a72bb-c06b-4671-8dc2-ce0ccdf45ce9', to_date('4/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2306, 'Isosorbide Dinitrate (Oral Pill)', '1383925', 'Isosorbide Dinitrate', '873add22-4b78-459c-8418-b5392072a2a9', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2307, 'Isosorbide Dinitrate (Sublingual)', '1383925', 'Isosorbide Dinitrate', '8020edd0-b9e6-428c-a534-fb8f780fbdf1', to_date('6/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2308, 'Isosorbide Dinitrate XR (Oral Pill)', '1383925', 'Isosorbide Dinitrate', 'bf6d4c62-14a4-423b-bdbf-676375f5cb8d', to_date('11/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2309, 'ISOtretinoin (Oral Pill)', '984232', 'Isotretinoin', 'ee862463-77c0-4694-bba8-97274f13963f', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2310, 'Isoxsuprine (Oral Pill)', '1384360', 'Isoxsuprine', '6baec489-724b-4184-9529-7b9ca3573025', to_date('12/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2311, 'Isradipine (Oral Pill)', '1326012', 'Isradipine', 'ac51d3e3-ed76-e033-e1d6-1ffbd14d94c2', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2312, 'ISTALOL (Ophthalmic)', '902427', 'Timolol', '80fa20dc-b181-48be-83ce-d66a83753878', to_date('3/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2313, 'ISTODAX (Injectable)', '40168385', 'romidepsin', '6005c345-ccf9-4fff-8660-3fd73485b0d9', to_date('1/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2314, 'ITCH-X (Topical)', '919681', 'Benzyl Alcohol', '03f85dbb-a13a-3126-e054-00144ff8d46c', to_date('9/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2315, 'Itraconazole (Oral Pill)', '1703653', 'Itraconazole', '6242b7ad-eaa0-a524-b6e0-ec33e63407db', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2316, 'Ivermectin (Topical)', '1784444', 'Ivermectin', '4c5557cd-c4cf-11df-851a-0800200c9a66', to_date('7/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2317, 'IVY BLOCK (Topical)', '915518', 'bentoquatam', 'd3b3f56d-d1d5-4435-8ac7-a2118f108a9b', to_date('5/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2318, 'IVY-DRY CREAM (Topical)', '919681', 'Benzyl Alcohol', '5fe81556-5b5f-4765-9136-796e4974aed0', to_date('3/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2319, 'J-COF DHC (Oral Liquid)', '1130863', 'Brompheniramine', '4de68448-1f01-4ca1-b002-15589999de0f', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2320, 'J-MAX (Oral Liquid)', '1163944', 'Guaifenesin', 'f8376d51-3fa8-4ac5-b074-83e3c81b96ba', to_date('10/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2321, 'J-MAX DHC (Oral Liquid)', '1189596', 'dihydrocodeine', '61e61344-bf91-4742-be57-d74b30cfa4ad', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2322, 'Jack pine pollen extract (Injectable)', '40228279', 'jack pine pollen extract', '3b904f52-6163-4095-a456-11b3018b227a', to_date('12/15/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2323, 'JALYN (Oral Pill)', '989482', 'Dutasteride', 'f96c6acd-4d02-4ece-bd54-2d5a35aab7f5', to_date('5/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2324, 'JANTOVEN (Oral Pill)', '1310149', 'Warfarin', 'f11079c4-f085-4558-bee9-c159525b2497', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2325, 'JANUMET (Oral Pill)', '1503297', 'Metformin', 'e1af8ccb-ad50-452b-af44-022c9a0cb0ed', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2326, 'JANUVIA (Oral Pill)', '1580747', 'sitagliptin', '29f3dcc4-1ca9-46c5-aa12-9ba76caff326', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2327, 'Japanese black pine pollen extract (Injectable)', '40173046', 'Japanese black pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2328, 'JARDIANCE (Oral Pill)', '45774751', 'empagliflozin', 'faf3dd6a-9cd0-39c2-0d2e-232cb3f67565', to_date('7/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2329, 'Jerusalem oak pollen extract (Injectable)', '40228461', 'Jerusalem oak pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2330, 'JETREA (Injectable)', '42904298', 'ocriplasmin', '390682b7-72c4-11e1-b0c4-0800200c9a66', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2331, 'JINTELI (Oral Pill)', '1549786', 'Ethinyl Estradiol', 'd667ca75-1a17-43fc-9077-f25ce0908f8d', to_date('3/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2332, 'Johnson grass smut extract (Injectable)', '40161260', 'Johnson grass smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2333, 'Jute fiber extract (Injectable)', '40161738', 'jute fiber extract', 'd71013ab-718c-4cb0-ae1a-31fdd6db8851', to_date('12/18/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2334, 'K-PHOS (Oral Liquid)', '19027362', 'potassium phosphate', '04557ab3-6d21-49b4-b849-744c75b8a630', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2335, 'K-PHOS NEUTRAL (Oral Pill)', '19027362', 'potassium phosphate', '83376725-ee0f-40ad-bd90-31a61b9445cf', to_date('10/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2336, 'K-PHOS NO 2 (Oral Pill)', '19027362', 'potassium phosphate', '9f446400-c403-4971-879e-1341f7f7d9da', to_date('10/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2337, 'K-TAB XR (Oral Pill)', '19049105', 'Potassium Chloride', 'a269accf-8520-48eb-8164-adaa3f462d67', to_date('8/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2338, 'KADIAN XR (Oral Pill)', '1110410', 'Morphine', '58159bbc-d862-4a2a-8486-874e0007487b', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2339, 'KALETRA (Oral Pill)', '1738170', 'lopinavir', 'dac2ea61-f5ce-45b8-b4aa-d761c5aecd74', to_date('10/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2340, 'Kanamycin (Injectable)', '1784749', 'Kanamycin', 'd4865638-1259-4eef-a73c-fe919af6e850', to_date('5/29/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2341, 'KAOPECTATE REFORMULATED AUG 2006 (Oral Liquid)', '933794', 'attapulgite', 'db9c4b93-d5f2-4237-973e-75535024b9f5', to_date('1/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2342, 'KAOPECTATE REFORMULATED AUG 2006 (Oral Pill)', '933794', 'attapulgite', '9d15ff85-9a7c-42fe-bd85-bcbf7711c277', to_date('9/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2343, 'KAYEXALATE (Oral Liquid)', '19078126', 'Sodium polystyrene sulfonate', 'e7808d28-9d96-4dde-81bc-5c8357cba004', to_date('9/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2344, 'KAZANO (Oral Pill)', '43013884', 'alogliptin', '83cb7914-a683-47bb-a713-f2bc6a596bd2', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2345, 'KEDBUMIN (Injectable)', '1344143', '"Albumin Human, USP"', '57bd6811-8619-11e0-9d78-0800200c9a66', to_date('11/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2346, 'KEFLEX (Oral Pill)', '1786621', 'Cephalexin', '68fba58a-7748-4581-8432-f5286c46d90a', to_date('2/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2347, 'KEMSTRO (Oral Disintegrating)', '715233', 'Baclofen', 'f133fe04-1550-4fa4-9dc4-652c27936bf2', to_date('9/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2348, 'KENALOG (Injectable)', '903963', 'Triamcinolone', '7bda15b1-d50d-4b1a-83a2-d9a450961bcf', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2349, 'KENALOG (Topical)', '903963', 'Triamcinolone', 'cdf6c80c-ddbd-498f-8897-3c0feebafe31', to_date('7/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2350, 'Kentucky bluegrass pollen extract (Injectable)', '40161228', 'Kentucky bluegrass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2351, 'KEPPRA (Injectable)', '711584', 'Levetiracetam', '90b553fe-4e94-4cce-b5df-ea3e6487930d', to_date('10/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2352, 'KEPPRA (Oral Pill)', '711584', 'Levetiracetam', 'd317020c-0850-4a5b-b344-74ad10b0b089', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2353, 'KERALAC (Topical)', '906914', 'Urea', 'eccfae7f-4b53-4781-b198-f7c18366bfc9', to_date('5/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2354, 'KERALYT (Shampoo)', '964407', 'Salicylic Acid', '26e112b1-a64f-447c-a892-c83155ba1853', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2355, 'KERALYT 5 (Topical)', '964407', 'Salicylic Acid', 'f36792ab-d519-41af-a9dc-27e6ef0414ae', to_date('11/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2356, 'KETALAR (Injectable)', '785649', 'Ketamine', '9f675d38-d02f-455c-bc99-bac5924f5054', to_date('10/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2357, 'Ketamine (Injectable)', '785649', 'Ketamine', '57ec7d99-c36d-444e-8a2c-78a3b5798163', to_date('6/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2358, 'KETEK (Oral Pill)', '1702911', 'telithromycin', 'ba1cca98-f350-4655-88e3-6ef990779fb9', to_date('3/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2359, 'Ketoconazole (Oral Pill)', '985708', 'Ketoconazole', '72c743b9-cb85-46e8-873a-b84e6d1b5250', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2360, 'Ketoconazole (Shampoo)', '985708', 'Ketoconazole', 'efbc6388-90ce-11de-b92c-8b7156d89593', to_date('6/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2361, 'Ketoconazole (Topical)', '985708', 'Ketoconazole', '7a18a4f4-5487-4cf6-a46d-58369dc5833c', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2362, 'Ketoprofen (Oral Pill)', '1185922', 'Ketoprofen', 'b3180408-a3c0-4e02-8535-dea390a52277', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2363, 'Ketorolac (Injectable)', '1136980', 'Ketorolac', '62591551-a644-4b2c-a0de-982e906fabc3', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2364, 'Ketorolac (Ophthalmic)', '1136980', 'Ketorolac', '8c90a3ac-ab76-405d-adc2-2f9ea3e3f250', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2365, 'Ketorolac (Oral Pill)', '1136980', 'Ketorolac', '2837a082-3a34-6f81-5e43-45a70295686b', to_date('7/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2366, 'Ketotifen (Ophthalmic)', '986117', 'Ketotifen', 'a08f22d5-4486-4bd8-a234-f8ce30e7d708', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2367, 'KINEVAC (Injectable)', '19067803', 'Sincalide', '1408aabb-6982-48e5-ae9f-504ec43b0003', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2368, 'KLARON (Topical)', '1036252', 'Sulfacetamide', '66ab38ea-5cea-47be-97f2-486517999fb0', to_date('12/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2369, 'KlonoPIN (Oral Pill)', '798874', 'Clonazepam', '542f22e8-dad2-47a8-93b6-30936715d73b', to_date('12/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2370, 'KLOR-CON (Oral Liquid)', '19049105', 'Potassium Chloride', '1cd90949-3588-49b4-adf3-b70f2ee8f2ef', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2371, 'KLOR-CON XR (Oral Pill)', '19049105', 'Potassium Chloride', '65a86e85-b4ee-4244-8dfe-c078a9485410', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2372, 'KLOR-CON/EF (Effervescent)', '19027080', 'potassium bicarbonate', '731d4e0d-e73b-41ef-a39f-c356d999734d', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2373, 'KOGENATE (Injectable)', '1352213', 'Factor VIII', '6d2e4c97-0fb1-4ba4-9c58-3de071029e9b', to_date('8/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2374, 'KOLA-PECTIN (Oral Liquid)', '937791', 'bismuth subsalicylate', '5310c125-1b3b-4511-8a71-06aa42891dc1', to_date('1/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2375, 'KOLORZ (Oral Foam)', '19069022', 'Sodium Fluoride', '873dd35e-ed1a-4f2b-bd7d-237f73ed8f8e', to_date('3/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2376, 'KONSYL (Oral Liquid)', '957797', 'Psyllium', '6c876cf1-c2ab-4bdc-bb3e-ac2ce5863649', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2377, 'KONSYL (Oral Pill)', '957797', 'Psyllium', 'ab185f98-fe41-41e5-991d-0ea37dfa5958', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2378, 'KONSYL SENNA PROMPT (Oral Pill)', '957797', 'Psyllium', '3b5e5397-fe64-48c5-8607-47c0a0900953', to_date('12/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2379, 'KORLYM (Oral Pill)', '1508439', 'Mifepristone', '542f3fae-8bc8-4f00-9228-e4b66c9ad6a9', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2380, 'KRISTALOSE (Oral Liquid)', '987245', 'Lactulose', '535dd1ea-b567-49f7-9a84-8ea91e78c466', to_date('9/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2381, 'KRYSTEXXA (Injectable)', '40226208', 'Pegloticase', '5f4574d1-401f-4647-83e5-28c0f4a122a7', to_date('4/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2382, 'Labetalol (Injectable)', '1386957', 'Labetalol', 'f6e529bf-fe4d-4091-a3c2-774245b5f0a1', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2383, 'Labetalol (Oral Pill)', '1386957', 'Labetalol', '4b0a80fc-51d6-4a70-8ebb-6a403ab91f4f', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2384, 'LAC-HYDRIN (Topical)', '19011035', 'Lactate', '807054c6-2dae-4cc2-b790-674ab66cf79b', to_date('2/18/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2385, 'LAC-HYDRIN TEN (Topical)', '19011035', 'Lactate', 'b73836e9-7ccc-41bb-b4ef-65ad2d865085', to_date('2/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2386, 'LACRISERT (Implant)', '19002257', 'hydroxypropylcellulose', 'cc7a6a52-0b77-4df7-8403-dd21c1334f6c', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2387, 'Lactate (Topical)', '19011035', 'Lactate', '736c1976-7448-4d04-8ca7-9455e4db96e8', to_date('5/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2388, 'Lactulose (Oral Liquid)', '987245', 'Lactulose', '8a42c3af-b08d-4fd4-b2f7-4eda676921f2', to_date('2/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2389, 'LaMICtal (Oral Pill)', '705103', 'lamotrigine', '22a9788c-5a9b-411e-844e-4a0b12d1d095', to_date('12/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2390, 'LamISIL (Topical)', '1741309', 'terbinafine', 'c7f36b7b-f205-4de5-b083-acea57281871', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2391, 'LAMISIL DEFENSE (Topical)', '902950', 'Tolnaftate', 'c0ad1ce5-bdb3-43cc-8d07-84f250eb289f', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2392, 'lamiVUDine (Oral Pill)', '1704183', 'Lamivudine', 'bd55dd57-348c-4d78-b322-d1ae10279298', to_date('8/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2393, 'lamiVUDine/Zidovudine (Oral Pill)', '1704183', 'Lamivudine', '16da660b-9981-4d24-a14a-94c7744fce4f', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2394, 'lamoTRIgine (Chewable)', '705103', 'lamotrigine', 'a7455849-968d-4d85-8733-1e01701d7942', to_date('4/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2395, 'lamoTRIgine (Oral Disintegrating)', '705103', 'lamotrigine', '380bddae-5b31-4965-96de-97711d859d11', to_date('2/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2396, 'lamoTRIgine (Oral Pill)', '705103', 'lamotrigine', '9b057910-de40-3a17-2d52-8b520d5e0cbc', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2397, 'LANACANE (Topical)', '916802', 'Benzethonium', '4b965cd3-bfe4-4aad-a52c-b747696baa1c', to_date('12/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2398, 'Lanolin (Topical)', '19087317', 'Lanolin', '3c8ac730-3e34-4368-9cb3-7047b7149fe3', to_date('10/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2399, 'Lanolin/Petrolatum (Topical)', '19087317', 'Lanolin', 'beed4a17-c617-49c7-9954-470c02cfbbeb', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2400, 'LANOXIN (Injectable)', '1326303', 'Digoxin', 'bf0bcd81-38b8-482f-8865-61d8fb9a5c59', to_date('1/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2401, 'LANOXIN (Oral Pill)', '1326303', 'Digoxin', '0b96049b-e6b9-4ebb-bfe9-d5a73ed4f66b', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2402, 'Lansoprazole (Oral Disintegrating)', '929887', 'lansoprazole', '7140f8d9-e478-4f69-a4eb-3fd4c9414576', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2403, 'Lansoprazole (Oral Pill)', '929887', 'lansoprazole', '70bade45-0d35-46db-964e-a8ad9dd91646', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2404, 'Lanthanum carbonate (Chewable)', '990028', 'lanthanum carbonate', '21bc55ec-5f23-4d0b-9488-d5b08b7c0fc2', to_date('4/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2405, 'LANTISEPTIC (Topical)', '19087317', 'Lanolin', '0fb56eed-66b6-4aa8-80b4-67015b99cd08', to_date('1/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2406, 'LANTISEPTIC MULTI-PURPOSE (Topical)', '902616', 'Calamine', '4cc157aa-cdab-4ac2-bec4-647d26a4d7ee', to_date('1/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2407, 'LANTUS (Injectable)', '1502905', 'Insulin Glargine', '13cfe263-6a6a-4b0f-94f4-771ab6a105c0', to_date('11/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2408, 'LASTACAFT (Ophthalmic)', '40224159', 'alcaftadine', 'c192fecc-046d-4905-868f-b8200320309c', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2409, 'Latanoprost (Ophthalmic)', '954688', 'latanoprost', 'e2e7999b-ea0b-69d0-4ad0-c214601f97a7', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2410, 'LATRIX (Topical)', '906914', 'Urea', '2b7add8d-2a6a-436c-9c1e-f94e67683efb', to_date('7/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2411, 'LATUDA (Oral Pill)', '40230761', 'lurasidone', '88a244d1-eddb-499c-bee2-e1f49056e78f', to_date('11/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2412, 'LAVIV (Injectable)', '40241205', 'azficel-T', '4a41354f-c689-4216-82cc-bfc572f16374', to_date('1/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2413, 'Ledipasvir/Sofosbuvir (Oral Pill)', '45775020', 'ledipasvir', '1a1c555d-2fdf-4150-8ace-dbc770c226bf', to_date('12/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2414, 'Leflunomide (Oral Pill)', '1101898', 'leflunomide', '753453c5-8a7a-878e-3ce7-1d1edce718a9', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2415, 'LEGATRIN PM (Oral Pill)', '1125315', 'Acetaminophen', 'c7646e78-e88d-4f61-9075-b912fe5578fc', to_date('8/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2416, 'LEMTRADA (Injectable)', '1312706', 'alemtuzumab', '6236b0bc-82e9-4447-9a78-f57d94770269', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2417, 'LENZAGEL (Topical)', '989878', 'Lidocaine', 'f52cc82a-e5fd-494a-942f-372e2eb46fcb', to_date('9/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2418, 'LENZAPATCH (Transdermal)', '989878', 'Lidocaine', 'a4ba3e83-ca7c-4ff2-824c-77fe08e1586c', to_date('12/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2419, 'LESCOL (Oral Pill)', '1549686', 'fluvastatin', 'e38126a5-9d6a-422f-812c-a01610108162', to_date('4/5/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2420, 'Letrozole (Oral Pill)', '1315946', 'letrozole', '6cfd29d7-f519-7b8c-4814-07b39f367f0d', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2421, 'Leucovorin (Injectable)', '1388796', 'Leucovorin', 'ab691d4e-e0d1-4ba1-9c7a-1cdcfcc3c17c', to_date('3/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2422, 'Leucovorin (Oral Pill)', '1388796', 'Leucovorin', '084227c1-90eb-4653-807a-eb98cb3cefb8', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2423, 'LEUKERAN (Oral Pill)', '1390051', 'Chlorambucil', '967ed3ff-d99b-41e8-b768-dfb586d3d9a6', to_date('6/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2424, 'LEUKINE (Injectable)', '1308432', 'sargramostim', 'c96afe62-f0cf-4d4b-b57d-194a8ec12389', to_date('8/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2425, 'Leuprolide (Injectable)', '1351541', 'Leuprolide', 'a3b01473-30c7-4945-bd60-2484221aaaad', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2426, 'Levalbuterol (Inhalant)', '1192218', 'Levalbuterol', '0c47c47d-45f7-4eb4-b1f8-7d6c633a1f69', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2427, 'LEVAQUIN (Oral Pill)', '1742253', 'Levofloxacin', '139f86a4-75c5-4304-894c-8f8b8a396c78', to_date('7/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2428, 'LEVEMIR (Injectable)', '1516976', 'insulin detemir', '2b8d9730-686b-444b-9941-7b5877255924', to_date('9/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2429, 'levETIRAcetam (Injectable)', '711584', 'Levetiracetam', 'f00d8f59-c333-48ad-aca3-98a49bcd228e', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2430, 'levETIRAcetam (Oral Liquid)', '711584', 'Levetiracetam', 'd57044c1-9222-4127-a491-3328324fb4b2', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2431, 'levETIRAcetam (Oral Pill)', '711584', 'Levetiracetam', 'a4f7e6ed-992b-4217-82d8-658036d12faa', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2432, 'LEVITRA (Oral Pill)', '1311276', 'vardenafil', 'f18a82f7-ce44-4f9c-ae69-d3ad1d375564', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2433, 'Levobunolol (Ophthalmic)', '932815', 'Levobunolol', '5ab1efbe-530b-4787-b40a-c7dbf18161e1', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2434, 'levOCARNitine (Injectable)', '1553610', 'Levocarnitine', 'cc4da2c3-f939-444d-9b5b-a57b6051c190', to_date('8/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2435, 'levOCARNitine (Oral Liquid)', '1553610', 'Levocarnitine', 'b2cbc620-59fd-47b6-9e4b-7e3e31533a1c', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2436, 'levOCARNitine (Oral Pill)', '1553610', 'Levocarnitine', '479e0e78-9b6e-4991-80f3-e92386722765', to_date('8/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2437, 'Levocetirizine (Oral Liquid)', '1136422', 'levocetirizine', 'df2a19c7-f437-425c-8253-a2523122a653', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2438, 'Levocetirizine (Oral Pill)', '1136422', 'levocetirizine', '4f43d057-cba8-4366-86ba-4be361e4c71f', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2439, 'Levofloxacin (Ophthalmic)', '1742253', 'Levofloxacin', 'f79d2ae4-ccfb-49ca-bf0e-e505f3477d30', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2440, 'Levofloxacin (Oral Pill)', '1742253', 'Levofloxacin', '814450ae-439e-4a5d-8c60-9b21b6f14be5', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2441, 'Levoleucovorin (Injectable)', '40168303', 'levoleucovorin', 'f977c9bb-bef1-4746-9894-4c29a1fdb0d8', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2442, 'Levomefolic Acid (Oral Pill)', '40228423', 'Levomefolic Acid', '8132454a-6135-4bac-b206-83a55eb8dbc6', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2443, 'Levonorgestrel (Implant)', '1589505', 'Levonorgestrel', '9f44ff35-e052-49cd-a1c2-0bfd87d49309', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2444, 'Levonorgestrel (Oral Pill)', '1589505', 'Levonorgestrel', '38c26cb9-052e-426f-9916-c13e7a5e62d0', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2445, 'LEVOPHED (Injectable)', '1321341', 'Norepinephrine', '8c9dc6eb-e53a-4cc0-92c3-7a53d268cf93', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2446, 'Levorphanol (Oral Pill)', '1189766', 'Levorphanol', '77f4a54a-6901-46d9-93db-ad4be7eae6c3', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2447, 'LEVOTHROID (Oral Pill)', '1501700', 'Thyroxine', '101de879-bb0a-4157-9c0d-2c5720dd454e', to_date('3/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2448, 'Levothyroxine (Injectable)', '1501700', 'Thyroxine', 'ce990712-49c1-4f66-9ee4-c770e8ec394c', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2449, 'Levothyroxine (Oral Pill)', '1501700', 'Thyroxine', 'a0bef5df-f192-4c0b-be61-2f28b982e8fd', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2450, 'Levothyroxine/Triiodothyronine (Oral Pill)', '1501700', 'Thyroxine', '7d028b83-5166-4b2e-b442-ba6cbfefbfd6', to_date('5/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2451, 'LEVOXYL (Oral Pill)', '1501700', 'Thyroxine', '758588c3-c63e-491b-0aa2-4f50d80cb174', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2452, 'LEVSIN (Injectable)', '923672', 'Hyoscyamine', 'dd2e786c-29a7-40f8-a5f3-7641413f5036', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2453, 'LEVSIN (Sublingual)', '923672', 'Hyoscyamine', 'f38ece41-b890-11e2-9e96-0800200c9a66', to_date('5/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2454, 'LEVULAN (Topical)', '924120', 'Aminolevulinate', 'e45cc371-9ebc-4904-12bc-65cb4e2817ad', to_date('1/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2455, 'LEXAPRO (Oral Pill)', '715939', 'Escitalopram', '16c67e3e-9928-4ad8-b850-84ec4d333e9b', to_date('4/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2456, 'LEXIVA (Oral Pill)', '1736829', 'fosamprenavir', '009575f9-74e8-4a6d-9fa6-3cae72fd01c3', to_date('5/26/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2457, 'LIALDA (Oral Pill)', '968426', 'mesalamine', '07e5ac9c-a5b2-42dc-84fa-963dbc51ba21', to_date('12/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2458, 'LIBRAX (Oral Pill)', '990678', 'Chlordiazepoxide', 'f99ebf66-f207-4a97-9666-4da1d72b061c', to_date('1/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2459, 'LICE MD (Topical)', '946340', 'Piperonyl Butoxide', '7509990f-0bc8-44dc-9678-05b27f2c1368', to_date('9/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2460, 'Lidocaine (Injectable)', '989878', 'Lidocaine', '331f6960-a09d-4513-9e6b-a03527d9131e', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2461, 'Lidocaine (Mucosal)', '989878', 'Lidocaine', '8a4c45c0-7eae-4296-ae2e-6d618228dc8b', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2462, 'Lidocaine (Rectal)', '989878', 'Lidocaine', 'bf08d3c1-f3ef-4307-ba99-b20e31a3e8f0', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2463, 'Lidocaine (Topical)', '989878', 'Lidocaine', 'c913688b-c51d-44c2-8ce6-5200f1ea0bab', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2464, 'Lidocaine (Transdermal)', '989878', 'Lidocaine', '55be87b4-a69b-4bfd-bf92-2949ec5e5dab', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2465, 'Lidocaine/Menthol (Topical)', '989878', 'Lidocaine', 'e8aa0e47-68e1-462c-a609-58548448da44', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2466, 'Lidocaine/Menthol (Transdermal)', '989878', 'Lidocaine', '3f541c7c-e6d6-47cb-8406-865bc61f8c5d', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2467, 'Lidocaine/Prilocaine (Mucosal)', '989878', 'Lidocaine', 'b501d239-923b-48b2-82ed-6c5c253a67e2', to_date('8/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2468, 'Lidocaine/Prilocaine (Topical)', '989878', 'Lidocaine', 'c05f3803-92ae-42b7-8248-933bd92d6116', to_date('7/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2469, 'Lidocaine/Tetracaine (Transdermal)', '989878', 'Lidocaine', 'b3eee508-8bf3-4bd3-9a71-47ee6ea87f95', to_date('3/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2470, 'LIDOCREAM (Topical)', '989878', 'Lidocaine', '298401a9-8584-4801-af96-81d464d220bb', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2471, 'LIDODERM (Transdermal)', '989878', 'Lidocaine', '18e420b9-0fd1-48d9-9a23-c1e29a5f629f', to_date('9/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2472, 'LIDOSITE (Transdermal)', '1343916', 'Epinephrine', '82b5bf2c-7dc9-40bd-9fb4-b5b1b5be0470', to_date('9/14/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2473, 'LIGNOSPAN (Injectable)', '1343916', 'Epinephrine', '82e7d9d8-bad8-4dac-8e2c-29e834fc6dbf', to_date('12/19/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2474, 'Linagliptin (Oral Pill)', '40239216', 'Linagliptin', 'dfe327e8-f6ab-41e5-bdef-d520118cd83a', to_date('7/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2475, 'Lincomycin (Injectable)', '1790692', 'Lincomycin', '0f6a98ff-c908-48a8-ae17-c8b32f4396a3', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2476, 'Lindane (Shampoo)', '916751', 'Lindane', '56158fc4-590f-4e8c-bf94-610a3cfc11c1', to_date('7/2/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2477, 'Lindane (Topical)', '916751', 'Lindane', '54b9526e-29ab-46b0-ab82-d765fbee5c6f', to_date('1/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2478, 'Linezolid (Oral Pill)', '1736887', 'linezolid', '2a02e028-263f-4673-ae85-19b784bd118c', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2479, 'LIPITOR (Oral Pill)', '1545958', 'atorvastatin', '76a76f8e-d7c6-4621-b0a4-d5db0c24f089', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2480, 'LIPODOX (Injectable)', '19051649', 'doxorubicin liposome', '1d5beebf-77f3-47ca-a9a1-5f64f42fed07', to_date('5/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2481, 'LIPTRUZET (Oral Pill)', '1545958', 'atorvastatin', 'c387354c-607b-474d-b2e5-d35c789ce09b', to_date('9/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2482, 'Lisdexamfetamine (Oral Pill)', '709567', 'Lisdexamfetamine', 'a310fc51-2743-4755-8398-fed5402283f6', to_date('1/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2483, 'Lisinopril (Oral Pill)', '1308216', 'Lisinopril', '69b41c71-b39e-43cf-94b7-8909ae9fd1fa', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2484, 'LISTERINE (Mouthwash)', '19069022', 'Sodium Fluoride', '283fea4d-a8e5-42fa-8617-da9235b8be85', to_date('10/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2485, 'LISTERINE ANTISEPTIC (Mouthwash)', '19050346', 'Eucalyptol', 'd38a273c-3833-4459-9e80-c2b0c779772e', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2486, 'LISTERINE ESSENTIAL CARE TARTAR CONTROL (Toothpaste)', '19068715', 'monofluorophosphate', '84f70fea-d730-49ee-ab74-cd280ed6d506', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2487, 'LITHANE (Oral Pill)', '751246', 'Lithium Carbonate', '42bed965-4b8f-4471-bcc9-091f87238653', to_date('7/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2488, 'Lithium Carbonate (Oral Pill)', '751246', 'Lithium Carbonate', 'bc99fa8c-1d8b-4363-b616-548c62594076', to_date('10/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2489, 'Lithium Carbonate XR (Oral Pill)', '751246', 'Lithium Carbonate', '9efc1d04-7aae-4ca9-9af6-ea6f3e095db2', to_date('6/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2490, 'Lithium citrate (Oral Liquid)', '767410', 'lithium citrate', '1a04cc23-61fa-455b-9718-2cdcf54036e0', to_date('1/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2491, 'LITHOBID XR (Oral Pill)', '751246', 'Lithium Carbonate', 'ea4ece7f-e81f-48de-b262-577db5b6fe6c', to_date('7/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2492, 'LITTLE FEVERS (Oral Liquid)', '1125315', 'Acetaminophen', 'e1e44c85-d10c-4997-8f85-064cda7906eb', to_date('8/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2493, 'LITTLE OUCHIES (Topical)', '917006', 'Benzocaine', 'a4b73305-edf6-42cd-994a-0d7e3507a97d', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2494, 'LITTLE TUMMYS LAXATIVE DROPS (Oral Liquid)', '938268', '"sennosides, USP"', 'b2bf2d76-7dc0-4864-bfc2-ef41e155d316', to_date('9/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2495, 'LIVALO (Oral Pill)', '40165636', 'pitavastatin', '44dcbf97-99ec-427c-ba50-207e0069d6d2', to_date('10/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2496, 'Live oak pollen extract (Injectable)', '40167574', 'live oak pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2497, 'LMX (Rectal)', '989878', 'Lidocaine', '34f8ed6b-4a52-4a99-9c1b-254196dc29b0', to_date('8/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2498, 'LMX (Topical)', '989878', 'Lidocaine', 'f0e7c92f-8b0b-4045-b659-af9f6e81260f', to_date('6/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2499, 'Loblolly pine pollen extract (Injectable)', '40172266', 'loblolly pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2500, 'LOCOID (Topical)', '975125', 'Hydrocortisone', 'c7b4f583-2f79-4242-8ed2-d0e19ce8a510', to_date('11/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2501, 'Lodgepole pine pollen extract (Injectable)', '40172270', 'lodgepole pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2502, 'Lodgepole pine pollen extract/Yellow pine pollen extract (Injectable)', '40172270', 'lodgepole pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2503, 'LODOSYN (Oral Pill)', '740560', 'Carbidopa', '79e4ca99-7217-41bb-8ace-d0040b56e859', to_date('3/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2504, 'Lodoxamide (Ophthalmic)', '967496', 'Lodoxamide', '1b97597f-f2e7-4574-81a8-f35b769c957a', to_date('8/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2505, 'LODRANE D (Oral Pill)', '1130863', 'Brompheniramine', '4ae74ab3-c1f7-4347-9833-16553cf9969d', to_date('2/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2506, 'LOFIBRA (Oral Pill)', '1551803', 'Fenofibrate', '680a6740-8ea8-4a06-b659-41c2e5b1a4fd', to_date('8/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2507, 'Lombard poplar pollen extract/White poplar pollen extract (Injectable)', '40161316', 'Lombard poplar pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2508, 'LOMOTIL (Oral Pill)', '914335', 'Atropine', 'd2b171be-ac59-48ec-84da-03d3f2d34ca6', to_date('11/13/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2509, 'Lomustine (Oral Pill)', '1391846', 'Lomustine', '17893de9-7d54-448c-9fca-d10642046d14', to_date('12/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2510, 'Loperamide (Oral Liquid)', '991876', 'Loperamide', 'b5132a26-dc9f-4495-97fa-9225b87e1c8a', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2511, 'Loperamide (Oral Pill)', '991876', 'Loperamide', 'ab07bfd1-d2d3-427a-866d-89a10d40a4e9', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2512, 'Lopinavir/Ritonavir (Oral Pill)', '1738170', 'lopinavir', 'c7fc2d1e-802e-4da1-9763-3355f8aafe3a', to_date('10/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2513, 'LOPRESSOR (Oral Pill)', '1307046', 'Metoprolol', 'bb05420c-fd24-4672-9f62-fdd313819287', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2514, 'LOPRESSOR HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', 'd8964894-3cd8-41c1-a844-148d2ef38a88', to_date('10/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2515, 'LORADAMED (Oral Pill)', '1107830', 'Loratadine', '32092beb-c177-4b6b-afa4-b4b5d64621f4', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2516, 'Loratadine (Oral Disintegrating)', '1107830', 'Loratadine', '2f0ef205-49bb-4a74-b000-2f9823ec6179', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2517, 'Loratadine (Oral Liquid)', '1107830', 'Loratadine', '775731a2-9b30-4a0e-82fb-b517b36317c7', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2518, 'Loratadine (Oral Pill)', '1107830', 'Loratadine', 'b7c8c727-6498-40f4-942a-5b64f40641af', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2519, 'LORazepam (Injectable)', '791967', 'Lorazepam', '095ab8ff-83c5-4906-ae67-b04f4a58b58d', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2520, 'LORazepam (Oral Liquid)', '791967', 'Lorazepam', '711b60a3-028d-41d4-aa17-8f976e6df23e', to_date('12/6/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2521, 'LORazepam (Oral Pill)', '791967', 'Lorazepam', 'ba6ce50e-c5a9-47ca-9803-a1ed82172b0e', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2522, 'LORCET (Oral Pill)', '1125315', 'Acetaminophen', '7a1411e1-b705-43d9-a305-c020c9e3bf4d', to_date('4/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2523, 'LORTAB (Oral Liquid)', '1125315', 'Acetaminophen', '55386fe7-990a-4596-a109-a6553a57bc7c', to_date('5/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2524, 'LORTAB (Oral Pill)', '1125315', 'Acetaminophen', '6e48680d-b4ea-4eca-86ab-d9eb3434855b', to_date('8/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2525, 'LORTUSS EX (Oral Liquid)', '1201620', 'Codeine', '69ee642b-423c-4a68-8c16-cae09d3ef59d', to_date('8/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2526, 'LORTUSS LQ (Oral Liquid)', '738818', 'Doxylamine', 'fe74017b-3387-4e72-9e2d-9eb46465c3df', to_date('4/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2527, 'LORZONE (Oral Pill)', '795113', 'Chlorzoxazone', 'bdd61b83-5bcd-4d23-8ef5-aeb9ca2f7c14', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2528, 'Losartan (Oral Pill)', '1367500', 'Losartan', 'ab0863e8-cecd-4d66-85f4-72ceb684e97b', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2529, 'LOTEMAX (Ophthalmic)', '967562', 'loteprednol etabonate', '9a666065-d467-42b8-8ecd-0ec1de9986d5', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2530, 'LOTENSIN (Oral Pill)', '1335471', 'benazepril', '4d954024-a191-46e3-ba71-2a7d5b0c65d5', to_date('7/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2531, 'LOTENSIN HCT (Oral Pill)', '1335471', 'benazepril', '94c4536f-e28e-48b1-8336-b3939917e99d', to_date('3/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2532, 'Loteprednol etabonate (Ophthalmic)', '967562', 'loteprednol etabonate', '21c76da0-50a1-41c0-91b8-8cc4dcc27f60', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2533, 'LOTREL (Oral Pill)', '1332418', 'Amlodipine', '4653cabc-f249-4b4e-95b6-5fb4ddc0ad5d', to_date('3/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2534, 'LOTRIMIN (Topical)', '1000632', 'Clotrimazole', 'f9536683-3f32-4c71-9b6a-70f8611e3dcf', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2535, 'LOTRIMIN AF (Topical)', '907879', 'Miconazole', 'd6eb3b78-405b-43e5-9db5-da671465eda1', to_date('5/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2536, 'LOTRIMIN ULTRA (Topical)', '958396', 'butenafine', '0eadac26-4619-4227-9dda-28e739d77a87', to_date('8/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2537, 'LOTRONEX (Oral Pill)', '948555', 'alosetron', '526ba44c-a476-4675-a63c-4d0a72b723f5', to_date('6/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2538, 'Lovastatin (Oral Pill)', '1592085', 'Lovastatin', 'baf283fe-3ab2-460a-a53a-a8ad5d4743b9', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2539, 'LOVAZA (Oral Pill)', '1560305', 'Omega-3 Acid Ethyl Esters (USP)', 'fb2141cd-6cff-470c-b776-4482afcebb41', to_date('2/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2540, 'LOVENOX (Injectable)', '1301025', 'Enoxaparin', '53fd1302-9e1b-4e04-b06d-1a706547c388', to_date('11/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2541, 'Loxapine (Oral Pill)', '792263', 'Loxapine', 'a61ac8b0-d2eb-4546-a57b-2c296fb12699', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2542, 'LOZOL (Oral Pill)', '978555', 'Indapamide', '289796b5-f95c-4c40-bad7-d6359e0f7840', to_date('12/16/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2543, 'Lubiprostone (Oral Pill)', '987366', 'lubiprostone', '1b632d92-a05b-42d3-88a6-b3e345d11fe4', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2544, 'LUBRIFRESH P.M. (Ophthalmic)', '908523', 'Mineral Oil', 'a9f844af-6887-4496-8c64-721357a4a5bb', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2545, 'LUCENTIS (Injectable)', '19080982', 'ranibizumab', 'de4e66cc-ca05-4dc9-8262-e00e9b41c36d', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2546, 'Lucinactant (Injectable)', '42800204', 'lucinactant', 'f2ba0c81-ceb0-11e0-9572-0800200c9a66', to_date('5/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2547, 'LUDEN''S DROPS (Oral Lozenge)', '922191', 'pectin', 'fada4d58-9506-47f7-907e-bb340828a2e9', to_date('1/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2548, 'LUDENT (Chewable)', '19069022', 'Sodium Fluoride', '029caea5-2b12-4051-b758-22cd7fc1d207', to_date('12/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2549, 'LUFYLLIN (Oral Pill)', '1140088', 'Dyphylline', '6d7ed7c0-9646-11de-a404-0002a5d5c51b', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2550, 'LUMICAIN (Topical)', '957393', 'aluminum chloride', '9fdcce3e-e4d4-41ae-8609-37987c12414e', to_date('9/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2551, 'LUMIGAN (Ophthalmic)', '904525', 'bimatoprost', 'ec9097e7-4be4-4e62-99c3-24b48244c9f2', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2552, 'LUMIZYME (Injectable)', '19088328', 'alglucosidase alfa', 'd6bfbc45-2d34-439e-8aad-59ee2d53d4df', to_date('1/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2553, 'LUNESTA (Oral Pill)', '757352', 'Eszopiclone', 'e711e994-a489-d14b-9a50-60557b9ed137', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2554, 'LUPRON (Injectable)', '1351541', 'Leuprolide', '319f0af7-6cc7-4a91-a28a-9ceea37d0ca8', to_date('3/25/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2555, 'Lurasidone (Oral Pill)', '40230761', 'lurasidone', '88a244d1-eddb-499c-bee2-e1f49056e78f', to_date('11/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2556, 'LUSTRA (Topical)', '976778', 'hydroquinone', 'c1d01301-70c3-484b-8967-2324afa1781e', to_date('2/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2557, 'LUXIQ (Topical)', '920458', 'Betamethasone', '3dab9411-df12-4073-9cc1-3273e2aee7e7', to_date('4/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2558, 'LUZU (Topical)', '44507693', 'luliconazole', 'a7016010-ce43-4c09-8d21-aeb697ffed31', to_date('1/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2559, 'Lymphocyte immune globulin (Injectable)', '19061406', 'Lymphocyte immune globulin', 'bd545ba1-2366-4df1-bd67-10dfd7632b54', to_date('4/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2560, 'LYRICA (Oral Pill)', '734354', 'pregabalin', '6f51d7bf-aba2-4f10-911a-3cbc4d501a00', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2561, 'LYSODREN (Oral Pill)', '1309161', 'Mitotane', 'e9fba7d4-a0ec-4bfa-9b5b-ec97a9710fd3', to_date('1/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2562, 'LYSTEDA (Oral Pill)', '1303425', 'Tranexamic Acid', '49317334-a833-4620-a3b5-f179f8a821e2', to_date('11/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2563, 'M-CLEAR WC (Oral Liquid)', '1201620', 'Codeine', '903fe5b6-6c28-4b92-bdab-32389c10c25a', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2564, 'M-END MAX D (Oral Liquid)', '1201620', 'Codeine', '9f8fc672-3589-498d-82a7-e243f4e0dec0', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2565, 'M-END PE (Oral Liquid)', '1130863', 'Brompheniramine', 'fce1a6e4-cda3-462e-a853-049eabe4441e', to_date('12/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2566, 'M-END WC (Oral Liquid)', '1130863', 'Brompheniramine', 'f07920ad-7f4b-48d6-8c86-d5a257ff91c6', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2567, 'MAALOX MAX (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'ac12f0ae-6f06-4fa4-8265-37d27db8cb5d', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2568, 'MAALOX PLUS (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'e2a14762-3860-44c3-a3ea-5dbc45f4b1d5', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2569, 'Macitentan (Oral Pill)', '44507580', 'Macitentan', '1e484a50-55db-4b85-8c57-6cd1b0353abd', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2570, 'MACROBID (Oral Pill)', '920293', 'Nitrofurantoin', '1971e893-5fdb-41e3-a1e9-5e52deed03d1', to_date('4/21/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2571, 'MACRODANTIN (Oral Pill)', '920293', 'Nitrofurantoin', 'ec86b651-d77d-4a42-b493-24244456b3f6', to_date('4/21/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2572, 'Mafenide (Topical)', '992716', 'Mafenide', '570ce479-d902-4394-bbae-41dfe16c5485', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2573, 'MAGNEBIND (Oral Pill)', '19035704', 'Calcium Carbonate', 'af124c72-0a35-4305-abd8-2b0ebf84da08', to_date('7/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2574, 'MAGNEBIND 400 RX (Oral Pill)', '19035704', 'Calcium Carbonate', 'e74e25aa-2f4c-4026-bc2b-7bb21aaf6fc5', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2575, 'Magnesium acetate/Potassium Acetate/Sodium Chloride (Injectable)', '19013986', 'magnesium acetate', '94c12711-d672-450d-baae-06e24a72aace', to_date('9/28/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2576, 'Magnesium carbonate (Oral Liquid)', '908464', 'magnesium carbonate', '163bceeb-ca74-413e-88b9-5c7bc9bbeb0d', to_date('3/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2577, 'Magnesium Chloride (Injectable)', '19092849', 'Magnesium Chloride', '2105d1c1-54ef-4d1a-a63c-b1619e8b50db', to_date('3/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2578, 'Magnesium citrate (Oral Liquid)', '967861', 'magnesium citrate', '511bb6ed-7832-4862-a572-24c37021041a', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2579, 'Magnesium Hydroxide (Chewable)', '992956', 'Magnesium Hydroxide', '0965c4e1-492d-1ffe-e054-00144ff88e88', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2580, 'Magnesium Hydroxide (Oral Liquid)', '992956', 'Magnesium Hydroxide', '3a189feb-0f1d-4695-899f-cbe508b9924d', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2581, 'Magnesium Hydroxide/Omeprazole/Sodium Bicarbonate (Chewable)', '992956', 'Magnesium Hydroxide', 'cc8ef530-dd8c-40f5-af7e-4622c9e01d52', to_date('3/19/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2582, 'Magnesium Oxide (Oral Pill)', '993631', 'Magnesium Oxide', '2585e9da-e2df-40ec-8282-91dbe6476421', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2583, 'Magnesium Salicylate (Oral Pill)', '1168079', 'Magnesium Salicylate', 'd98ee9c8-40e2-4abb-b5c1-45e73e7dd23b', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2584, 'Magnesium Sulfate (Oral Granules)', '19093848', 'Magnesium Sulfate', '040fe343-fb47-2226-df5e-d873120e23c5', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2585, 'MAKENA (Injectable)', '19077143', 'Hydroxyprogesterone', 'a1998c1d-8337-4f00-8dcb-af3b54d39b77', to_date('4/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2586, 'Malathion (Topical)', '993979', 'Malathion', 'e9ea6c59-0a3d-4ce0-96ab-f8e9c38ce9db', to_date('3/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2587, 'Mannitol (Injectable)', '994058', 'Mannitol', 'd12cc802-b538-4065-a264-f474ff3b3043', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2588, 'Mannitol (Irrigation)', '994058', 'Mannitol', 'be1b2398-892c-4c5d-a045-ce12f03bea8e', to_date('4/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2589, 'MAPAP (Chewable)', '1125315', 'Acetaminophen', '5b3391d9-0d16-4378-b98b-ac13de7d1004', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2590, 'MAPAP (Oral Disintegrating)', '1125315', 'Acetaminophen', '8080296f-44b6-450e-b3d6-bb8415b4e4cc', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2591, 'MAPAP (Oral Liquid)', '1125315', 'Acetaminophen', 'dbbeeebc-48c3-42b2-ac08-aadfe43cfede', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2592, 'MAPAP (Oral Pill)', '1125315', 'Acetaminophen', 'e27b1cb6-cfa0-47dc-9301-bf68f0695491', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2593, 'MAPAP PM (Oral Pill)', '1125315', 'Acetaminophen', '31a86ae4-cdae-46a5-9df5-d9d8cb9b5090', to_date('5/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2594, 'MAPAP SINUS CONGESTION AND PAIN (Oral Pill)', '1125315', 'Acetaminophen', '0adcc105-107f-4a71-aa89-e5dbc03087a0', to_date('2/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2595, 'Maple leaf sycamore pollen extract (Injectable)', '40172372', 'maple leaf sycamore pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2596, 'MAR-COF BP (Oral Liquid)', '1130863', 'Brompheniramine', '7bef7c48-f784-49c7-a6e6-93042252d54b', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2597, 'MAR-COF CG (Oral Liquid)', '1201620', 'Codeine', '60a41229-b125-43d8-b2b4-0bf40feed764', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2598, 'Maraviroc (Oral Pill)', '1787101', 'maraviroc', '74fba35e-931e-44d8-97e0-d243bb687a71', to_date('2/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2599, 'MARCAINE (Injectable)', '732893', 'Bupivacaine', '250644e0-94b7-4da2-821a-50f66b54eb35', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2600, 'MARCAINE WITH EPINEPHRINE (Injectable)', '732893', 'Bupivacaine', '6a60cb55-530a-41ee-bc78-971eaf9f0850', to_date('3/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2601, 'MARGESIC (Oral Pill)', '1125315', 'Acetaminophen', '338b9f27-7097-4675-9ec5-e1eea6898cd5', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2602, 'MARPLAN (Oral Pill)', '781705', 'Isocarboxazid', 'ac387aa0-3f04-4865-a913-db6ed6f4fdc5', to_date('3/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2603, 'MARQIBO (Injectable)', '42874135', 'vincristine liposome', 'a1869e23-b93b-4407-843b-4b830319d82e', to_date('1/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2604, 'MARTEN-TAB (Oral Pill)', '1125315', 'Acetaminophen', '85c7db7a-a99a-43ef-9337-9916762ca087', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2605, 'MAVIK (Oral Pill)', '1342439', 'trandolapril', 'bcaffc12-69af-46a8-a092-b3f66a0508d5', to_date('2/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2606, 'MAXALT (Oral Disintegrating)', '1154077', 'rizatriptan', '08d06e6f-a1d8-4bd9-b851-d63858d55f91', to_date('8/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2607, 'MAXALT (Oral Pill)', '1154077', 'rizatriptan', '08d06e6f-a1d8-4bd9-b851-d63858d55f91', to_date('8/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2608, 'MAXIDEX (Ophthalmic)', '1518254', 'Dexamethasone', 'a0aa9dc9-265c-4dd6-9b03-276a47217839', to_date('8/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2609, 'MAXIDONE (Oral Pill)', '1125315', 'Acetaminophen', 'a2617a15-b333-4ffc-98eb-36d8721aa0d6', to_date('4/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2610, 'MAXITROL (Ophthalmic)', '1518254', 'Dexamethasone', '277ff310-b7dc-43b6-8a16-885b58882bc0', to_date('8/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2611, 'MAXZIDE (Oral Pill)', '974166', 'Hydrochlorothiazide', 'e92eda49-861e-4c79-b446-ec1213151d92', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2612, 'Meadow fescue grass pollen extract (Injectable)', '40161861', 'meadow fescue grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2613, 'Mebendazole (Chewable)', '1794280', 'Mebendazole', 'c338415f-41e0-071d-8c51-a80a02ebf2cd', to_date('10/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2614, 'Mecamylamine (Oral Pill)', '1394333', 'Mecamylamine', '0774cc48-7287-4093-91d6-9df41a81408a', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2615, 'Mechlorethamine (Topical)', '1394337', 'Mechlorethamine', '706bd420-2f32-11e0-aaee-0002a5d5c51b', to_date('10/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2616, 'Meclizine (Chewable)', '994341', 'Meclizine', '6872c83f-905d-40e6-a451-1d080dd5314c', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2617, 'Meclizine (Oral Pill)', '994341', 'Meclizine', '9350fefc-9c00-182c-c3a9-044d4a40856f', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2618, 'MEDERMA ADVANCED SCAR (Topical)', '966376', 'Allantoin', '7cf1c5a8-d28a-48c2-8cba-a3e18a7d51f9', to_date('11/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2619, 'MEDERMA PM (Topical)', '916662', 'dimethicone', 'e1864a26-e8a3-4c9d-a468-ea020fdc30e1', to_date('11/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2620, 'MEDERMA STRETCH MARK THERAPY (Topical)', '916662', 'dimethicone', '6e84c921-03a7-4ec1-bd9b-4986b5559555', to_date('12/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2621, 'MEDI-DERM WITH LIDOCAINE (Topical)', '939881', 'Capsaicin', '8e71c2d3-b1ce-4b22-b39f-7dd7cdf8de04', to_date('8/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2622, 'MEDICAINE STING (Topical)', '917006', 'Benzocaine', '753e6cbe-31e0-4017-93d0-8b4bf5972f37', to_date('3/31/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2623, 'MEDIHALER-ERGOTAMINE (Inhalant)', '1145379', 'Ergotamine', 'e713859d-f454-4f7e-a535-868b8d5f2c88', to_date('9/1/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2624, 'MEDIPLAST (Topical)', '964407', 'Salicylic Acid', '35bd29f9-cf49-404b-826b-72d1269d4f19', to_date('12/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2625, 'MEDROL (Oral Pill)', '1506270', 'Methylprednisolone', '4c0dd824-b099-47c3-aaf5-f6ddb873b3ee', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2626, 'MEDROX (Topical)', '939881', 'Capsaicin', 'cfaf5295-e559-4e27-887d-d590670b4e89', to_date('6/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2627, 'MEDROX (Transdermal)', '939881', 'Capsaicin', 'a9343d24-8435-4a51-98a2-b7976cd369ab', to_date('12/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2628, 'medroxyPROGESTERone (Injectable)', '1500211', 'Medroxyprogesterone', 'cd0bbdb2-754e-4e66-8f36-985b5819d642', to_date('1/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2629, 'medroxyPROGESTERone (Oral Pill)', '1500211', 'Medroxyprogesterone', '468a972c-cb14-47c3-bdf6-4f7b64509e5c', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2630, 'Mefenamate (Oral Pill)', '1197736', 'Mefenamate', '194031c2-46f6-43b3-bbb4-faffe9b53fa4', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2631, 'Mefloquine (Oral Pill)', '19000498', 'Mefloquine', '1c47fd79-c0ca-42d6-9910-774272b25bc1', to_date('7/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2632, 'MEGA C ACID PLUS (Injectable)', '19011773', 'Ascorbic Acid', '7b65c50d-09d6-4df2-8322-971b100c176d', to_date('7/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2633, 'MEGACE (Oral Liquid)', '1300978', 'Megestrol', '654854bc-f847-4e3b-a0a1-8716553460ac', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2634, 'Megestrol (Oral Liquid)', '1300978', 'Megestrol', '33bc102c-31a3-4fd9-9702-c1193d7699a3', to_date('7/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2635, 'Megestrol (Oral Pill)', '1300978', 'Megestrol', '66573d39-f2a7-49fd-9ed2-97ac8f6e8456', to_date('7/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2636, 'MELAMIN (Topical)', '976778', 'hydroquinone', '30d92f16-1065-4754-88cd-58f9f05761ca', to_date('7/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2637, 'MELAMIX (Topical)', '976778', 'hydroquinone', '9f3a6a77-7e19-43fe-922a-76ed5f25c3f1', to_date('10/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2638, 'Meloxicam (Oral Liquid)', '1150345', 'meloxicam', 'c27c35d7-07e1-47d4-97cd-ed1fb17750ce', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2639, 'Meloxicam (Oral Pill)', '1150345', 'meloxicam', 'fe8480c4-b176-45ae-b4d6-fa59912fe286', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2640, 'Melphalan (Injectable)', '1301267', 'Melphalan', '9706e9a1-96ab-46b8-8846-32ee9d756b1d', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2641, 'Melphalan (Oral Pill)', '1301267', 'Melphalan', 'ff913271-0090-4832-a0fe-5154fe8f97b9', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2642, 'MELQUIN-3 (Topical)', '976778', 'hydroquinone', '6bfcc6a9-899b-4ad7-b4e8-67d95fd04708', to_date('11/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2643, 'Memantine (Oral Liquid)', '701322', 'Memantine', '72973b46-f307-4a9e-8fb1-ad2cbccfd736', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2644, 'Memantine (Oral Pill)', '701322', 'Memantine', '1e3c74c9-0017-4d7a-a716-2b5366286a67', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2645, 'MEN-PHOR (Topical)', '938205', 'Camphor', '1294e5d7-7208-4312-bcc7-e0c093309559', to_date('6/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2646, 'MENEST (Oral Pill)', '1551673', '"Estrogens, Esterified (USP)"', 'efb195b9-b995-48f3-a4cb-b7e09d56350e', to_date('1/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2647, 'MENTAX (Topical)', '958396', 'butenafine', '167ecefd-4553-41b8-8160-81a48dbca076', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2648, 'Menthol (Oral Lozenge)', '901656', 'Menthol', 'b640a5d2-a7fe-486d-a65f-e7c993f950d6', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2649, 'Menthol (Topical)', '901656', 'Menthol', 'aa6d1beb-f462-4577-a57c-fb0ec12d4ce5', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2650, 'Menthol (Transdermal)', '901656', 'Menthol', 'de68eb17-95f1-4c10-a5b1-bb0b64bb441a', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2651, 'Menthol/Methyl salicylate (Topical)', '901656', 'Menthol', '5488358e-2c90-433d-a850-7dcb31ca82d2', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2652, 'Menthol/Methyl salicylate (Transdermal)', '901656', 'Menthol', '2e88c933-89e6-4a48-be7a-dc6a36e5c8f8', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2653, 'Menthol/Pramoxine (Topical)', '901656', 'Menthol', '2c0eb81d-347e-412b-a0fd-727f0eb0ca4b', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2654, 'Menthol/Zinc Oxide (Topical)', '901656', 'Menthol', 'ca5582e7-e11e-4353-94ef-086da44d42cd', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2655, 'MENTHOLATUM (Topical)', '938205', 'Camphor', '19e4b812-67c6-49fd-833a-b432100363f5', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2656, 'Meperidine (Injectable)', '1102527', 'Meperidine', '987a91b8-dd9e-47ce-bd43-f8189a54838e', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2657, 'Meperidine (Oral Liquid)', '1102527', 'Meperidine', '9c4f12e5-5e69-44d4-81a5-bd72c375eef5', to_date('9/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2658, 'Meperidine (Oral Pill)', '1102527', 'Meperidine', '6c2b41c3-732c-477f-8790-0eecea43b2da', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2659, 'Meperidine/Promethazine (Oral Pill)', '1102527', 'Meperidine', 'dc578720-0447-4e99-ad63-75253a751297', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2660, 'MEPHYTON (Oral Pill)', '19044727', 'Vitamin K 1', 'eb8d7fd3-4c7c-43e7-be09-98a446b905ef', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2661, 'Mepivacaine (Injectable)', '702774', 'Mepivacaine', '007fcf17-f78a-40a7-d494-af93bbb40032', to_date('3/23/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2662, 'Meprobamate (Oral Pill)', '702865', 'Meprobamate', 'e9aa3d4c-f2e9-4ca9-b563-85fac4024539', to_date('8/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2663, 'Mercaptopurine (Oral Pill)', '1436650', 'mercaptopurine', 'c3b5b8b0-bc5c-4ce9-bbdc-febba60c2658', to_date('2/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2664, 'MERCUROCLEAR (Topical)', '916460', 'Benzalkonium', 'e3428aa5-d13a-497c-b21f-4bb30b6154e4', to_date('7/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2665, 'Meropenem (Injectable)', '1709170', 'meropenem', '7a68d899-2678-43a9-a9c1-ef8f916b562f', to_date('6/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2666, 'Mesalamine (Oral Pill)', '968426', 'mesalamine', '07e5ac9c-a5b2-42dc-84fa-963dbc51ba21', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2667, 'Mesalamine (Rectal)', '968426', 'mesalamine', '357e0e6b-cfbd-454c-82d7-cfc460dc0d68', to_date('3/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2668, 'Mesalamine XR (Oral Pill)', '968426', 'mesalamine', 'ec53b1d4-b98d-4b4d-acc3-199f98031966', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2669, 'Mesna (Injectable)', '1354698', 'Mesna', '26a12d79-fd1b-4e49-bbf0-0d55784379b8', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2670, 'MESNEX (Injectable)', '1354698', 'Mesna', '49fdfbc3-69f8-4706-9d11-bf60e4e7811b', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2671, 'MESNEX (Oral Pill)', '1354698', 'Mesna', '4a51ffdb-f59f-4e02-b3c4-f3457ab7b514', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2672, 'Mesquite pollen extract (Injectable)', '40161940', 'mesquite pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2673, 'Mestranol/Norethindrone (Oral Pill)', '1503184', 'Mestranol', 'a2b893ab-8ef1-4742-8026-7dfd69214840', to_date('10/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2674, 'METAMUCIL (Oral Liquid)', '957797', 'Psyllium', '7fb350de-624d-4765-a777-6c7efebd2b28', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2675, 'Metaproterenol (Oral Liquid)', '1123995', 'metaproterenol', '66eb4b4d-2388-49d3-8ffa-0b9bca75a28e', to_date('6/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2676, 'Metaproterenol (Oral Pill)', '1123995', 'metaproterenol', 'cf566e38-f6ff-4b86-9537-8684943b36eb', to_date('7/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2677, 'Metaxalone (Oral Pill)', '780369', 'metaxalone', 'e8643c67-c531-4a4f-931d-0e3c91cfc0c8', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2678, 'metFORMIN (Oral Pill)', '1503297', 'Metformin', 'da99b8c4-f85e-409f-93a8-0e4758d74552', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2679, 'metFORMIN/Pioglitazone (Oral Pill)', '1503297', 'Metformin', 'c7dbc36d-3c84-488e-9b72-0593b5ed53a0', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2680, 'metFORMIN/Repaglinide (Oral Pill)', '1503297', 'Metformin', '5be33711-b77d-4a01-87c8-3b2618c16e8f', to_date('5/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2681, 'metFORMIN/Rosiglitazone (Oral Pill)', '1503297', 'Metformin', 'e77a8504-b49f-4343-beaf-6e4c2c59ab45', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2682, 'metFORMIN/sitaGLIPtin (Oral Pill)', '1503297', 'Metformin', 'e1af8ccb-ad50-452b-af44-022c9a0cb0ed', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2683, 'Methadone (Injectable)', '1103640', 'Methadone', '9bbe219f-3bf1-44f4-a709-cd108c4fa9ef', to_date('2/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2684, 'Methadone (Oral Liquid)', '1103640', 'Methadone', '8c363f90-c378-48ae-abbc-aeb25c9bf5cb', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2685, 'Methadone (Oral Pill)', '1103640', 'Methadone', '0b72a120-ca4e-4b90-7d89-52967a39adb3', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2686, 'Methamphetamine (Oral Pill)', '704053', 'Methamphetamine', 'f31f580f-1f08-4a0f-b078-0b9e3308f712', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2687, 'Methazolamide (Oral Pill)', '904250', 'Methazolamide', '7731560b-dbe7-4912-814e-ef60629e5f07', to_date('1/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2688, 'Methenamine (Oral Pill)', '904356', 'Methenamine', 'ad741dc5-816c-4ab2-9273-9b1a586149bc', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2689, 'METHERGINE (Oral Pill)', '1305637', 'Methylergonovine', '94c9b1cf-ae12-45f3-8fcb-708a922cbc10', to_date('5/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2690, 'Methimazole (Oral Pill)', '1504620', 'Methimazole', '9e6b80b8-6780-da50-f18f-30e6fe7b01b9', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2691, 'METHITEST (Oral Pill)', '1506602', 'Methyltestosterone', '77bb4ef4-c10e-4acc-8225-651d003f4561', to_date('5/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2692, 'Methocarbamol (Injectable)', '704943', 'Methocarbamol', '8f91e243-7395-4ec9-adf5-37520983daf2', to_date('12/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2693, 'Methocarbamol (Oral Pill)', '704943', 'Methocarbamol', '32863f21-30ff-4a8b-a2e6-8ab14a37af0d', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2694, 'Methohexital (Injectable)', '19005015', 'Methohexital', 'eccd8340-ead3-4363-8902-0c19d33aa2ac', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2695, 'Methotrexate (Injectable)', '1305058', 'Methotrexate', '6cf2e15a-6286-41f7-aa7d-3968d735c864', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2696, 'Methotrexate (Oral Pill)', '1305058', 'Methotrexate', '27dd39ca-207e-44db-8da1-a0689f0d6b6f', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2697, 'Methoxsalen (Injectable)', '905223', 'Methoxsalen', '5ad333bd-845f-43f8-9ecf-43491f26c7c7', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2698, 'Methoxsalen (Oral Pill)', '905223', 'Methoxsalen', 'ae951dc4-9031-43bf-943c-cb2366951f23', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2699, 'Methscopolamine (Oral Pill)', '1158632', 'Methscopolamine', '5c74bfb0-c80a-4a86-acd1-1e3a1b20255d', to_date('10/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2700, 'Methyclothiazide (Oral Pill)', '905273', 'Methyclothiazide', '4910dad2-c533-4232-85bf-e6b0235379c2', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2701, 'Methyl salicylate (Topical)', '909440', 'methyl salicylate', '17d8e13d-daf8-4bf6-acd8-2ebbd2dd1d22', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2702, 'Methylcellulose (Oral Liquid)', '905371', 'Methylcellulose', '9d5f2244-a610-4d45-b6e8-e79bb17a558f', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2703, 'Methylcellulose (Oral Pill)', '905371', 'Methylcellulose', '8a4f9f08-45bc-4642-a382-bf1c623e2bcc', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2704, 'Methyldopa (Oral Pill)', '1305447', 'Methyldopa', '00206aae-7db1-4ae9-8500-b03fd6788d74', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2705, 'Methylene blue (Injectable)', '905518', 'Methylene blue', 'fde64824-2be5-4d85-8d57-5098ca6890bb', to_date('12/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2706, 'Methylergonovine (Injectable)', '1305637', 'Methylergonovine', 'a9a3079e-b62b-4858-920e-d8f5cb38481e', to_date('2/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2707, 'Methylergonovine (Oral Pill)', '1305637', 'Methylergonovine', '047d3ab6-1f93-4080-95c1-f938ce8d5532', to_date('10/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2708, 'Methylphenidate (Chewable)', '705944', 'Methylphenidate', '16508cc6-13c7-4088-927a-b7206eb7c633', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2709, 'Methylphenidate (Oral Liquid)', '705944', 'Methylphenidate', '7b372d74-7ba7-437a-be8c-6e8335b78818', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2710, 'Methylphenidate (Oral Pill)', '705944', 'Methylphenidate', '330e620f-4b7f-4101-91dd-feddb7a823ed', to_date('7/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2711, 'methylPREDNISolone (Injectable)', '1506270', 'Methylprednisolone', '9ac89740-8d4f-4d37-be69-df986d9da69f', to_date('6/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2712, 'methylPREDNISolone (Oral Pill)', '1506270', 'Methylprednisolone', 'a82cafa3-f540-4c15-a2e0-faafe91d0820', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2713, 'methylPREDNISolone (Topical)', '1506270', 'Methylprednisolone', 'f8432414-d8a6-4597-a226-61fd09a80e0c', to_date('4/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2714, 'methylTESTOSTERone (Oral Pill)', '1506602', 'Methyltestosterone', '09db5a9d-9662-4bfb-824c-9c9aaad488dc', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2715, 'Methysergide (Oral Pill)', '1106740', 'Methysergide', '3fae28ee-700e-4d4f-a040-02ef01a2aeb4', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2716, 'Metipranolol (Ophthalmic)', '905531', 'Metipranolol', '699ce415-0798-4244-b5ec-bcdb383b50b3', to_date('8/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2717, 'Metoclopramide (Injectable)', '906780', 'Metoclopramide', 'b78499dc-4d24-4226-be97-dc618d9da0cf', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2718, 'Metoclopramide (Oral Disintegrating)', '906780', 'Metoclopramide', '3fb9a45e-48ba-45c5-86a7-03a8744888f6', to_date('8/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2719, 'Metoclopramide (Oral Liquid)', '906780', 'Metoclopramide', '4e12e98a-06fe-4b3c-bb64-f2701e195c74', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2720, 'Metoclopramide (Oral Pill)', '906780', 'Metoclopramide', 'c06f0098-193c-48e4-9629-8f4e69171bc6', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2721, 'Metolazone (Oral Pill)', '907013', 'Metolazone', 'c893c914-6195-45fa-a2bc-4e8b78004737', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2722, 'METOPIRONE (Oral Pill)', '19007490', 'Metyrapone', '3a27d0ef-83a7-4e1c-9430-46a3326ee8d8', to_date('8/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2723, 'Metoprolol (Injectable)', '1307046', 'Metoprolol', 'ffd837ea-551d-4b98-96e1-80c29ac32b20', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2724, 'Metoprolol (Oral Pill)', '1307046', 'Metoprolol', '59019362-b71d-479b-ba90-7c4923a8a044', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2725, 'Metreleptin (Injectable)', '44814585', 'metreleptin', 'b6349e72-8bbb-40c6-ab31-89f7b1cce914', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2726, 'METROCREAM (Topical)', '1707164', 'Metronidazole', '43d5e570-f359-564d-9bb4-51784ad97b6f', to_date('4/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2727, 'METROGEL (Topical)', '1707164', 'Metronidazole', 'ab3a8a2d-714a-4beb-af8a-99bc3ac3ebbe', to_date('10/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2728, 'METROGEL (Vaginal)', '1707164', 'Metronidazole', 'bd3b62b6-4a80-495b-a1d3-d54eb15baf79', to_date('4/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2729, 'METROLOTION (Topical)', '1707164', 'Metronidazole', 'c4e07c26-245d-3e51-6a47-fccde22334d2', to_date('4/7/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2730, 'metroNIDAZOLE (Injectable)', '1707164', 'Metronidazole', 'a7276a00-bb2f-4876-b58b-f2e953d716e4', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2731, 'metroNIDAZOLE (Oral Pill)', '1707164', 'Metronidazole', '5911e8f2-1b3a-4222-b997-d2a1c9a9f535', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2732, 'metroNIDAZOLE (Topical)', '1707164', 'Metronidazole', '5f6014f9-4a54-47c6-a290-01472e6c0fe7', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2733, 'metroNIDAZOLE (Vaginal)', '1707164', 'Metronidazole', '526c226a-099b-4eb3-943d-c88b2763b2c1', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2734, 'Metyrapone (Oral Pill)', '19007490', 'Metyrapone', '3a27d0ef-83a7-4e1c-9430-46a3326ee8d8', to_date('8/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2735, 'Metyrosine (Oral Pill)', '1401581', 'Metyrosine', '32fb2f2f-34b5-4cd5-9145-c3ab37c5ca92', to_date('3/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2736, 'Mexiletine (Oral Pill)', '1307542', 'Mexiletine', '25b8c89e-450c-4a1d-9053-1eb97b868a98', to_date('8/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2737, 'MI-ACID (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'cd711cb3-293b-42f1-a853-ab02d2054e4e', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2738, 'MI-ACID GAS RELIEF (Chewable)', '966991', 'Simethicone', 'f9f2b13c-6965-4971-8f93-fb1cdbaebc42', to_date('8/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2739, 'MIACALCIN (Injectable)', '1537655', 'salmon calcitonin', 'f9d5a587-e2bc-4001-987d-9b04731303cb', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2740, 'MIACALCIN (Nasal)', '1537655', 'salmon calcitonin', 'e147226d-7bf3-4f72-959b-8abd6464fbcd', to_date('3/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2741, 'Micafungin (Injectable)', '19018013', 'micafungin', 'bc234dd7-5221-4a68-b153-aa0393c75bbf', to_date('12/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2742, 'MICARDIS (Oral Pill)', '1317640', 'telmisartan', '3bb7bc69-7752-4c16-9c60-e61eb5355a4d', to_date('2/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2743, 'MICARDIS-HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', '539cdfb4-b920-48fb-8176-fe23841e3d32', to_date('2/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2744, 'MICATIN (Topical)', '907879', 'Miconazole', '96c56ba1-c3a8-48ce-ab58-550959485e3c', to_date('1/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2745, 'Miconazole (Buccal)', '907879', 'Miconazole', 'ef3b205e-8526-48a0-afce-ddcef865d907', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2746, 'Miconazole (Topical)', '907879', 'Miconazole', '83c592b4-4b17-4fe1-91ec-778c949e6196', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2747, 'Miconazole (Vaginal)', '907879', 'Miconazole', '79b61ece-7590-4448-86fa-28ab3d3cc074', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2748, 'Miconazole/Petrolatum/Zinc Oxide (Topical)', '907879', 'Miconazole', '8d8aaac5-3203-4ade-ae74-e2ea469dae18', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2749, 'MICORT-HC (Topical)', '975125', 'Hydrocortisone', 'a08b5877-e83e-449f-865e-30fcfbde665f', to_date('2/8/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2750, 'MICRO-GUARD (Topical)', '907879', 'Miconazole', 'a43a94d0-fec0-470f-bdb4-535dcce6d1e0', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2751, 'MICRO-K XR (Oral Pill)', '19049105', 'Potassium Chloride', 'cb128705-d8c7-4341-a976-d8fd7371df6d', to_date('12/22/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2752, 'Midazolam (Injectable)', '708298', 'Midazolam', 'a91ce254-14a3-4cbf-8ab8-5da252aa3fdc', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2753, 'Midazolam (Oral Liquid)', '708298', 'Midazolam', 'a833c24b-6dca-44d7-a0d6-20012fa1ea77', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2754, 'Midodrine (Oral Pill)', '1308368', 'Midodrine', '964e3631-bcd2-49dd-8dbf-9e1de42cebc4', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2755, 'MIDOL CRAMPS & BODYACHES (Oral Pill)', '1177480', 'Ibuprofen', '59257aae-3057-4109-923c-8baf7ea3d07b', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2756, 'Mifepristone (Oral Pill)', '1508439', 'Mifepristone', '542f3fae-8bc8-4f00-9228-e4b66c9ad6a9', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2757, 'MIGERGOT (Rectal)', '1134439', 'Caffeine', '3a31ad0c-7bdd-544b-f5df-a99d04cf541c', to_date('1/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2758, 'Miglitol (Oral Pill)', '1510202', 'miglitol', '192e6ed7-9e8c-4772-9e3b-5912a1c63a31', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2759, 'Miglustat (Oral Pill)', '19045272', 'Miglustat', '817892d1-ee12-4632-85fc-57ccdf16d7b8', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2760, 'MILLIPRED (Oral Liquid)', '1550557', 'prednisolone', '12d46d10-00b9-45d5-81f9-e9b31083ae89', to_date('3/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2761, 'MILLIPRED (Oral Pill)', '1550557', 'prednisolone', '863ad743-eec0-46f0-beba-c1556384c636', to_date('3/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2762, 'Milnacipran (Oral Pill)', '19080226', 'milnacipran', 'd4e56a10-3b29-4270-ab42-60dc74049cc5', to_date('1/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2763, 'Milrinone (Injectable)', '1368671', 'Milrinone', '88f78780-399f-4780-be19-205739db1682', to_date('10/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2764, 'Miltefosine (Oral Pill)', '44816310', 'miltefosine', 'd6658aeb-7bc1-4eef-ad0d-0a873ddbecf5', to_date('9/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2765, 'MINERAL ICE (Topical)', '901656', 'Menthol', 'aa7e4592-76d4-43cd-9e4b-3a112672c305', to_date('12/6/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2766, 'Mineral Oil (Oral Liquid)', '908523', 'Mineral Oil', 'd1228aa1-3c25-4290-abe2-dd2640125280', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2767, 'Mineral Oil (Rectal)', '908523', 'Mineral Oil', 'df5976d2-5e06-47f3-9173-66c290d10b3a', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2768, 'Mineral Oil (Topical)', '908523', 'Mineral Oil', '4ecd873b-b915-4132-ae78-b8826293a906', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2769, '"Mineral Oil, Light (Oral Liquid)"', '978577', '"Mineral Oil, Light"', 'fad02e6f-4735-4e6b-8afd-d61db6533c2a', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2770, 'Mineral Oil/Petrolatum (Ophthalmic)', '908523', 'Mineral Oil', '6a4a2053-f947-4ce3-a885-a1c1465c8b0b', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2771, 'Mineral Oil/Petrolatum/Phenylephrine (Rectal)', '908523', 'Mineral Oil', 'edf9f8d5-f55d-4c31-adfb-ba77ca24cc3d', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2772, 'Mineral Oil/Petrolatum/Phenylephrine/Shark liver oil (Rectal)', '908523', 'Mineral Oil', 'c249615a-65a3-49bb-a512-445d18ccf125', to_date('7/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2773, 'Mineral Oil/Pramoxine/Zinc Oxide (Rectal)', '908523', 'Mineral Oil', '347ff421-3ad9-409f-8731-af0183682e12', to_date('8/8/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2774, 'MINIDROPS (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '4c3cfc48-cb7d-4b11-9b3c-11610e82d551', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2775, 'MINIPRESS (Oral Pill)', '1350489', 'Prazosin', '36c4da56-502e-4da1-acf7-8e81ee453dcc', to_date('4/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2776, 'MINIPRIN (Oral Pill)', '1112807', 'Aspirin', '5a38a643-55b0-4a6c-84e1-ee2374435114', to_date('5/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2777, 'MINIZIDE (Oral Pill)', '948787', 'Polythiazide', '17367e1c-a4ad-451b-92c4-95565312e51a', to_date('1/25/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2778, 'MINOCIN (Oral Pill)', '1708880', 'Minocycline', 'b1a6939e-8d77-449d-b55f-0fd9a500352a', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2779, 'Minocycline (Injectable)', '1708880', 'Minocycline', '84acbae4-d385-49d0-9e7b-5ae0e8de3053', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2780, 'Minocycline (Oral Pill)', '1708880', 'Minocycline', '174d642b-70b1-45b0-ad33-a4847feb1a8f', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2781, 'Minocycline (Oral Powder)', '1708880', 'Minocycline', '8515df41-1936-4f3b-86ba-d2bb2a8441fb', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2782, 'Minoxidil (Oral Pill)', '1309068', 'Minoxidil', '02d7399f-94cc-f718-f214-587301edd138', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2783, 'Minoxidil (Topical)', '1309068', 'Minoxidil', '5768ad6b-9ca9-4fa9-9fc9-a703c4bd7718', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2784, 'MINTOX PLUS (Chewable)', '985247', 'Aluminum Hydroxide', 'a9d41e6e-2a8c-43aa-8b88-221a8d172d13', to_date('8/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2785, 'MINTOX PLUS (Oral Liquid)', '985247', 'Aluminum Hydroxide', '536b143d-a1d7-4972-a90b-248e41937070', to_date('8/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2786, 'MIOCHOL (Injectable)', '19037624', 'Acetylcholine', 'e701ef07-9499-4b56-931f-f4eb3eedbe24', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2787, 'MIOSTAT (Injectable)', '940183', 'Carbachol', 'f28d7a56-e079-4a8b-ad81-9a97c780de67', to_date('7/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2788, 'MIRALAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '1771d3bf-954d-49ea-b260-3d356e5dcfa5', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2789, 'MIRAPEX (Oral Pill)', '720810', 'Pramipexole', '3736d691-e8b9-4fdd-aeca-9e96cf907c51', to_date('4/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2790, 'Mirtazapine (Oral Disintegrating)', '725131', 'Mirtazapine', '73b7bbd9-7dba-4559-890f-3f8dd821e215', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2791, 'Mirtazapine (Oral Pill)', '725131', 'Mirtazapine', 'ee6c42d0-f92c-4361-8b98-5375b1fbd44c', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2792, 'Misoprostol (Oral Pill)', '1150871', 'Misoprostol', '83554310-3991-4a9d-92f1-d71ccfd0fb3a', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2793, 'MITIGARE (Oral Pill)', '1101554', 'Colchicine', 'cb5f9d85-6b81-49f8-bcd6-17b7bfbc10f2', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2794, 'mitoMYcin (Injectable)', '1389036', 'Mitomycin', 'd80c6dc0-5f26-4d7a-a0f7-7698ab4f249a', to_date('5/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2795, 'mitoMYcin (Ophthalmic)', '1389036', 'Mitomycin', '244002c6-c61d-43fe-9326-072797113979', to_date('7/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2796, 'MITOSOL (Ophthalmic)', '1389036', 'Mitomycin', '244002c6-c61d-43fe-9326-072797113979', to_date('7/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2797, 'Mitotane (Oral Pill)', '1309161', 'Mitotane', 'e9fba7d4-a0ec-4bfa-9b5b-ec97a9710fd3', to_date('1/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2798, 'mitoXANtrone (Injectable)', '1309188', 'Mitoxantrone', 'c101cb05-faaa-44cb-9666-c8214628c844', to_date('6/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2799, 'Mivacurium (Injectable)', '19010459', 'mivacurium', '98ca2c17-43e2-49af-abbc-f870877e5786', to_date('6/25/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2800, 'MOBIC (Oral Liquid)', '1150345', 'meloxicam', '676e73fb-51d2-449a-8749-1a7bcc257b11', to_date('3/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2801, 'MOBIC (Oral Pill)', '1150345', 'meloxicam', 'dbbc6373-e9ae-4215-8d08-5f6667a936d1', to_date('10/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2802, 'MOBISYL (Topical)', '943116', 'trolamine salicylate', '4d3e0e75-cd77-4174-9316-163f5fe05349', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2803, 'Modafinil (Oral Pill)', '710650', 'modafinil', '9f3b0bd2-72a3-411f-aeec-b533373f1a97', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2804, 'Moexipril (Oral Pill)', '1310756', 'moexipril', 'e16c2ad3-1ce5-48fc-96b2-5d63dc6b68d5', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2805, 'Molindone (Oral Pill)', '709699', 'Molindone', '138e8ca3-9a12-4c48-95c0-85bd01c79b13', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2806, 'Molybdenum (Injectable)', '19009896', 'Molybdenum', '43558add-4c7e-4fe6-ad36-cdceaff99bfb', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2807, 'Mometasone (Implant)', '905233', 'Mometasone', '6befbf16-3f60-4ce8-94ec-5ce6a2b7f4e1', to_date('1/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2808, 'Mometasone (Topical)', '905233', 'Mometasone', 'c337bce8-27e9-48fd-85fa-381d0242a36a', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2809, 'MONISTAT (Topical)', '907879', 'Miconazole', 'cb161d23-bc41-4cec-9e42-dfeef861d161', to_date('5/31/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2810, 'MONISTAT (Vaginal)', '907879', 'Miconazole', 'a0cb19fd-fd7e-4b19-9b35-092878dd52a7', to_date('6/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2811, 'MONISTAT SOOTHING CARE (Topical)', '916662', 'dimethicone', '07d7c883-1fa3-4786-905c-a1fab649765e', to_date('4/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2812, 'MONOCLATE-P (Injectable)', '1352213', 'Factor VIII', 'd9c17023-cbff-4d95-8f44-ef842d59d938', to_date('10/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2813, 'Monofluorophosphate (Toothpaste)', '19068715', 'monofluorophosphate', '5c92500d-d151-44c9-9cea-81e89adae9dd', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2814, 'MONOKET (Oral Pill)', '1383815', 'Isosorbide', 'd8f4202c-5103-40dc-9309-dcf72da02d0d', to_date('10/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2815, 'Montelukast (Chewable)', '1154161', 'montelukast', '09692f56-468c-4884-ae95-d2fb9d984e4c', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2816, 'Montelukast (Oral Granules)', '1154161', 'montelukast', '67070e4e-f755-46b3-b900-fcc1993a0546', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2817, 'Montelukast (Oral Pill)', '1154161', 'montelukast', '2f90a573-27fd-cc16-f3d1-8c4d630224a0', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2818, 'MORGIDOX (Oral Pill)', '1738521', 'Doxycycline', 'd95bdf63-69a2-47b9-b909-97c74b6d7731', to_date('5/19/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2819, 'morphine (Injectable)', '1110410', 'Morphine', 'ebb18761-e5c4-4238-bb84-f9549f500210', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2820, 'morphine (Oral Liquid)', '1110410', 'Morphine', '9740d1b2-d140-4959-a94b-843d4bf139c2', to_date('2/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2821, 'morphine (Oral Pill)', '1110410', 'Morphine', '67b3273e-af71-4dac-8e49-8bc134d4c591', to_date('7/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2822, 'morphine (Rectal)', '1110410', 'Morphine', '649d731b-962a-45df-b043-7e0781e8a530', to_date('10/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2823, 'Morphine Liposomal (Injectable)', '19112635', 'Morphine Liposomal', 'cc8f105c-c8ee-4c57-86ee-ee6bf917cf78', to_date('1/31/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2824, 'morphine XR (Oral Pill)', '1110410', 'Morphine', '6c826b0a-ac87-48cc-a780-9a4a2118e8a8', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2825, 'morphine/Naltrexone XR (Oral Pill)', '1110410', 'Morphine', 'dfe97a3d-247d-4dda-a641-1a95196cd8d8', to_date('3/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2826, 'MOTRIN (Oral Liquid)', '1177480', 'Ibuprofen', 'f2609308-17bf-4bcb-84b2-d17f3fd35958', to_date('7/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2827, 'MOTRIN (Oral Pill)', '1177480', 'Ibuprofen', '5715910e-33be-49bd-8a1f-eeb46320e28d', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2828, 'MOTRIN PM (Oral Pill)', '1129625', 'Diphenhydramine', '55403f19-58ae-450b-8a7b-0bc544088f20', to_date('12/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2829, 'Mountain cedar pollen extract (Injectable)', '40161989', 'mountain cedar pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2830, 'MOVANTIK (Oral Pill)', '45774613', 'naloxegol', 'f49c6978-ca7b-4a66-919b-757f8f92ef64', to_date('4/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2831, 'MOXATAG XR (Oral Pill)', '1713332', 'Amoxicillin', '35e9aa4c-fd8d-4444-9d1a-62723ba29491', to_date('6/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2832, 'Moxifloxacin (Injectable)', '1716903', 'moxifloxacin', 'a4e28b09-714b-46e7-b4e6-0163cad78fc5', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2833, 'Moxifloxacin (Ophthalmic)', '1716903', 'moxifloxacin', '750fd60e-c0c4-4f32-8301-6baa3516aef2', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2834, 'Moxifloxacin (Oral Pill)', '1716903', 'moxifloxacin', 'fe9226f8-64f4-4eff-8339-ed3fce0896f2', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2835, 'MOZOBIL (Injectable)', '19017581', 'Plerixafor', '0ed08d2b-5051-46b2-aa37-1d6275bf9003', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2836, 'MS CONTIN XR (Oral Pill)', '1110410', 'Morphine', '989a17e2-b7fd-478c-a584-327d368247ce', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2837, 'MUCINEX (Oral Granules)', '1163944', 'Guaifenesin', 'fd8a69aa-eb75-4e7a-8b6e-3361f810c578', to_date('6/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2838, 'MUCINEX (Oral Liquid)', '1163944', 'Guaifenesin', '99af22e4-35a2-4a98-ab38-22a649d5c356', to_date('11/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2839, 'MUCINEX CHILDREN''S COUGH (Oral Granules)', '1119510', 'Dextromethorphan', 'a6617fb9-aee1-4f4b-8888-792338861564', to_date('11/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2840, 'MUCINEX COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', 'ce565113-e9e3-46de-84f7-3a432acb0e4b', to_date('11/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2841, 'MUCINEX NASAL SPRAY (Nasal)', '925636', 'Oxymetazoline', '2627d0a0-7382-4e90-ba00-911d3be11195', to_date('1/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2842, 'MUCINEX STUFFY NOSE & COLD (Oral Liquid)', '1163944', 'Guaifenesin', '8d0f2a01-f58b-43c0-b3f6-a88f9eb39c52', to_date('10/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2843, 'Mucor extract (Injectable)', '40161334', 'Mucor extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2844, 'Mulberry pollen extract (Injectable)', '40172305', 'mulberry pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2845, 'MULTAQ (Oral Pill)', '40163615', 'dronedarone', '236d4549-f44b-4677-b857-acedd10b9920', to_date('12/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2846, 'MULTITRACE-4 (Injectable)', '19049877', 'chromic chloride', '9f5b05b4-194d-4630-9218-3db8543b125b', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2847, 'Mupirocin (Nasal)', '951511', 'Mupirocin', 'b5777cde-7cd5-4fc8-a5a1-0ef4ddf6b5b1', to_date('3/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2848, 'Mupirocin (Topical)', '951511', 'Mupirocin', 'e2ddaea4-d914-4bc7-8913-351e7bf2e2f7', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2849, 'MURO 128 (Ophthalmic)', '967823', 'Sodium Chloride', '93fafa27-5031-4d95-b4b8-5574b7204ae2', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2850, 'Muromonab-CD3 (Injectable)', '19051865', 'Muromonab-CD3', '2a1f1c18-fa95-45e6-bd00-ac53c73f4747', to_date('6/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2851, 'MY WAY (Oral Pill)', '1589505', 'Levonorgestrel', 'c749c15a-2c92-4db9-a6b9-fdf18da5b7da', to_date('5/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2852, 'MYALEPT (Injectable)', '44814585', 'metreleptin', 'b6349e72-8bbb-40c6-ab31-89f7b1cce914', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2853, 'MYAMBUTOL (Oral Pill)', '1749301', 'Ethambutol', '92e486cf-3a07-4178-b4df-52226e0401e1', to_date('12/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2854, 'MYCAMINE (Injectable)', '19018013', 'micafungin', 'bc234dd7-5221-4a68-b153-aa0393c75bbf', to_date('12/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2855, 'MYCELEX TROCHES (Oral Lozenge)', '1000632', 'Clotrimazole', '7464e883-6286-4f04-ae38-b7ddc3fec754', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2856, 'Mycophenolate mofetil (Oral Pill)', '19003999', 'mycophenolate mofetil', '085fa99c-8795-4abf-83cd-b0864f033d19', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2857, 'Mycophenolic Acid (Oral Pill)', '19012565', 'Mycophenolic Acid', '26b31126-4262-4a15-8a16-234c86763176', to_date('3/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2858, 'MYDRIACYL (Ophthalmic)', '906072', 'Tropicamide', '0d4f4a2e-eb00-4c65-b3fa-baf5738d468d', to_date('8/24/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2859, 'MYKROX (Oral Pill)', '907013', 'Metolazone', 'dffb4544-0e47-40cd-9baa-d622075838cc', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2860, 'MYLERAN (Oral Pill)', '1333357', 'Busulfan', 'bf456fc7-3a79-47f7-8acc-600b5e2f0dc2', to_date('6/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2861, 'MYOCHRYSINE (Injectable)', '1152134', 'Aurothiomalate', 'a29045b5-ba4f-407a-a0fd-3ef7e1ce64ee', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2862, 'MYOFLEX (Topical)', '943116', 'trolamine salicylate', '94baa7ac-b84b-4ca7-ac4a-c915ad8bf2e3', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2863, 'MYTAB GAS (Chewable)', '966991', 'Simethicone', '7feddfe6-15a2-4049-8635-860e9b0d2f80', to_date('12/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2864, 'N''ICE (Oral Lozenge)', '901656', 'Menthol', 'f8abfa42-896b-46c8-9d78-b9730f54d120', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2865, 'Nabilone (Oral Pill)', '913440', 'nabilone', 'a7a2a4e1-9ecd-4e59-82b5-2068b5e50164', to_date('5/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2866, 'Nabumetone (Oral Pill)', '1113648', 'nabumetone', 'b2ab77f7-4637-4977-8b4b-02ea01fee183', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2867, 'Nadolol (Oral Pill)', '1313200', 'Nadolol', 'd208918b-a356-4924-91d9-9593981fe0a6', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2868, 'Nafcillin (Injectable)', '1713930', 'Nafcillin', '90717878-64cb-4ffc-90bc-7b4e81e3d1cd', to_date('6/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2869, 'Naftifine (Topical)', '914053', 'naftifine', 'ee46c902-8a59-40f7-ac99-e96a8b981d60', to_date('6/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2870, 'NAFTIN (Topical)', '914053', 'naftifine', 'e516fb5a-5c9b-4a74-9beb-423f2b345dde', to_date('5/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2871, 'NALFON (Oral Pill)', '1153928', 'Fenoprofen', 'dfc2ab1e-0d75-4eff-9489-2afb51b02702', to_date('9/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2872, 'Naloxegol (Oral Pill)', '45774613', 'naloxegol', 'f49c6978-ca7b-4a66-919b-757f8f92ef64', to_date('4/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2873, 'Naloxone (Injectable)', '1114220', 'Naloxone', '3ce7dbb4-3d14-43f0-80d6-0deb79a7aea6', to_date('7/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2874, 'Naloxone/Pentazocine (Oral Pill)', '1114220', 'Naloxone', '05a17f16-c982-4a54-80cd-079959ab49a7', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2875, 'Naltrexone (Oral Pill)', '1714319', 'Naltrexone', '81e25c6a-81b6-4cfb-91bf-be20c3ae546b', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2876, 'NAMENDA (Oral Liquid)', '701322', 'Memantine', 'b9f27baf-aa2a-443a-9ef5-e002d23407ba', to_date('11/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2877, 'NAMENDA (Oral Pill)', '701322', 'Memantine', '1e3c74c9-0017-4d7a-a716-2b5366286a67', to_date('2/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2878, 'Nandrolone (Injectable)', '1514412', 'Nandrolone', 'a586b484-1b46-40b9-9508-fd28002ad383', to_date('2/16/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2879, 'Naphazoline (Nasal)', '914533', 'Naphazoline', 'ec2bb7d7-d014-46ed-a836-453e921da4c5', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2880, 'Naphazoline (Ophthalmic)', '914533', 'Naphazoline', '0f25812f-96ab-44f4-bacf-2eb012cbddc7', to_date('3/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2881, 'Naphazoline/Pheniramine (Ophthalmic)', '914533', 'Naphazoline', '78c5250c-b27c-4b1d-a4b8-571973ac3ae4', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2882, 'NAPHCON (Ophthalmic)', '914533', 'Naphazoline', '9951c888-4b6a-4c76-a9c1-dc3a0c777191', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2883, 'NAPHCON A (Ophthalmic)', '914533', 'Naphazoline', 'b83701b9-9331-484f-8e84-6e241e621ff3', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2884, 'NAPROSYN (Oral Pill)', '1115008', 'Naproxen', '523b3f51-1d52-46ea-85a9-9d01cd29b4f8', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2885, 'Naproxen (Oral Pill)', '1115008', 'Naproxen', 'a92bf444-0ae7-4365-831e-9fd37d59d5fa', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2886, 'Naratriptan (Oral Pill)', '1118117', 'naratriptan', '41c29652-32f8-48dc-9038-0e2195aa2084', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2887, 'NAROPIN (Injectable)', '1136487', 'ropivacaine', '56dfabf7-f7a8-4601-b17a-cb16fb995b0f', to_date('6/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2888, 'NASCOBAL (Nasal)', '1308738', 'Vitamin B 12', 'ee2b4869-cd13-489b-b12f-1ce4fe081157', to_date('5/24/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2889, 'NASOPEN PE (Oral Liquid)', '1135766', 'Phenylephrine', '5e133352-255f-41cc-aacc-0508d634368d', to_date('4/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2890, 'NATACYN (Ophthalmic)', '915392', 'Natamycin', 'd262661c-860d-482e-aa8d-3cf1f252b32a', to_date('7/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2891, 'Natamycin (Ophthalmic)', '915392', 'Natamycin', 'd262661c-860d-482e-aa8d-3cf1f252b32a', to_date('7/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2892, 'Nateglinide (Oral Pill)', '1502826', 'nateglinide', 'f7b28951-76d2-cabd-64a1-b74aa225c6e9', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2893, 'NATRECOR (Injectable)', '1338985', 'Nesiritide', '44c45bfe-461f-4398-8f20-ea771b2403ee', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2894, 'NATROBA (Shampoo)', '40172543', 'spinosad', 'fa90ccc8-2df0-49f7-8878-2b33e34cd272', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2895, 'NATURE''S TEARS (Ophthalmic)', '902251', 'hypromellose', '3bb70d72-f763-4486-8f6a-d37ece21292b', to_date('11/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2896, 'NAUZENE (Chewable)', '956691', 'Fructose', 'a60660b2-c5db-45a0-885f-de93e655380d', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2897, 'NAUZENE (Oral Liquid)', '956691', 'Fructose', '728376f5-6cab-404e-b519-f6c595291d6f', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2898, 'Nebivolol (Oral Pill)', '1314577', 'nebivolol', '673f5ad2-c09b-4a89-9407-efdadd007917', to_date('5/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2899, 'NEBUPENT (Inhalant)', '1730370', 'Pentamidine', 'e2ad9d3c-b6c3-4f70-87e0-722a8ff94ccb', to_date('2/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2900, 'Nedocromil (Ophthalmic)', '1114620', 'Nedocromil', '2fe8d7ad-2158-4169-94b0-719ad20242b7', to_date('1/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2901, 'Nefazodone (Oral Pill)', '714684', 'nefazodone', '4afee435-ae60-4260-a1df-e52abf7a043d', to_date('6/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2902, 'Nelfinavir (Oral Pill)', '1715472', 'Nelfinavir', '84948e6a-971f-4e86-928e-7d32a1883a23', to_date('3/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2903, 'NEMBUTAL SODIUM (Injectable)', '730729', 'Pentobarbital', '5c380ab0-4386-48b6-80ab-ca594b23bc74', to_date('8/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2904, 'NEO-POLYCIN (Ophthalmic)', '915175', 'Bacitracin', 'cf18b051-b656-4f46-8b69-a1df6f5d8d29', to_date('1/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2905, 'NEO-SYNALAR (Topical)', '996541', 'fluocinolone', 'e96ae9cf-e829-466f-b66d-ede83b4d8b3d', to_date('7/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2906, 'NEO-SYNEPHRINE (Nasal)', '1135766', 'Phenylephrine', '03d3ecdf-782a-44d2-bd59-1b010552c4fb', to_date('6/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2907, 'NEOBENZ MICRO WASH (Soap)', '918172', 'Benzoyl Peroxide', '375bf717-5d70-457e-8b74-1f66f4f08b79', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2908, 'NEOCIDIN OINTMENT (Ophthalmic)', '915175', 'Bacitracin', '0ea2cee7-197e-405b-a7d4-f470a69a5178', to_date('11/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2909, 'NEOCIDIN SOLUTION (Ophthalmic)', '963742', 'Gramicidin', 'b7aa0bae-255b-4792-a963-6606370a175f', to_date('11/30/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2910, 'Neomycin (Oral Liquid)', '915981', 'Neomycin', 'aea1d3e4-604a-4680-91e2-cce6a128a1b5', to_date('4/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2911, 'Neomycin (Oral Pill)', '915981', 'Neomycin', '777dbfab-f83e-4738-ae1e-78619a9f82a7', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2912, 'Neomycin/Polymyxin B (Irrigation)', '915981', 'Neomycin', '1a9f81d8-277d-4f2c-39b0-412e01954f8a', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2913, 'Neomycin/Polymyxin B (Ophthalmic)', '915981', 'Neomycin', '7218af16-9378-472a-a033-4c9f9d5524db', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2914, 'Neomycin/Polymyxin B/Pramoxine (Topical)', '915981', 'Neomycin', 'a325abf1-f239-4824-ba6c-cf1029ae1326', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2915, 'NEOSPORIN ECZEMA (Topical)', '975125', 'Hydrocortisone', 'dc9e9509-c2d4-4480-bbaa-009fc5ccf9fc', to_date('11/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2916, 'NEOSPORIN G. U. IRRIGANT (Irrigation)', '915981', 'Neomycin', '1a9f81d8-277d-4f2c-39b0-412e01954f8a', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2917, 'NEOSPORIN MOISTURIZING (Topical)', '986261', 'Colloidal oatmeal', '5173b0c9-25b3-44e0-83a2-83079b5b0c03', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2918, 'NEOSPORIN NEO TO GO (Topical)', '916460', 'Benzalkonium', 'a092b2ff-18fb-481a-a17d-984a91cbaec7', to_date('7/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2919, 'NEOSPORIN OINTMENT (Topical)', '915175', 'Bacitracin', '76d1c487-8974-4fe1-a874-d7313c960456', to_date('9/9/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2920, 'NEOSPORIN PLUS MAXIMUM STRENGTH (Topical)', '915175', 'Bacitracin', 'fd3a35c9-428a-4136-9833-531413e9ec35', to_date('12/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2921, 'NEOSPORIN PLUS MAXIMUM STRENGTH CREAM (Topical)', '915981', 'Neomycin', '8398f0d1-cb06-4b69-ba16-b8073faed8e4', to_date('7/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2922, 'NEOSPORIN SOLUTION (Ophthalmic)', '963742', 'Gramicidin', '33e9b6d3-2b2b-4036-dd89-47177e23fcfe', to_date('7/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2923, 'Neostigmine (Injectable)', '717136', 'Neostigmine', '9dde8277-e2e8-4733-b18d-60124cde070e', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2924, 'NEOVA COMPLEX HQ PLUS (Topical)', '976778', 'hydroquinone', 'dd3ce6f2-ed6e-448b-9924-bb1632a83c69', to_date('1/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2925, 'Nepafenac (Ophthalmic)', '909795', 'nepafenac', '4c9ae54a-97a0-4613-a092-31e86d9bfc91', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2926, 'NEPTAZANE (Oral Pill)', '904250', 'Methazolamide', '7731560b-dbe7-4912-814e-ef60629e5f07', to_date('1/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2927, 'NESACAINE (Injectable)', '19049410', 'chloroprocaine', 'a844e68a-1462-40e4-be5e-f56214906eb9', to_date('9/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2928, 'NESINA (Oral Pill)', '43013884', 'alogliptin', 'a3768c7e-aa4c-44d3-bc53-43bb7346c0b0', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2929, 'Nesiritide (Injectable)', '1338985', 'Nesiritide', '44c45bfe-461f-4398-8f20-ea771b2403ee', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2930, 'NEUAC (Topical)', '918172', 'Benzoyl Peroxide', '22109c02-910d-4bec-bd79-50e391634c38', to_date('6/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2931, 'NEURONTIN (Oral Pill)', '797399', 'gabapentin', 'ea6016be-2f5d-4bd0-a228-fa8f455abeae', to_date('2/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2932, 'NEUTRAMAXX (Toothpaste)', '19069022', 'Sodium Fluoride', 'fcbe6baa-2827-49df-9316-42cc86595203', to_date('4/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2933, 'NEUTRAPHOR (Topical)', '916662', 'dimethicone', '0f3a5ca3-c4bd-4496-bb62-816d1ed9f01f', to_date('1/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2934, 'NEUTRAPHORUS REX SKIN PROTECTANT (Topical)', '916662', 'dimethicone', 'b43c4b7a-c176-4c36-a8cf-32cb6e99cc04', to_date('12/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2935, 'NEUTREXIN (Injectable)', '1750928', 'Trimetrexate', 'ad0f8925-f817-4460-aa6b-172a043a440b', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2936, 'NEUTROGENA ACNE WASH OIL FREE (Soap)', '964407', 'Salicylic Acid', 'cbdd144e-09fa-45e5-beb9-166e0654c013', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2937, 'NEUTROGENA RAPID CLEAR GEL (Topical)', '964407', 'Salicylic Acid', '38005d41-8ed7-4de5-afcb-cce1496c3811', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2938, 'NEUTROGENA T/GEL EXTRA STRENGTH (Shampoo)', '1000995', 'Coal Tar', '615d83a0-52a4-4365-aef3-320480c0b5cd', to_date('4/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2939, 'NEUTROGENA T/SAL (Shampoo)', '964407', 'Salicylic Acid', 'c67a7d3f-1aff-4753-a64a-d06618e2ddda', to_date('10/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2940, 'NEVANAC (Ophthalmic)', '909795', 'nepafenac', '3ad48650-75e3-4c74-9302-01b0088f164e', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2941, 'Nevirapine (Oral Liquid)', '1769389', 'Nevirapine', '8dfe86aa-ea5d-48d2-94a8-1a5506055d70', to_date('5/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2942, 'Nevirapine (Oral Pill)', '1769389', 'Nevirapine', '4f065674-4719-4c79-ba0d-549040d77f17', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2943, 'NexIUM (Injectable)', '904453', 'Esomeprazole', 'dce12085-d6c4-48a5-959b-e771c413c9c5', to_date('4/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2944, 'NexIUM (Oral Pill)', '904453', 'Esomeprazole', 'b533b80b-2e68-4c5c-aaba-159d96a1b2f0', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2945, 'NEXT CHOICE ONE DOSE (Oral Pill)', '1589505', 'Levonorgestrel', 'eb8c1837-d5e5-4ba2-a4b5-8c4f4be029cd', to_date('5/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2946, 'Niacin (Oral Pill)', '1517824', 'Niacin', 'ce739d68-d89c-437c-90fb-3c0c45140f22', to_date('3/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2947, 'Niacin XR (Oral Pill)', '1517824', 'Niacin', '1bafcb0b-3564-4f3b-8ffb-d916d112fae9', to_date('7/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2948, 'NIACOR (Oral Pill)', '1517824', 'Niacin', 'ce739d68-d89c-437c-90fb-3c0c45140f22', to_date('3/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2949, 'niCARdipine (Injectable)', '1318137', 'Nicardipine', '0a7c6372-a22b-4501-a6c6-539457a6cd9d', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2950, 'niCARdipine (Oral Pill)', '1318137', 'Nicardipine', '4a423bba-3bc1-4323-abbb-ef6c5c315784', to_date('6/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2951, 'NICAZEL (Oral Pill)', '986790', 'Azelate', 'fc729ca5-3846-48fd-8d8c-d2b6a7563741', to_date('10/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2952, 'NICOMIDE (Oral Pill)', '19073229', 'Cupric oxide', '91d306d7-ef63-4f35-84a4-36e8469eac98', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2953, 'NICORELIEF (Chewable)', '718583', 'Nicotine', '50bdf838-436d-44eb-9fbd-7966ec436f36', to_date('1/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2954, 'NICORELIEF (Oral Lozenge)', '718583', 'Nicotine', '2025c71d-d752-4bea-bc4c-7beff1b63ff9', to_date('8/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2955, 'NICORETTE (Oral Lozenge)', '718583', 'Nicotine', 'fdee1637-8049-4bc5-b196-b6d854c9f9f3', to_date('11/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2956, 'Nicotine (Chewable)', '718583', 'Nicotine', '020f4342-c821-4749-83eb-fbf330886acf', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2957, 'Nicotine (Inhalant)', '718583', 'Nicotine', '2d75cdad-0a7b-4297-80aa-7942ecaea30e', to_date('8/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2958, 'Nicotine (Oral Lozenge)', '718583', 'Nicotine', '17cf8f3d-6491-4cd8-a447-3c7533f76daf', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2959, 'NICOTROL (Inhalant)', '718583', 'Nicotine', 'a887a129-fcb4-417e-80a5-38eca69dc74d', to_date('8/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2960, 'NIFEdipine (Oral Pill)', '1318853', 'Nifedipine', '776ccac6-471d-4c41-8c52-a8e90bd832c5', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2961, 'NILANDRON (Oral Pill)', '1315286', 'nilutamide', 'a682f5ef-c79f-419e-94b6-b1a84b7b6651', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2962, 'Nilutamide (Oral Pill)', '1315286', 'nilutamide', 'a682f5ef-c79f-419e-94b6-b1a84b7b6651', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2963, 'niMODipine (Oral Liquid)', '1319133', 'Nimodipine', '9e48dba7-c706-44fc-b04b-0fdcb2d72bc4', to_date('5/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2964, 'niMODipine (Oral Pill)', '1319133', 'Nimodipine', '26730ffb-7c80-4c54-bded-8e519bffe12f', to_date('8/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2965, 'NINJACOF (Oral Liquid)', '1150886', 'chlophedianol', 'e2bca40f-9c27-ec8b-2ff0-ef9847ba2037', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2966, 'Nintedanib (Oral Pill)', '45775396', 'nintedanib', 'da1c9f37-779e-4682-816f-93d0faa4cfc9', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2967, 'NIPENT (Injectable)', '19031224', 'Pentostatin', '151c6d2e-1af1-4c13-96ec-de3228c6efb3', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2968, 'NIRAVAM (Oral Disintegrating)', '781039', 'Alprazolam', 'd956367b-fd7d-46fc-9533-38a6e02b0b59', to_date('3/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2969, 'Nitazoxanide (Oral Liquid)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', to_date('11/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2970, 'Nitazoxanide (Oral Pill)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', to_date('11/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2971, 'Nitisinone (Oral Pill)', '1586640', 'nitisinone', '5d449b73-d503-4132-b978-d890491975df', to_date('6/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2972, 'NITRO-BID (Topical)', '1361711', 'Nitroglycerin', '30934ddc-0823-4097-8699-d10988011d7c', to_date('8/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2973, 'Nitrofurantoin (Oral Liquid)', '920293', 'Nitrofurantoin', '11dcea9c-0c62-4153-976b-bd1f8ef1f6d9', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2974, 'Nitrofurantoin (Oral Pill)', '920293', 'Nitrofurantoin', '09d16de0-e11e-4ca1-8073-cc0bb0677aa9', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2975, 'Nitrofurazone (Topical)', '920378', 'Nitrofurazone', '2f25d07e-31ca-43a2-a8b6-622c1f122d25', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2976, 'Nitrogen (Inhalant)', '19020477', 'Nitrogen', '273511c2-2b84-4373-a0e5-3961eb19af8c', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2977, 'Nitrogen/Oxygen (Inhalant)', '19020477', 'Nitrogen', '4340fd9c-a7e7-4eb1-bd99-0927faeafe07', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2978, 'Nitroglycerin (Injectable)', '1361711', 'Nitroglycerin', '368a60fa-6cf0-4036-970e-e3a482f244ba', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2979, 'Nitroglycerin (Mucosal)', '1361711', 'Nitroglycerin', 'de06a4da-ea70-441e-bba2-e40eb51a8c3a', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2980, 'Nitroglycerin (Rectal)', '1361711', 'Nitroglycerin', '603aa9ed-54c4-4a35-ade4-690fa44850e4', to_date('10/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2981, 'Nitroglycerin (Sublingual)', '1361711', 'Nitroglycerin', '79ba021e-183c-4b4d-822e-4ff5ef54ca61', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2982, 'Nitroglycerin (Topical)', '1361711', 'Nitroglycerin', 'e464e9bb-48e8-4b9f-9fff-e220cfbac0c5', to_date('8/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2983, 'Nitroglycerin XR (Oral Pill)', '1361711', 'Nitroglycerin', '04fa3e36-e782-4b33-bc1d-a3ca0990f490', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2984, 'NITROLINGUAL (Mucosal)', '1361711', 'Nitroglycerin', '11cb2671-d3d5-425f-8509-f973b6cac876', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2985, 'NITROMIST (Mucosal)', '1361711', 'Nitroglycerin', 'f9eb07a2-5ebc-40ea-9890-1a0b03e859ff', to_date('5/17/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2986, 'NITRONAL (Injectable)', '1361711', 'Nitroglycerin', 'b82a7e93-d697-419a-8b02-dc05c5ab302e', to_date('4/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2987, 'NITROPRESS (Injectable)', '19020994', 'Nitroprusside', 'bf27f0a9-e64b-492a-b08f-2448bf097988', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2988, 'Nitroprusside (Injectable)', '19020994', 'Nitroprusside', '6a44bcac-a0e1-4069-5691-db7b83dbb4b7', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2989, 'NITROSTAT (Sublingual)', '1361711', 'Nitroglycerin', 'dcb552c1-310a-48af-81ad-a74530531dee', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2990, 'Nitrous Oxide (Inhalant)', '19021129', 'Nitrous Oxide', '571a0c51-076f-48a2-835c-b3ee9c7c98ed', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2991, 'NIX CREAM RINSE (Topical)', '922868', 'Permethrin', '9b44bf94-62c9-49d8-97ec-cf475824eb35', to_date('11/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2992, 'Nizatidine (Oral Pill)', '950696', 'Nizatidine', '9a148542-e478-422a-b8fb-88047c30534b', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2993, 'NIZORAL (Oral Pill)', '985708', 'Ketoconazole', '090660c1-6e6d-457f-adb5-046ddfcd1465', to_date('3/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2994, 'NIZORAL (Shampoo)', '985708', 'Ketoconazole', 'efbc6388-90ce-11de-b92c-8b7156d89593', to_date('11/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2995, 'NO DOZ (Oral Pill)', '1134439', 'Caffeine', '7ef8b03c-245a-424f-bf75-438559c4418b', to_date('12/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2996, 'NODOLOR (Oral Pill)', '1125315', 'Acetaminophen', '08442901-bb74-4516-9574-86b3dfeeabb1', to_date('5/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2997, 'NOLVADEX (Oral Pill)', '1436678', 'Tamoxifen', '063fa789-4570-4715-c3bd-1bad0449fb26', to_date('3/23/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2998, 'Nonoxynol-9 (Vaginal)', '969444', 'Nonoxynol-9', 'eaf86a36-0573-4c39-9324-88919c4d009b', to_date('12/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(2999, 'NORCO (Oral Pill)', '1125315', 'Acetaminophen', '2f1c9e91-e5e7-4b07-8f56-e3719573ef23', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3000, 'Norepinephrine (Injectable)', '1321341', 'Norepinephrine', 'd2b5320e-e6a6-4a43-8f3c-9c21195ceb4a', to_date('7/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3001, 'Norethindrone (Oral Pill)', '1521369', 'Norethindrone', 'ac4ab968-c536-45d8-bb85-dc692afd7cee', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3002, 'NORFLEX (Injectable)', '724394', 'Orphenadrine', '8768cd6b-e79d-4b6d-8981-2f01ce28047b', to_date('5/24/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3003, 'NORGESIC (Oral Pill)', '1112807', 'Aspirin', 'a7fa86b5-2154-4b17-9265-8a5411c88d5d', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3004, 'NORITATE (Topical)', '1707164', 'Metronidazole', '1787c491-d92c-4239-9d9f-6a91b629835d', to_date('5/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3005, 'NORLYROC (Oral Pill)', '1521369', 'Norethindrone', '97fcc28a-7e00-4ce4-9976-bcb90e3dba64', to_date('4/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3006, 'NORPACE (Oral Pill)', '1335606', 'Disopyramide', 'f5e0c230-db38-4476-8357-9a227ccff1bc', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3007, 'NORTHERA (Oral Pill)', '44814542', 'Droxidopa', '2179f02c-48d7-48eb-8007-5ae43d8d16bc', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3008, 'Nortriptyline (Oral Liquid)', '721724', 'Nortriptyline', 'ced93eb0-e8b6-44b8-9d2c-e2afa92500f7', to_date('3/20/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3009, 'Nortriptyline (Oral Pill)', '721724', 'Nortriptyline', 'a203a396-f64b-4e2d-a57e-47ea7e83c3bf', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3010, 'NORVASC (Oral Pill)', '1332418', 'Amlodipine', 'fb0bdb7f-1041-4c73-bdf9-02679b32c3ce', to_date('3/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3011, 'NORVIR (Oral Pill)', '1748921', 'Ritonavir', '624120b3-0a32-42a7-abfc-324e6b6c93df', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3012, 'NOSTRILLA (Nasal)', '925636', 'Oxymetazoline', 'e16acd65-8163-4410-b645-db9bdee63b2d', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3013, 'NOTUSS PE (Oral Liquid)', '1201620', 'Codeine', 'e2d73253-1777-4993-b693-323f0450c1c4', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3014, 'NOTUSS-NX (Oral Liquid)', '990413', 'chlorcyclizine', '3cd16900-fc6d-440a-9060-1f5c92c9fedf', to_date('12/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3015, 'NOVACORT (Topical)', '975125', 'Hydrocortisone', 'c5b94bde-6982-48e5-ab68-13bb91d3d112', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3016, 'NOVAFERRUM IRON (Oral Liquid)', '1300751', 'Polysaccharide iron complex', '17cd83ec-8779-45f9-8c8d-0aaa8c7b9b42', to_date('1/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3017, 'NOVAFERRUM IRON (Oral Pill)', '1300751', 'Polysaccharide iron complex', '46abb133-711c-4219-ba6e-42cb64abf451', to_date('11/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3018, 'NOVOCAINE (Injectable)', '751698', 'Procaine', '999625d5-3a6b-4753-059a-4f19d04c85a5', to_date('9/14/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3019, 'NovoLIN (Injectable)', '1596914', '"NPH Insulin, Human"', '508a2763-3cb7-4be5-9e53-544e84cd9b1f', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3020, 'NOVOLIN N (Injectable)', '1596914', '"NPH Insulin, Human"', '99c995f1-522e-42aa-b45a-117e0af77d81', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3021, 'NOVOLIN R (Injectable)', '1596977', '"Regular Insulin, Human"', '78dadbee-c3b6-4d62-a338-731b24cc7ef0', to_date('10/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3022, 'NovoLOG (Injectable)', '1567198', '"Insulin, Aspart, Human"', '66472b3d-32c1-4803-aff4-b621aa5430b3', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3023, 'NOVOTHYROX (Oral Pill)', '1501700', 'Thyroxine', 'b5c93ab1-317e-4f99-9ec5-e47b30faf650', to_date('4/21/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3024, 'NUCORT (Topical)', '975125', 'Hydrocortisone', 'cc51030b-ece9-4b6e-9bf8-032a1e552711', to_date('7/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3025, 'NUCYNTA (Oral Liquid)', '19026459', 'tapentadol', 'e921054f-b3f1-4624-8edd-f6628c6f0fd9', to_date('11/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3026, 'NUCYNTA (Oral Pill)', '19026459', 'tapentadol', 'da748c7a-d2ae-1cbc-6f1a-8a6fc0402560', to_date('3/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3027, 'NULECIT (Injectable)', '1399177', 'Sodium ferric gluconate complex', '72153161-a533-4e90-b9b8-54090b8816be', to_date('4/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3028, 'NULEV (Oral Disintegrating)', '923672', 'Hyoscyamine', 'ae2a78b2-b811-11e2-9e96-0800200c9a66', to_date('5/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3029, 'NULL', '19018384', '4-Aminobenzoic Acid', 'fe274cab-a945-4379-a92c-c8f18bd63c1e', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3030, 'NULOJIX (Injectable)', '40239665', 'belatacept', 'c16ac648-d5d2-9f7d-8637-e2328572754e', to_date('10/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3031, 'NULYTELY (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'b630fb8f-b6aa-4b94-a93c-d79f1626c05b', to_date('3/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3032, 'NUPERCAINAL (Rectal)', '923840', 'Dibucaine', 'bcf33951-d3a4-46c5-b208-56adc0011047', to_date('7/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3033, 'NUQUIN HP (Topical)', '976778', 'hydroquinone', '5d257efa-4287-4957-b409-004ea39ad17b', to_date('11/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3034, 'NUTRALOX (Chewable)', '19035704', 'Calcium Carbonate', '263e20ca-1ca6-4f7c-bae5-525a1184b744', to_date('11/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3035, 'NUTRESTORE (Oral Liquid)', '19060985', 'Glutamine', 'cd3fb572-c5b1-43da-aea2-31208985f544', to_date('7/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3036, 'NUTROPIN (Injectable)', '1584910', 'Somatropin', 'e6574a25-1ad5-4946-b750-501ce745574f', to_date('3/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3037, 'NUVIGIL (Oral Pill)', '19090984', 'armodafinil', '10f918f7-4782-470e-a50e-35c7c66bfd79', to_date('5/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3038, 'NYMALIZE (Oral Liquid)', '1319133', 'Nimodipine', '9e48dba7-c706-44fc-b04b-0fdcb2d72bc4', to_date('5/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3039, 'Nystatin (Oral Liquid)', '922570', 'Nystatin', 'ba531b47-6a96-432b-ae01-6d8e18634463', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3040, 'Nystatin (Oral Pill)', '922570', 'Nystatin', 'fc0cc939-3ad1-47f2-87b9-cdd91712e0db', to_date('8/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3041, 'Nystatin (Topical)', '922570', 'Nystatin', 'bb68ae89-8a87-4ff7-a71b-f47ed4da1808', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3042, 'Nystatin/Triamcinolone (Topical)', '922570', 'Nystatin', '47b09171-bc17-4f32-a08e-6546bd48f78a', to_date('11/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3043, 'NYSTOP (Topical)', '922570', 'Nystatin', 'e1b4622c-0f9f-4c00-b42c-2aa85a5e3d4f', to_date('9/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3044, 'NYTOL (Oral Pill)', '1129625', 'Diphenhydramine', 'c81d018a-0170-4396-81e9-2e13a53f868a', to_date('2/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3045, 'OASIS TEARS (Ophthalmic)', '961145', 'Glycerin', '00071697-4ac6-4962-8eee-388b8b52bd40', to_date('11/23/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3046, 'Oat loose smut extract (Injectable)', '40175872', 'oat loose smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3047, 'OBIZUR (Injectable)', '1352213', 'Factor VIII', 'a69ccbb3-7648-4978-8c6d-7ca6b95a9b01', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3048, 'OC 8 ADULT ACNE (Topical)', '918172', 'Benzoyl Peroxide', '9d84b8f4-432b-44fa-9c4d-362615454fe6', to_date('8/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3049, 'OCTAGAM (Injectable)', '19117912', 'Immunoglobulin G', '810c8752-a7cb-0bce-777d-8539429773c2', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3050, 'Octreotide (Injectable)', '1522957', 'Octreotide', '5d3095a8-e5c7-4705-8c4f-9fca8afd5847', to_date('6/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3051, 'OCUFEN (Ophthalmic)', '1156378', 'Flurbiprofen', '5a4d5684-b20a-4fde-a808-404c7b9d25b3', to_date('8/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3052, 'OCUFLOX (Ophthalmic)', '923081', 'Ofloxacin', '7aab4449-3dda-4e2c-8e40-b3244a548bf5', to_date('7/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3053, 'OCUPRESS (Ophthalmic)', '950370', 'Carteolol', '5f82e53e-d6db-432f-af68-9de88d1b1720', to_date('10/5/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3054, 'OFEV (Oral Pill)', '45775396', 'nintedanib', 'da1c9f37-779e-4682-816f-93d0faa4cfc9', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3055, 'Ofloxacin (Ophthalmic)', '923081', 'Ofloxacin', '7882f70e-d228-4c52-9390-0d927c51af1f', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3056, 'Ofloxacin (Oral Pill)', '923081', 'Ofloxacin', '1d19a6db-6da5-e7de-f929-2d18bdfa2cf5', to_date('7/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3057, 'Ofloxacin (Otic)', '923081', 'Ofloxacin', '75d8099b-4e08-43c0-811e-589d4fb52932', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3058, 'OLANZapine (Injectable)', '785788', 'olanzapine', '3b3bc948-161e-49ee-b67f-4bbb63af23d6', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3059, 'OLANZapine (Oral Disintegrating)', '785788', 'olanzapine', '35b52ceb-5c07-49c5-9b1d-4708db66eaff', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3060, 'OLANZapine (Oral Pill)', '785788', 'olanzapine', '3347d1c8-04c9-5ce1-8cda-b38e0412b709', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3061, 'Olmesartan (Oral Pill)', '40226742', 'olmesartan', 'ae3e0a4e-3a0c-4589-adb0-8fc3a5510f5b', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3062, 'Olopatadine (Ophthalmic)', '915855', 'olopatadine', 'ae8b4a9d-4308-4a3c-8ec9-1e8d9060db68', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3063, 'Olsalazine (Oral Pill)', '916282', 'olsalazine', '75a96561-6f52-4c11-a105-391fbbfe4827', to_date('10/10/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3064, 'OLUX (Topical)', '998415', 'Clobetasol', '6a53f8c0-458b-4f5d-9679-ccf667461613', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3065, 'Omacetaxine mepesuccinate (Injectable)', '19069046', 'omacetaxine mepesuccinate', '83a504ef-cf92-467d-9ecf-d251194a3484', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3066, 'Omega-3 Acid Ethyl Esters (USP) (Oral Pill)', '1560305', 'Omega-3 Acid Ethyl Esters (USP)', '5fe15bdb-f59f-4b87-8e5d-8a3d5683eb3d', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3067, 'Omeprazole (Oral Pill)', '923645', 'Omeprazole', '54394aec-a36b-427f-9be4-76e3768595c6', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3068, 'Omeprazole/Sodium Bicarbonate (Oral Pill)', '923645', 'Omeprazole', 'c43b7c1e-1eb6-48b4-ba73-56e274239ae2', to_date('1/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3069, 'OMNI GEL (Oral Gel)', '1036094', 'Stannous Fluoride', '0f1afc36-f699-4072-b90b-c9f5be989a49', to_date('8/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3070, 'OMNIPRED (Ophthalmic)', '1550557', 'prednisolone', '4bbb4356-b4b3-4497-a3a3-8f4b65d326fe', to_date('7/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3071, 'OMTRYG (Oral Pill)', '1560305', 'Omega-3 Acid Ethyl Esters (USP)', '5fe15bdb-f59f-4b87-8e5d-8a3d5683eb3d', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3072, 'ONCASPAR (Injectable)', '1326481', 'pegaspargase', 'd046ec54-9ac8-4c9f-87a7-69e9900d8016', to_date('8/8/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3073, 'Ondansetron (Injectable)', '1000560', 'Ondansetron', 'e0050959-c14c-41b6-9a92-fadc5f6feff3', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3074, 'Ondansetron (Oral Disintegrating)', '1000560', 'Ondansetron', 'e5950fac-27c8-49b8-81d5-046ec065621b', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3075, 'Ondansetron (Oral Liquid)', '1000560', 'Ondansetron', '38435346-d505-4bdd-bbc6-a7bcba411033', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3076, 'Ondansetron (Oral Pill)', '1000560', 'Ondansetron', '2c94fed2-f880-44a9-8d10-93fa5713dcb4', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3077, 'Ondansetron (Oral Strip)', '1000560', 'Ondansetron', 'ed036bdb-b832-440f-82c7-ade2956b73ee', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3078, 'ONE TOUCH REFORMULATED APR 2009 (Topical)', '917006', 'Benzocaine', 'a75b6e20-a180-4a8d-be08-de54812c4f5e', to_date('12/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3079, 'Oneseed juniper pollen extract (Injectable)', '40172384', 'oneseed juniper pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3080, 'ONGLYZA (Oral Pill)', '40166035', 'saxagliptin', 'ba48ac4b-9503-4006-f6e2-3b8a83059c03', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3081, 'ONMEL (Oral Pill)', '1703653', 'Itraconazole', 'fb8a2e5b-fd23-4977-81de-a95f4af168e2', to_date('1/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3082, 'ONTAK (Injectable)', '19051642', 'denileukin diftitox', '42dfffb1-d0f3-42d5-944c-64f092fc436e', to_date('3/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3083, 'OPANA (Oral Pill)', '1125765', 'Oxymorphone', '9be700c1-937a-180d-fb38-bc2aa85d20cf', to_date('10/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3084, 'OPCON-A (Ophthalmic)', '914533', 'Naphazoline', '90a05c13-5b87-415b-9892-10d2edbc1943', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3085, 'Opium (Oral Liquid)', '923829', 'Opium', '3ad95865-a77c-41da-b572-e5c0bb404c79', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3086, 'OPSUMIT (Oral Pill)', '44507580', 'Macitentan', '1e484a50-55db-4b85-8c57-6cd1b0353abd', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3087, 'OPTIVAR (Ophthalmic)', '934075', 'azelastine', 'f4b9597c-5b50-4889-be41-20bd1f13aaa5', to_date('4/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3088, 'ORABASE (Oral Paste)', '917006', 'Benzocaine', '387f52e1-157a-4b9e-8f98-9001c6880786', to_date('2/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3089, 'ORACEA (Oral Pill)', '1738521', 'Doxycycline', '4e954825-3f60-4dbb-a1be-b146fe1acae4', to_date('2/12/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3090, 'ORACIT (Oral Liquid)', '950435', 'Citric Acid', 'bc26abed-8e6e-475d-8ab3-abf7d0377003', to_date('10/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3091, 'ORAJEL (Mucosal)', '917006', 'Benzocaine', '707d27da-731c-4726-9c77-63fcc071d09d', to_date('12/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3092, 'ORAJEL (Oral Gel)', '917006', 'Benzocaine', '574c7911-e24b-4b52-b01f-df89d58fd505', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3093, 'ORAJEL (Topical)', '917006', 'Benzocaine', '8c2e436a-9d32-4dd5-ba5f-712bc39d36c4', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3094, 'ORAJEL BLEEDING GUM RINSE (Mucosal)', '989301', 'Cetylpyridinium', '48b1f5b8-69b1-4d50-960b-733151beef91', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3095, 'ORAJEL DRY MOUTH (Oral Gel)', '961145', 'Glycerin', '0d371e48-d722-4b77-b354-5a44179247bc', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3096, 'ORAJEL MOUTH SORE RINSE (Mucosal)', '1776430', 'Hydrogen Peroxide', 'f82230e0-a6eb-4d1e-8fea-0bf386d97c58', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3097, 'ORAJEL ULTRA (Oral Gel)', '917006', 'Benzocaine', 'c7936cbc-b132-4025-8439-8227b928c2fd', to_date('7/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3098, 'ORAL B ANTI-CAVITY (Mouthwash)', '19069022', 'Sodium Fluoride', 'd8336ad5-d1fb-4290-9433-d852405d1409', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3099, 'ORALONE (Oral Paste)', '903963', 'Triamcinolone', 'ac1e2116-795e-4c20-974d-11fa07cf0fa7', to_date('10/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3100, 'Orange pollen extract (Injectable)', '40172688', 'orange pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3101, 'ORAP (Oral Pill)', '745790', 'Pimozide', '90c0086a-b62c-4cdd-a6af-2efed69cfd4d', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3102, 'ORAPRED (Oral Disintegrating)', '1550557', 'prednisolone', '1e379543-c4cf-4e72-953b-db15b7f0c2a1', to_date('1/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3103, 'ORAQIX (Mucosal)', '989878', 'Lidocaine', 'b501d239-923b-48b2-82ed-6c5c253a67e2', to_date('8/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3104, 'ORASEP REFORMULATED DEC 2013 (Mucosal)', '917006', 'Benzocaine', 'ed70911b-9da8-4e1d-97fa-66b18d28516a', to_date('4/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3105, 'ORAVERSE (Injectable)', '1335539', 'Phentolamine', '38be9414-87c4-4a8a-9f17-99be0d0a33fa', to_date('6/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3106, 'ORAVIG (Buccal)', '907879', 'Miconazole', 'a1bf6bf0-9197-4fc1-af9f-df7b9a1ad6ce', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3107, 'ORBACTIV (Injectable)', '45776147', 'oritavancin', '085d6d1a-21c2-11e4-8c21-0800200c9a66', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3108, 'ORBIVAN (Oral Pill)', '1125315', 'Acetaminophen', 'd3c69436-a681-4e00-8db0-8cbfaac9627e', to_date('4/23/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3109, 'Orchard grass pollen extract (Injectable)', '40161896', 'orchard grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3110, 'Oregon ash pollen extract (Injectable)', '40173249', 'Oregon ash pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3111, 'ORFADIN (Oral Pill)', '1586640', 'nitisinone', '5d449b73-d503-4132-b978-d890491975df', to_date('6/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3112, 'ORIS (Mouthwash)', '1790812', 'Chlorhexidine', '8d90c38e-e241-4f73-877d-ff314408a510', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3113, 'Oritavancin (Injectable)', '45776147', 'oritavancin', '085d6d1a-21c2-11e4-8c21-0800200c9a66', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3114, 'Orlistat (Oral Pill)', '741530', 'orlistat', 'a9c47f08-bd02-4731-aaf7-42173155b2d0', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3115, 'Orphenadrine (Injectable)', '724394', 'Orphenadrine', '8768cd6b-e79d-4b6d-8981-2f01ce28047b', to_date('10/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3116, 'ORTHO-NESIC (Topical)', '938205', 'Camphor', '52db0aec-be7c-4342-a414-60f594f57b3c', to_date('3/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3117, 'ORTHOCLONE OKT3 (Injectable)', '19051865', 'Muromonab-CD3', '2a1f1c18-fa95-45e6-bd00-ac53c73f4747', to_date('6/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3118, 'ORTHOWASH (Mouthwash)', '19069022', 'Sodium Fluoride', '37d407ae-d5b1-4c67-8894-1d419ae36c69', to_date('10/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3119, 'OSCIMIN (Oral Pill)', '923672', 'Hyoscyamine', '8504adad-f6d0-4671-b655-4b62bf29a516', to_date('7/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3120, 'Oseltamivir (Oral Liquid)', '1799139', 'Oseltamivir', '03a2a7f0-406c-4784-84c1-5fd5f5be4773', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3121, 'Oseltamivir (Oral Pill)', '1799139', 'Oseltamivir', '1948cafd-b5b3-4212-9d5d-8c293b1baad5', to_date('5/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3122, 'OSENI (Oral Pill)', '43013884', 'alogliptin', '4c619ed9-fe3e-4158-9938-80c6c3493d55', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3123, 'OSMITROL (Injectable)', '994058', 'Mannitol', '0d914965-7001-45cb-ba51-d7c5964b05bc', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3124, 'OSMOPREP (Oral Pill)', '939871', 'sodium phosphate', '983ce15f-cd37-4f3a-9e51-205860e80976', to_date('8/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3125, 'OTOZIN (Otic)', '1036059', 'Antipyrine', 'cd77f88e-8714-45ca-a385-1ca75b8c94bb', to_date('5/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3126, 'OVACE (Shampoo)', '1036252', 'Sulfacetamide', '6a034465-e600-49cb-91bd-7b9ceee6ffc6', to_date('10/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3127, 'OVACE (Soap)', '1036252', 'Sulfacetamide', 'a77aed6c-355f-44ed-ae95-78b4d1549c2b', to_date('1/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3128, 'OVACE (Topical)', '1036252', 'Sulfacetamide', '06876575-edf2-4844-8f20-3eb6e74ccc8e', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3129, 'OVIDE (Topical)', '993979', 'Malathion', '2024030e-b00d-4fcc-b51d-45dc86933749', to_date('1/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3130, 'Oxacillin (Injectable)', '1724703', 'Oxacillin', 'f3bee4d7-82d8-4e2d-8fc8-4446e6fbf999', to_date('3/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3131, 'Oxaliplatin (Injectable)', '1318011', 'oxaliplatin', 'd9400bde-4da8-49c8-a61e-15d2be58e73d', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3132, 'OXANDRIN (Oral Pill)', '1524769', 'Oxandrolone', 'f622616e-4c11-4149-bf00-5ea5ce97800b', to_date('5/17/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3133, 'Oxandrolone (Oral Pill)', '1524769', 'Oxandrolone', '8e6af85f-e44e-4c47-8a1a-7c5cb7893167', to_date('9/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3134, 'Oxaprozin (Oral Pill)', '1118045', 'oxaprozin', '755ca241-0d01-41ba-a735-e37365352a71', to_date('3/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3135, 'Oxazepam (Oral Pill)', '724816', 'Oxazepam', '52488349-1c84-4cdc-89d1-c841a68e904f', to_date('6/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3136, 'OXcarbazepine (Oral Liquid)', '718122', 'oxcarbazepine', 'ca6bfbbb-fcca-4c15-a160-ee5791ed2f6e', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3137, 'OXcarbazepine (Oral Pill)', '718122', 'oxcarbazepine', 'd9741f36-0abd-49b7-9f43-e9700663122b', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3138, 'OXECTA (Oral Pill)', '1124957', 'Oxycodone', 'dd9f9d6d-9a59-4f74-8fe7-685e0c3c5fd4', to_date('1/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3139, 'Oxiconazole (Topical)', '918222', 'oxiconazole', '094d5b1e-ccf6-4384-b208-fd70360ffda2', to_date('12/22/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3140, 'OXISTAT (Topical)', '918222', 'oxiconazole', '094d5b1e-ccf6-4384-b208-fd70360ffda2', to_date('12/22/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3141, 'OXSORALEN-ULTRA (Oral Pill)', '905223', 'Methoxsalen', 'ae951dc4-9031-43bf-943c-cb2366951f23', to_date('3/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3142, 'OXY (Topical)', '918172', 'Benzoyl Peroxide', '9f408142-dc98-4cd9-9060-64c42984ee9a', to_date('1/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3143, 'OXY CLEAN (Topical)', '964407', 'Salicylic Acid', 'c1086120-8eb3-4ba6-ac8e-ae868ddc27a7', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3144, 'OXY DAILY WASH (Soap)', '918172', 'Benzoyl Peroxide', '89cdc287-e374-4254-b867-97e9f9b6bdd1', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3145, 'OXY FACE SCRUB (Soap)', '964407', 'Salicylic Acid', '4cc02e46-bfae-4f53-8aa4-4662a32339f9', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3146, 'Oxybutynin (Oral Liquid)', '918906', 'oxybutynin', '17d61203-a462-4393-b261-72bf48d51942', to_date('3/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3147, 'Oxybutynin (Oral Pill)', '918906', 'oxybutynin', 'b15f1a2c-dcae-4c3e-923f-ec81078ba3c4', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3148, 'Oxybutynin (Topical)', '918906', 'oxybutynin', 'c6754623-b14c-4fc3-8719-48eee3119156', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3149, 'oxyCODONE (Oral Liquid)', '1124957', 'Oxycodone', '73eb3e1f-7706-4688-9e75-1050b4a8a533', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3150, 'oxyCODONE (Oral Pill)', '1124957', 'Oxycodone', '3efb2cf8-9b0e-4d76-afb1-c4ecd514d534', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3151, 'Oxygen (Inhalant)', '19025274', 'Oxygen', 'dfcc57ba-4b9f-458c-9b8a-7ab4f3e68eb2', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3152, 'Oxymetazoline (Nasal)', '925636', 'Oxymetazoline', '46256806-7d8e-4e97-906e-ae5c41b3b7e2', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3153, 'Oxymetholone (Oral Pill)', '1525741', 'Oxymetholone', '4b9c6c34-9cb2-4d70-b70e-c7ce2fda4212', to_date('10/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3154, 'Oxymorphone (Oral Pill)', '1125765', 'Oxymorphone', '2c4b8fab-3112-43a0-994a-591e5089f619', to_date('3/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3155, 'Oxytetracycline (Oral Pill)', '925952', 'Oxytetracycline', 'd30ffe60-a418-4425-883e-58d10417b9bf', to_date('9/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3156, 'Oxytocin (Injectable)', '1326115', 'Oxytocin', 'c7fd585a-99b7-4309-b003-a6cbef05372c', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3157, 'P-Aminohippurate (Injectable)', '19053177', 'p-Aminohippurate', 'a1975215-25f1-4c5a-878d-bcbf5326bb92', to_date('1/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3158, 'P-Hydroxyamphetamine/Tropicamide (Ophthalmic)', '19026274', 'p-Hydroxyamphetamine', 'da8a8a19-ac1b-4160-aac4-c4c57598eb5d', to_date('8/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3159, 'PACERONE (Oral Pill)', '1309944', 'Amiodarone', 'a13a7632-74ea-4e2f-b791-190a4765c295', to_date('5/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3160, 'PACNEX (Soap)', '918172', 'Benzoyl Peroxide', '764ef37b-7ead-4a64-89eb-67321320138f', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3161, 'Paecilomyces variotii extract (Injectable)', '40175309', 'Paecilomyces variotii extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3162, 'Pale dock pollen extract (Injectable)', '42709315', 'pale dock pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3163, 'Palonosetron (Oral Pill)', '911354', 'palonosetron', 'bd06f321-bb42-4748-92f3-d59626b540e0', to_date('11/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3164, 'Pamabrom (Oral Pill)', '1172206', 'pamabrom', '22122002-c367-480b-b9f5-0504f918cc98', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3165, 'Pamidronate (Injectable)', '1511646', 'pamidronate', 'ad1b83f9-ddf7-44b7-9234-77d6872e4825', to_date('7/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3166, 'PAMINE (Oral Pill)', '1158632', 'Methscopolamine', '2981e734-2a20-4b45-8521-8c13ff2b6578', to_date('9/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3167, 'PAMINE FORTE (Oral Pill)', '1158632', 'Methscopolamine', '2981e734-2a20-4b45-8521-8c13ff2b6578', to_date('9/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3168, 'PAMPRIN CRAMP FORMULA (Oral Pill)', '1125315', 'Acetaminophen', '5f2e9d2a-4c7b-4339-8be7-3711a73fdbe9', to_date('6/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3169, 'PAMPRIN MAX FORMULA (Oral Pill)', '1125315', 'Acetaminophen', '109f5b3f-689a-4ca4-a621-bf5c2d41d7af', to_date('6/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3170, 'PAMPRIN MULTI-SYMPTOM (Oral Pill)', '1125315', 'Acetaminophen', '169704f1-3953-4857-93d0-ddca3359356d', to_date('6/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3171, 'PANADOL (Oral Pill)', '1125315', 'Acetaminophen', '62920a3f-c662-4db2-a4aa-8170a23ed3b6', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3172, 'PANCREAZE (Oral Pill)', '919204', 'Amylases', 'e1431edd-0fc5-4ebc-8c10-53deb0db0d23', to_date('12/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3173, 'Pancuronium (Injectable)', '19026674', 'Pancuronium', 'a95893be-9df7-4f3e-ad72-3298dab8b187', to_date('10/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3174, 'PANDEL (Topical)', '975125', 'Hydrocortisone', '361338e6-d719-4bea-aca0-7dd591fcfa08', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3175, 'PANOXYL (Soap)', '918172', 'Benzoyl Peroxide', '41aac3a5-ce01-435f-948a-668e68802bb9', to_date('2/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3176, 'PANRETIN (Topical)', '941052', 'alitretinoin', '9cf04dad-e312-4b8f-a297-1e002d43e151', to_date('11/14/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3177, 'Pantoprazole (Injectable)', '948078', 'pantoprazole', '5b5ddedd-d429-41a7-8573-10c3e9ad4e52', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3178, 'Pantoprazole (Oral Granules)', '948078', 'pantoprazole', '189b7b6a-9717-44eb-b87b-fd3e985b2268', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3179, 'Pantoprazole (Oral Pill)', '948078', 'pantoprazole', 'd132d29d-723e-4357-87f2-0d760afa50a4', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3180, 'Papaverine (Injectable)', '1326901', 'Papaverine', '9e5e2ce4-7a57-4c61-a826-64c8d11d038e', to_date('8/30/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3181, 'Paper birch pollen extract (Injectable)', '40172798', 'paper birch pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3182, 'Para grass pollen extract (Injectable)', '40170840', 'para grass pollen extract', '34c8c68c-9a78-42ea-89f8-cac82981881e', to_date('1/7/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3183, 'PARAFON FORTE DSC (Oral Pill)', '795113', 'Chlorzoxazone', 'a8d84a0a-aa31-4ebe-bdf8-5b09b2df69a9', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3184, 'PARCOPA (Oral Disintegrating)', '740560', 'Carbidopa', 'dcb0fb25-ad60-4ab6-bc0f-ebc356357d93', to_date('2/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3185, 'PAREMYD (Ophthalmic)', '19026274', 'p-Hydroxyamphetamine', 'da8a8a19-ac1b-4160-aac4-c4c57598eb5d', to_date('8/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3186, 'Paricalcitol (Injectable)', '1517740', 'paricalcitol', 'b2e4eaa9-bf4d-4fe8-ab2e-d2b1a3a555ca', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3187, 'Paricalcitol (Oral Pill)', '1517740', 'paricalcitol', 'ac3028be-d563-4b0c-86d3-5a7e1c92758c', to_date('4/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3188, 'PARLODEL (Oral Pill)', '730548', 'Bromocriptine', 'fc2a08dd-4fb6-4ac4-9082-f99552fae25c', to_date('6/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3189, 'PARNATE (Oral Pill)', '703470', 'Tranylcypromine', '2e7350bd-ab32-4619-a3f9-12fdf56fc5e2', to_date('1/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3190, 'PAROEX (Mouthwash)', '1790812', 'Chlorhexidine', '4e137308-6a21-4bf9-802f-23ff78ee6797', to_date('10/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3191, 'Paromomycin (Oral Pill)', '1727443', 'Paromomycin', 'cc0f4113-e627-4caf-b2d4-95b4106e57f5', to_date('1/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3192, 'PARoxetine (Oral Liquid)', '722031', 'Paroxetine', '584ace29-6e40-432f-950f-ab7e98653d32', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3193, 'PARoxetine (Oral Pill)', '722031', 'Paroxetine', 'fce8fb27-554b-43e2-8ec9-fc4ca0b0ab8b', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3194, 'PARoxetine XR (Oral Pill)', '722031', 'Paroxetine', '21b3b8a2-bfed-4945-954d-6a42ea61888f', to_date('10/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3195, 'PASER D/R (Oral Granules)', '1726228', 'aminosalicylic acid', '6f2753dc-5f0c-4f49-9335-e519afb69ba6', to_date('6/18/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3196, 'Pasireotide (Injectable)', '43012417', 'pasireotide', '442f0d9d-5c7d-4b81-b329-d71be8cf2be2', to_date('3/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3197, 'Passalora fulva extract (Injectable)', '40176152', 'Passalora fulva extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3198, 'PATADAY (Ophthalmic)', '915855', 'olopatadine', 'ee6e2161-789b-4ba0-b234-d4b36fe41c94', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3199, 'PATANOL (Ophthalmic)', '915855', 'olopatadine', 'ae8b4a9d-4308-4a3c-8ec9-1e8d9060db68', to_date('9/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3200, 'PAXIL (Oral Liquid)', '722031', 'Paroxetine', '584ace29-6e40-432f-950f-ab7e98653d32', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3201, 'PAXIL (Oral Pill)', '722031', 'Paroxetine', '584ace29-6e40-432f-950f-ab7e98653d32', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3202, 'PAXIL XR (Oral Pill)', '722031', 'Paroxetine', 'a73cf8ee-f99b-4972-8939-0d394a527134', to_date('10/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3203, 'PAZOL XS (Shampoo)', '1000995', 'Coal Tar', 'ec7873bb-288a-4671-b649-1d5d5ced6476', to_date('7/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3204, 'PCE (Oral Pill)', '1746940', 'Erythromycin', '28a270f4-f713-4d88-b83a-f5b5e9b26746', to_date('1/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3205, 'PCXX NEUTRAL FOAM (Oral Foam)', '19069022', 'Sodium Fluoride', '9f9f36e7-ec66-473d-af17-09d4b492ded5', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3206, 'Pecan pollen extract (Injectable)', '40161960', 'pecan pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3207, 'Pecan pollen extract/White hickory pollen extract (Injectable)', '40161960', 'pecan pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3208, 'Pectin (Oral Lozenge)', '922191', 'pectin', '9d04885b-d866-4eb3-8685-420d0464d004', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3209, 'PEDIA-LAX CHEWABLE (Chewable)', '992956', 'Magnesium Hydroxide', '975f24d8-218c-40f4-84a5-558acf34329d', to_date('5/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3210, 'PEDIA-LAX LIQUID GLYCERIN SUPPOSITORIES (Rectal)', '961145', 'Glycerin', '9edbb46d-0b50-42e9-b9bb-c78bb10aaba3', to_date('11/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3211, 'PEDIACARE CHILDREN''S 24-HR ALLERGY (Oral Liquid)', '1149196', 'Cetirizine', '6855116e-ba31-4373-a410-256c38519330', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3212, 'PEDIACARE CHILDREN''S ALLERGY (Oral Liquid)', '1129625', 'Diphenhydramine', 'eff380b3-0bbf-431b-bbd1-354c05c6deb2', to_date('1/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3213, 'PEDIACARE CHILDREN''S ALLERGY & COLD (Oral Liquid)', '1129625', 'Diphenhydramine', 'e349f954-c331-4493-ae0b-543af66bd1ae', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3214, 'PEDIACARE CHILDREN''S COUGH AND CONGESTION (Oral Liquid)', '1119510', 'Dextromethorphan', '4772d9a5-85f1-4ca9-a240-84d733dcd86e', to_date('10/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3215, 'PEDIACARE CHILDREN''S FEVER REDUCER PAIN RELIEVER (Oral Liquid)', '1125315', 'Acetaminophen', '08eaf987-f6d8-4313-a775-052f9d51327c', to_date('10/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3216, 'PEDIACARE FEVER (Oral Liquid)', '1177480', 'Ibuprofen', '8d904483-5a90-4271-b69f-b33c7e875245', to_date('3/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3217, 'PEDIACARE INFANT FEVER PAIN RELIEVER (Oral Liquid)', '1125315', 'Acetaminophen', '89c78619-2ab0-486a-9f8e-8a17c6362740', to_date('11/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3218, 'PEDIACARE INFANT FEVER REDUCER (Oral Liquid)', '1125315', 'Acetaminophen', 'da488d88-ad6c-460f-b030-daf3827753f8', to_date('10/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3219, 'PEDIACARE INFANT GAS RELIEF (Oral Liquid)', '966991', 'Simethicone', '467af525-ea12-4261-a164-b262f1a017b2', to_date('7/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3220, 'PEDIACARE MULTI SYMPTOM COLD (Oral Liquid)', '1119510', 'Dextromethorphan', 'cb6fa9c2-0a9f-4955-beb2-02dbf891aa4b', to_date('1/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3221, 'PEDIACARE NIGHTTIME MULTI-SYMPTOM COLD (Oral Liquid)', '1129625', 'Diphenhydramine', 'e9432ccf-e0c6-4286-82f2-5a6a10bb5893', to_date('5/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3222, 'PEDIADERM AF (Topical)', '922570', 'Nystatin', 'bb68ae89-8a87-4ff7-a71b-f47ed4da1808', to_date('10/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3223, 'PEDIADERM TA (Topical)', '903963', 'Triamcinolone', 'df864d69-bd2d-4fe2-8619-f2e93ab767f6', to_date('10/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3224, 'Pegademase bovine (Injectable)', '581480', 'pegademase bovine', '9880b900-ea23-11dc-ad56-0002a5d5c51b', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3225, 'Pegaspargase (Injectable)', '1326481', 'pegaspargase', 'd046ec54-9ac8-4c9f-87a7-69e9900d8016', to_date('8/8/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3226, 'Peginterferon alfa-2b (Injectable)', '1797155', 'peginterferon alfa-2b', 'b70816bb-913a-467f-acb8-67ef62cf8dac', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3227, 'PEGINTRON (Injectable)', '1797155', 'peginterferon alfa-2b', 'b70816bb-913a-467f-acb8-67ef62cf8dac', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3228, 'Pegloticase (Injectable)', '40226208', 'Pegloticase', '5f4574d1-401f-4647-83e5-28c0f4a122a7', to_date('4/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3229, 'PEGYLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'bcd57d3c-e1c4-474f-a757-ca89b020278b', to_date('2/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3230, 'Penciclovir (Topical)', '981654', 'penciclovir', '936c7c51-a286-405f-9aa4-ad910f2e8782', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3231, 'Penicillamine (Oral Pill)', '19028050', 'Penicillamine', '80e736d3-2017-4d68-94b4-38255c3c59c6', to_date('8/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3232, 'Penicillin G benzathine/Penicillin G procaine (Injectable)', '1728416', 'Penicillin G', '9a595f58-21e3-4b82-aa4c-8697682bff80', to_date('11/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3233, 'Penicillin G Potassium (Injectable)', '1728416', 'Penicillin G', 'd8aaefb6-3f7d-4bc5-b40a-1c58c3054320', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3234, 'Penicillin G procaine (Injectable)', '1728416', 'Penicillin G', '04f90445-9426-41f4-a467-f0e3245740d7', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3235, 'Penicillin V Potassium (Oral Liquid)', '1729720', 'Penicillin V', '2bfee83c-4f38-440e-9061-58036490d009', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3236, 'Penicillin V Potassium (Oral Pill)', '1729720', 'Penicillin V', 'e3b6a3b4-a61a-4432-9e90-c1ba9e210939', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3237, 'Penicillium chrysogenum var. chrysogenum extract (Injectable)', '40161349', 'Penicillium chrysogenum var. chrysogenum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3238, 'Penicillium expansum extract (Injectable)', '40174478', 'Penicillium expansum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3239, 'Penicillium italicum extract (Injectable)', '40176125', 'Penicillium italicum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3240, 'PENLAC NAIL LACQUER (Topical)', '950098', 'ciclopirox', '9793245c-c3e0-4351-a2ab-b54b46aecb43', to_date('5/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3241, 'PENNSAID (Topical)', '1124300', 'Diclofenac', '4732a181-9fe0-49b4-b486-e2da9ad66e31', to_date('1/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3242, 'Pentamidine (Inhalant)', '1730370', 'Pentamidine', 'e2ad9d3c-b6c3-4f70-87e0-722a8ff94ccb', to_date('2/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3243, 'PENTASA XR (Oral Pill)', '968426', 'mesalamine', '1bdf3222-469c-44b0-bbcd-25faeaeff178', to_date('8/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3244, 'PENTobarbital (Injectable)', '730729', 'Pentobarbital', '5c380ab0-4386-48b6-80ab-ca594b23bc74', to_date('8/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3245, 'Pentostatin (Injectable)', '19031224', 'Pentostatin', '151c6d2e-1af1-4c13-96ec-de3228c6efb3', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3246, 'Pentoxifylline XR (Oral Pill)', '1331247', 'Pentoxifylline', 'e09702d1-43d4-47ed-9563-5af3cd667727', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3247, 'PEP-BACK (Oral Pill)', '1134439', 'Caffeine', 'f9759c55-5d57-4fc4-9fa4-97fc117ab42e', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3248, 'PEPCID (Oral Pill)', '953076', 'Famotidine', '2854047f-c5c4-43c3-8ef2-5c0a84a307f2', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3249, 'PEPCID COMPLETE (Chewable)', '19035704', 'Calcium Carbonate', 'e874118f-b4fe-4c80-aece-99ea20e7e805', to_date('11/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3250, 'PEPTO-BISMOL (Chewable)', '937791', 'bismuth subsalicylate', 'a1785301-3d4d-4c47-bfa1-b51f54201c53', to_date('12/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3251, 'PEPTO-BISMOL (Oral Liquid)', '937791', 'bismuth subsalicylate', 'f2ed9662-687a-4091-b097-dec865af09aa', to_date('12/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3252, 'PEPTO-BISMOL (Oral Pill)', '937791', 'bismuth subsalicylate', '0f02f1a4-3ea4-43de-bfdb-b9cb7626f92a', to_date('12/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3253, 'PEPTO-BISMOL CHILDREN''S (Chewable)', '19035704', 'Calcium Carbonate', '2231d2e1-db04-4efb-9b68-76cd83df67e8', to_date('2/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3254, 'PERCOCET (Oral Pill)', '1125315', 'Acetaminophen', 'db8d5c93-7d59-4995-b388-d55ba90d6acb', to_date('8/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3255, 'PERCODAN REFORMULATED MAY 2009 (Oral Pill)', '1112807', 'Aspirin', '599803dc-7595-482f-aa7e-70d349fbe699', to_date('8/6/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3256, 'PERCOGESIC REFORMULATED JAN 2011 (Oral Pill)', '1125315', 'Acetaminophen', '85f0a6c8-30c8-4a1f-ac35-542c77a6522a', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3257, 'PERCY MEDICINE (Oral Liquid)', '937791', 'bismuth subsalicylate', '08dd53b7-8345-4849-9155-60429cbe2c51', to_date('10/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3258, 'PERDIEM OVERNIGHT (Oral Pill)', '938268', '"sennosides, USP"', '7374ae02-74d4-4250-9116-21872e9545ed', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3259, 'Perennial rye grass pollen extract (Injectable)', '40161976', 'perennial rye grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3260, 'PERFECT CHOICE ONE MINUTE (Oral Gel)', '976309', 'Hydrofluoric Acid', '2b678081-29cd-4311-a9fa-d884734778e2', to_date('12/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3261, 'Pergolide (Oral Pill)', '732309', 'Pergolide', 'a26390e8-eb86-4623-8cdd-45b24b14df74', to_date('10/26/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3262, 'PERI-COLACE REFORMULATED FEB 2008 (Oral Pill)', '941258', 'Docusate', 'f63ecf22-fb2b-8677-5bfe-c6ac368977a3', to_date('9/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3263, 'PERIDEX (Mouthwash)', '1790812', 'Chlorhexidine', '6ea1691d-5379-f0c0-1b37-ecf08f6dbc00', to_date('4/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3264, 'PERIGIENE (Soap)', '949459', 'chloroxylenol', '4f6e8610-f474-450e-a385-eaea58f649c8', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3265, 'PERIGUARD (Topical)', '911064', 'Zinc Oxide', '6e4a7df5-684d-4fe4-bf55-05ce9b5685e6', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3266, 'Perindopril (Oral Pill)', '1373225', 'Perindopril', '87768fbf-7c63-47da-8925-0316f343d6ef', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3267, 'PERIO MED (Mouthwash)', '1036094', 'Stannous Fluoride', '7f79eb00-86df-4284-b415-47f45e4849da', to_date('10/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3268, 'PERIOCHIP (Implant)', '1790812', 'Chlorhexidine', 'c40ab6ac-8987-42d2-a95b-95fbfd3b0162', to_date('3/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3269, 'PERIOGARD (Mouthwash)', '1790812', 'Chlorhexidine', '6e537d5f-bce1-41ce-9984-9b3c2861b7c9', to_date('3/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3270, 'PERMAX (Oral Pill)', '732309', 'Pergolide', 'a26390e8-eb86-4623-8cdd-45b24b14df74', to_date('9/6/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3271, 'Permethrin (Shampoo)', '922868', 'Permethrin', '9f4cad52-e1fe-4c7b-ab08-deeef4a86ca9', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3272, 'Permethrin (Topical)', '922868', 'Permethrin', 'a8d4eb78-4556-4315-815c-7f05e691b7aa', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3273, 'Perphenazine (Oral Pill)', '733008', 'Perphenazine', '20c06f4c-639a-4de3-846f-7754537dc935', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3274, 'PERSA-GEL (Topical)', '918172', 'Benzoyl Peroxide', '2af69b7d-258a-4cc2-b3f3-a108ccf99458', to_date('7/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3275, 'PERSANTINE (Oral Pill)', '1331270', 'Dipyridamole', 'ca68879c-0214-4d7c-93b0-bdaf8ef23f8e', to_date('12/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3276, 'Petrolatum (Topical)', '19033354', 'Petrolatum', '8068b6e6-2bb7-4262-acaf-05e7a60249a6', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3277, 'Petrolatum/Resorcinol (Topical)', '19033354', 'Petrolatum', '03f57a4a-f94b-4ba6-b709-41cfb6e16261', to_date('1/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3278, 'Petrolatum/Zinc Oxide (Paste)', '19033354', 'Petrolatum', 'f830a0e4-dba5-4a5f-af35-3832ec70d4d3', to_date('4/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3279, 'PEXEVA (Oral Pill)', '722031', 'Paroxetine', '6c4d4603-190a-496f-a40f-bc09853b9820', to_date('7/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3280, 'PFIZERPEN (Injectable)', '1728416', 'Penicillin G', 'efef4846-9497-41af-8dd6-518f86eca7f2', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3281, 'PHAZYME (Oral Pill)', '966991', 'Simethicone', '740fd60b-ebb8-493b-aadb-55eee80f09fe', to_date('12/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3282, 'PHENADOZ (Rectal)', '1153013', 'Promethazine', 'c293895b-1010-4283-9228-1184f01a0ef0', to_date('12/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3283, 'PHENAZO (Oral Pill)', '933724', 'Phenazopyridine', '78506c63-8061-499c-a57e-bdd88f805591', to_date('2/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3284, 'Phenazopyridine (Oral Pill)', '933724', 'Phenazopyridine', 'efabc3b6-395b-4a39-8e46-01240f26e016', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3285, 'Phendimetrazine (Oral Pill)', '723344', 'phendimetrazine', '112cbc20-15ab-5ac1-e054-00144ff8d46c', to_date('3/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3286, 'Phenelzine (Oral Pill)', '733896', 'Phenelzine', 'afd48e96-a64e-4e5a-ba21-504a53855397', to_date('10/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3287, 'PHENERGAN (Injectable)', '1153013', 'Promethazine', '6f7e47cc-f823-4336-8107-f980e3049617', to_date('10/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3288, 'PHENERGAN (Rectal)', '1153013', 'Promethazine', 'd24e400d-e781-a0a4-b629-e99c32736b8a', to_date('8/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3289, 'PHENobarbital (Oral Liquid)', '734275', 'Phenobarbital', 'ff602c63-870a-4a32-b14e-27dbfb34151f', to_date('3/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3290, 'PHENobarbital (Oral Pill)', '734275', 'Phenobarbital', '1c97b14f-b6a9-4f34-891c-f84280729a89', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3291, 'Phenol (Mucosal)', '923540', 'phenol', '74122093-83c0-4049-a2c8-fb557dacc7c5', to_date('7/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3292, 'Phenol (Oral Lozenge)', '923540', 'phenol', '6f4402aa-3f6e-4469-b512-868dba734d2b', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3293, 'Phenol (Topical)', '923540', 'phenol', '3e7d3299-dad2-401d-a81c-5653f44de3ba', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3294, 'Phentermine (Oral Pill)', '735340', 'Phentermine', 'efa6398d-fd9c-48f4-a91f-5a91b4ae5b5e', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3295, 'Phentermine XR (Oral Pill)', '735340', 'Phentermine', '7ca86c66-409b-4852-8631-c3ada6e60738', to_date('2/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3296, 'Phentolamine (Injectable)', '1335539', 'Phentolamine', '4025cf98-ea87-4531-b0fc-6283c84f63f3', to_date('6/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3297, 'Phenylbutazone (Injectable)', '1135710', 'Phenylbutazone', '340d310d-7987-4f9c-ae39-eab2340d8f74', to_date('4/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3298, 'Phenylbutyrate (Oral Pill)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3299, 'Phenylbutyrate (Oral Powder)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3300, 'Phenylephrine (Injectable)', '1135766', 'Phenylephrine', '1651c487-5454-49f7-af45-71bfb9c9c56b', to_date('9/20/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3301, 'Phenylephrine (Nasal)', '1135766', 'Phenylephrine', '887562bf-1b9d-4980-8859-5d8d8a723994', to_date('6/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3302, 'Phenylephrine (Ophthalmic)', '1135766', 'Phenylephrine', 'a4d3fe20-f063-11e0-ac29-0002a5d5c51b', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3303, 'Phenylephrine (Oral Liquid)', '1135766', 'Phenylephrine', '4dfd46e4-b9f9-464d-aa47-e8fa9e526a5d', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3304, 'Phenylephrine (Oral Pill)', '1135766', 'Phenylephrine', '22feef40-6b75-48a9-827c-f7925cf1f695', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3305, 'Phenylephrine (Rectal)', '1135766', 'Phenylephrine', 'a95c678f-84f7-13db-f5b5-05d4d8761fc4', to_date('2/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3306, 'Phenylephrine/Pramoxine (Rectal)', '1135766', 'Phenylephrine', 'e144fb04-db3c-4e22-9c9f-8378c7f0ce1f', to_date('2/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3307, 'Phenylephrine/Promethazine (Oral Liquid)', '1135766', 'Phenylephrine', '1ed2a01c-6521-451e-819f-7464562314a3', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3308, 'Phenylephrine/Pyrilamine (Oral Liquid)', '1135766', 'Phenylephrine', '1089fc64-2296-4c80-a0db-efd50e693a25', to_date('12/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3309, 'Phenylephrine/Pyrilamine (Oral Pill)', '1135766', 'Phenylephrine', 'fd6ab993-d4ca-490b-a07c-61b0910ea657', to_date('10/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3310, 'Phenylephrine/Thonzylamine (Oral Liquid)', '1135766', 'Phenylephrine', '5e133352-255f-41cc-aacc-0508d634368d', to_date('4/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3311, 'Phenylephrine/Triprolidine (Oral Liquid)', '1135766', 'Phenylephrine', '26c2117e-804e-4132-8707-fc0302fb9090', to_date('3/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3312, 'Phenylephrine/Witch Hazel (Rectal)', '1135766', 'Phenylephrine', '126d0cf5-4619-45c5-88dc-7028a11787fb', to_date('11/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3313, 'PHENYLHISTINE DH (Oral Liquid)', '1192710', 'Chlorpheniramine', '6ca7c4ff-ba0d-490f-b8b8-9518955424e1', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3314, 'PHENYTEK XR (Oral Pill)', '740910', 'Phenytoin', 'fc10b6de-3dbd-4f8a-8049-def272d0a2f1', to_date('7/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3315, 'Phenytoin (Chewable)', '740910', 'Phenytoin', '708599c8-6d55-4765-94b6-0c8229dd1379', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3316, 'Phenytoin (Oral Liquid)', '740910', 'Phenytoin', '9ce9adc8-6fa2-4444-8386-14cd576ac63d', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3317, 'Phenytoin (Oral Pill)', '740910', 'Phenytoin', 'a0663e35-fb54-4267-81eb-a7165be54465', to_date('8/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3318, 'Phenytoin XR (Oral Pill)', '740910', 'Phenytoin', 'f46729db-f841-4bfc-8a29-7a09a48fc9d6', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3319, 'PHISOHEX (Soap)', '1768734', 'Hexachlorophene', 'e9c6f5b4-8374-491a-9b7c-fe008f20e3d1', to_date('7/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3320, 'PHOS-FLUR (Mouthwash)', '19069022', 'Sodium Fluoride', '84de9ca9-7959-4d5f-9bb0-884cee1b8038', to_date('7/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3321, 'PHOS-FLUR (Toothpaste)', '19069022', 'Sodium Fluoride', '540306ab-083a-4129-9c66-7ff5e425d9dc', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3322, 'PHOSLO (Oral Pill)', '951469', 'calcium acetate', '34a29fae-b549-41ed-bd7d-e98fe2110bef', to_date('8/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3323, 'PHOSPHOLINE IODIDE (Ophthalmic)', '958368', 'Echothiophate', 'c4adbc81-6681-4e12-f8ab-5d1cb7723aad', to_date('12/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3324, 'PHOTOFRIN (Injectable)', '19089602', 'Dihematoporphyrin Ether', '5c4841b4-fbc0-4163-8ee1-cb28629cbfbf', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3325, 'Physostigmine (Injectable)', '19044337', 'Physostigmine', 'b81350a6-715b-451c-87e9-3674ec29ffd8', to_date('10/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3326, 'Pignut hickory pollen extract (Injectable)', '40172636', 'pignut hickory pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3327, 'Pilocarpine (Ophthalmic)', '945286', 'Pilocarpine', 'd87192c5-c6b4-4d56-95b1-bb242afed3c1', to_date('4/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3328, 'Pilocarpine (Oral Pill)', '945286', 'Pilocarpine', '610022b7-7dc9-405a-a580-104657f43bdf', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3329, 'Pimecrolimus (Topical)', '915935', 'Pimecrolimus', 'e4027e5a-0f9b-4070-b196-f60172f45c4c', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3330, 'Pimozide (Oral Pill)', '745790', 'Pimozide', 'fd9729c3-545f-4d34-9bc7-72b61e028fc4', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3331, 'Pin oak pollen extract (Injectable)', '40172640', 'pin oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3332, 'PIN-X (Chewable)', '1759270', 'Pyrantel', '8c37db7c-a73e-4d99-a8a9-d55da1a74a3e', to_date('12/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3333, 'Pindolol (Oral Pill)', '1345858', 'Pindolol', '07fe9cc3-1ef2-420c-b45d-7f1e894b6ef9', to_date('10/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3334, 'Pioglitazone (Oral Pill)', '1525215', 'pioglitazone', 'd2ddc491-88a9-4063-9150-443b4fa4330c', to_date('5/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3335, 'Piperacillin (Injectable)', '1746114', 'Piperacillin', 'fac0c875-111e-4af2-d186-ed4d4ee9de59', to_date('5/22/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3336, 'Piperacillin/Tazobactam (Injectable)', '1746114', 'Piperacillin', '7b3ba6b9-59e1-454a-9ddc-ab3592221627', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3337, 'Piperonyl Butoxide/Pyrethrins (Shampoo)', '946340', 'Piperonyl Butoxide', '4954a3f2-8d27-4955-ab88-2518b8a05252', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3338, 'Piperonyl Butoxide/Pyrethrins (Topical)', '946340', 'Piperonyl Butoxide', '7509990f-0bc8-44dc-9678-05b27f2c1368', to_date('9/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3339, 'PIPRACIL (Injectable)', '1746114', 'Piperacillin', 'fac0c875-111e-4af2-d186-ed4d4ee9de59', to_date('5/22/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3340, 'Piroxicam (Oral Pill)', '1146810', 'Piroxicam', '6047dd25-8419-42ce-bd58-9e568ae7b50f', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3341, 'Pitavastatin (Oral Pill)', '40165636', 'pitavastatin', '44dcbf97-99ec-427c-ba50-207e0069d6d2', to_date('10/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3342, 'Pitch pine pollen extract (Injectable)', '40172710', 'pitch pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3343, 'PITOCIN (Injectable)', '1326115', 'Oxytocin', '969d5b35-0add-4c23-9605-6a5b6ab65c95', to_date('11/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3344, 'Plains cottonwood pollen extract (Injectable)', '40167516', 'plains cottonwood pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3345, 'PLAN B ONE-STEP (Oral Pill)', '1589505', 'Levonorgestrel', 'e53e3f9a-d359-4c5a-aceb-d002ed367849', to_date('12/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3346, 'PLAQUENIL (Oral Pill)', '1777087', 'Hydroxychloroquine', '631ed616-f23c-43c9-b63b-f53707c077cb', to_date('7/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3347, 'PLASBUMIN (Injectable)', '1344143', '"Albumin Human, USP"', '5b334e41-5297-540c-5fc1-cd7b845c5685', to_date('4/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3348, 'Plasma protein fraction (Injectable)', '19025693', 'plasma protein fraction', '679bbaf2-b082-5948-8400-ece5340eabc1', to_date('5/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3349, 'PLASMA-LYTE 56 (Injectable)', '19013986', 'magnesium acetate', '94c12711-d672-450d-baae-06e24a72aace', to_date('9/28/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3350, 'PLASMA-LYTE 56 IN 5 % DEXTROSE (Injectable)', '1560524', 'Glucose', '85c08b62-8de0-42d2-8cdc-fe42e6b605d7', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3351, 'PLASMANATE (Injectable)', '19025693', 'plasma protein fraction', '679bbaf2-b082-5948-8400-ece5340eabc1', to_date('5/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3352, 'PLAVIX (Oral Pill)', '1322184', 'clopidogrel', '10360cf0-1671-3cbe-cd7c-2c8e8753bd1b', to_date('3/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3353, 'Pleospora herbarum extract (Injectable)', '40176165', 'Pleospora herbarum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3354, 'Plerixafor (Injectable)', '19017581', 'Plerixafor', '0ed08d2b-5051-46b2-aa37-1d6275bf9003', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3355, 'PLETAL (Oral Pill)', '1350310', 'cilostazol', '24d75b58-bafb-4440-b8d7-4f4079c08b0b', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3356, 'PLEXION (Soap)', '1036252', 'Sulfacetamide', '817a486f-7668-42fa-8f7c-d67ffc647da5', to_date('5/13/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3357, 'PLEXION (Topical)', '1036252', 'Sulfacetamide', 'f4ad79c1-bdac-40aa-af75-476826c7f009', to_date('5/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3358, 'PLURATUSS (Oral Liquid)', '1130863', 'Brompheniramine', '08fb676a-9df6-435f-90f1-9b0b2de453ce', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3359, 'Podofilox (Topical)', '947705', 'podofilox', '6af07697-5203-43e0-ba35-83683af851c3', to_date('3/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3360, 'Polidocanol (Injectable)', '40175900', 'polidocanol', 'dfd6b4a0-b0dc-11e2-9e96-0800200c9a66', to_date('3/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3361, 'POLOCAINE (Injectable)', '702774', 'Mepivacaine', '007fcf17-f78a-40a7-d494-af93bbb40032', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3362, 'POLY HIST CB (Oral Liquid)', '1140640', 'carbetapentane', 'c3a1a47a-27ce-4565-9d6a-a2d8314357a6', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3363, 'POLY HIST FORTE REFORMULATED NOV 2013 (Oral Pill)', '1192710', 'Chlorpheniramine', '8f6622e1-b40d-4d1c-9322-463775728a25', to_date('2/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3364, 'POLY HIST NC (Oral Liquid)', '1201620', 'Codeine', '96a2f945-bace-431e-8fd6-d73a6dc1baea', to_date('3/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3365, 'POLY HIST PD (Oral Liquid)', '1192710', 'Chlorpheniramine', '8728160d-6172-4f4e-b512-46f5d9bca733', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3366, 'POLY TUSSIN EX (Oral Liquid)', '1189596', 'dihydrocodeine', 'a3d94294-e66b-4384-9e9a-489a98bd5964', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3367, 'POLYCIN-B (Ophthalmic)', '915175', 'Bacitracin', '7eee57e9-b09c-4316-add2-66b5b06b6e79', to_date('7/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3368, 'POLYETHYLENE GLYCOL 3350 (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'bcd57d3c-e1c4-474f-a757-ca89b020278b', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3369, 'POLYETHYLENE GLYCOL 3350/Potassium Chloride/Sodium Bicarbonate/Sodium Chloride (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '444c83ae-ac3a-467c-be05-e2bcbfbaaba1', to_date('3/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3370, 'Polyethylene Glycol 400 (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '10fcf407-6eaf-4730-9ed0-9b7715cf5701', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3371, 'Polyethylene Glycol 400/Propylene glycol (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '46288fea-f448-4a9e-b3da-f9fc54614ffd', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3372, 'Polyethylene Glycol 400/Tetrahydrozoline (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '36136ce4-9d66-4e56-bd51-0616a79a42a7', to_date('2/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3373, 'Polymyxin B (Injectable)', '948582', 'Polymyxin B', '805caef0-89df-4bcf-876d-9f6b7a89c9a3', to_date('4/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3374, 'Polymyxin B/Trimethoprim (Ophthalmic)', '948582', 'Polymyxin B', '1a01d41b-3da1-4938-9e71-499320c72dd2', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3375, 'Polysaccharide iron complex (Oral Liquid)', '1300751', 'Polysaccharide iron complex', '17cd83ec-8779-45f9-8c8d-0aaa8c7b9b42', to_date('1/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3376, 'Polysaccharide iron complex (Oral Pill)', '1300751', 'Polysaccharide iron complex', '968c74e0-0510-4a0e-add2-37af97fc6928', to_date('3/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3377, 'Polysorbate 80 (Ophthalmic)', '948760', 'Polysorbate 80', 'dbb0d312-c79a-4c89-acb1-b895b52c05d5', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3378, 'POLYSPORIN (Topical)', '915175', 'Bacitracin', 'dd7aceb6-0666-4059-b2a9-8e7fe5f3f0ac', to_date('7/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3379, 'Polythiazide/Reserpine (Oral Pill)', '948787', 'Polythiazide', 'b503fa5e-5726-426d-867c-e8fe59ed3ead', to_date('10/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3380, 'Polyvinyl Alcohol (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '556e7de7-e0ae-4ddb-a190-599238355443', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3381, 'Polyvinyl Alcohol/Povidone (Ophthalmic)', '948856', 'Polyvinyl Alcohol', 'ecaa0eba-1662-4394-b26f-a765f422dcea', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3382, 'Polyvinyl Alcohol/Povidone/Tetrahydrozoline (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '9b5a7220-33ae-4bee-b7d3-65cf2ef86c88', to_date('11/17/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3383, 'Pomalidomide (Oral Pill)', '43014237', 'pomalidomide', '2b25ef01-5c9e-11e1-b86c-0800200c9a66', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3384, 'POMALYST (Oral Pill)', '43014237', 'pomalidomide', '2b25ef01-5c9e-11e1-b86c-0800200c9a66', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3385, 'Ponatinib (Oral Pill)', '43013182', 'ponatinib', '807f988e-117b-4497-934d-73aa78baac71', to_date('10/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3386, 'Post oak pollen extract (Injectable)', '40172774', 'post oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3387, 'Potassium Acetate (Injectable)', '19076414', 'Potassium Acetate', '0f2af08c-8dbb-46ce-9582-13239a47b546', to_date('7/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3388, 'Potassium bicarbonate (Effervescent)', '19027080', 'potassium bicarbonate', '98c778f9-5a3d-4b4f-9c9e-8a5f0b84b2a6', to_date('3/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3389, 'Potassium bitartrate/Sodium Bicarbonate (Rectal)', '19086788', 'Potassium bitartrate', 'd868de56-ac3b-4e44-8aa5-031661f0ac25', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3390, 'Potassium Chloride (Effervescent)', '19049105', 'Potassium Chloride', 'd5a02700-b888-43b0-85c5-ac8938438c9e', to_date('4/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3391, 'Potassium Chloride (Injectable)', '19049105', 'Potassium Chloride', '7c390c7c-1a1d-4f8a-a83b-097179278b2a', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3392, 'Potassium Chloride (Oral Liquid)', '19049105', 'Potassium Chloride', 'bae3548f-40fe-4ef5-adb3-eb4cef6f735d', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3393, 'Potassium Chloride XR (Oral Pill)', '19049105', 'Potassium Chloride', '74883ca9-e9cf-4556-929d-72c53f0478ac', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3394, 'Potassium Chloride/Sodium Chloride (Injectable)', '19049105', 'Potassium Chloride', 'becc7410-0a25-49f5-b0c3-240078479dc8', to_date('11/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3395, 'Potassium citrate XR (Oral Pill)', '976545', 'potassium citrate', '2215dc1d-0b5a-469e-9b51-4d7480a51078', to_date('11/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3396, 'Potassium gluconate (Oral Pill)', '19059547', 'Potassium gluconate', '10e2e633-9bc5-41d7-89ab-a10a928e89ce', to_date('1/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3397, 'Potassium Iodide (Oral Pill)', '19049909', 'Potassium Iodide', '566c8453-bae5-4f96-bc82-30d4543c9895', to_date('4/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3398, 'Potassium nitrate (Oral Strip)', '927322', 'potassium nitrate', 'ac99f344-f0a7-4502-a06f-888a1b382edd', to_date('10/5/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3399, 'Potassium nitrate/Silver Nitrate (Topical)', '927322', 'potassium nitrate', 'b7634e27-3c75-4e56-ab42-3e5796edb0c7', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3400, 'Potassium nitrate/Sodium Fluoride (Toothpaste)', '927322', 'potassium nitrate', '1b6618ea-6533-41d7-be2c-13bb9e108dc5', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3401, '"Potassium phosphate/Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Oral Pill)"', '19027362', 'potassium phosphate', '83376725-ee0f-40ad-bd90-31a61b9445cf', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3402, '"Potassium phosphate/Sodium Phosphate, Monobasic (Oral Pill)"', '19027362', 'potassium phosphate', '9f446400-c403-4971-879e-1341f7f7d9da', to_date('10/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3403, 'Povidone-Iodine (Ophthalmic)', '1750087', 'Povidone-Iodine', 'b026de1b-9949-4557-ac49-c7b0038c24cd', to_date('7/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3404, 'Povidone-Iodine (Soap)', '1750087', 'Povidone-Iodine', '4779974e-c149-489d-9cce-a0e9e0e921c9', to_date('7/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3405, 'Povidone-Iodine (Topical)', '1750087', 'Povidone-Iodine', '6ebacffc-e42c-4e8a-a87c-684881460742', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3406, 'Povidone-Iodine (Vaginal)', '1750087', 'Povidone-Iodine', 'ebd9aa34-6b66-4645-bbaa-51e087b54bbd', to_date('4/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3407, 'PRADAXA (Oral Pill)', '40228152', 'dabigatran etexilate', '5db7f199-8752-4d24-85f7-e34ca8f4d02e', to_date('4/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3408, 'Pralidoxime (Injectable)', '1727468', 'pralidoxime', '2741d8fd-51c2-46be-880b-99f2b20a6137', to_date('12/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3409, 'PRAMEGEL REFORMULATED APR 2012 (Topical)', '901656', 'Menthol', '848cfd76-aa0a-427b-959f-66d2cf5f9a34', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3410, 'Pramipexole (Oral Pill)', '720810', 'Pramipexole', '04bf2b80-5371-4641-bbf5-e19587c0e9cf', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3411, 'PRAMOSONE (Topical)', '975125', 'Hydrocortisone', 'f55fbf9a-cfab-4612-ba40-140e1339ca00', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3412, 'Pramoxine (Rectal)', '927478', 'pramoxine', '0494f952-de65-49d8-a8a6-5ee5abd53619', to_date('6/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3413, 'Pramoxine (Soap)', '927478', 'pramoxine', 'c0cd4ef5-860f-4035-9f91-fe4f78c33ae2', to_date('6/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3414, 'Pramoxine (Topical)', '927478', 'pramoxine', 'cb1d2724-dfaa-4c70-8222-124f9db14488', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3415, 'Pramoxine/Zinc Acetate (Topical)', '927478', 'pramoxine', '95a66433-6a68-4f3c-9aaa-4d27443aa7e5', to_date('6/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3416, 'Pramoxine/Zinc Oxide (Rectal)', '927478', 'pramoxine', '0d5ba4f1-1178-490d-8524-143d0aa2f0ef', to_date('3/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3417, 'PRANDIMET (Oral Pill)', '1503297', 'Metformin', '5be33711-b77d-4a01-87c8-3b2618c16e8f', to_date('5/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3418, 'PRANDIN (Oral Pill)', '1516766', 'repaglinide', 'e2a07020-a596-4282-bb7c-c9ebe6edcd61', to_date('5/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3419, 'PRASCION (Soap)', '1036252', 'Sulfacetamide', 'c3aeca7e-4b7d-431c-a0c9-f7f5b05ad5a8', to_date('8/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3420, 'PRASCION (Topical)', '1036252', 'Sulfacetamide', '49052371-e1d6-4665-b82e-442bdf4b177d', to_date('12/27/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3421, 'Prasugrel (Oral Pill)', '40163718', 'prasugrel', 'cb684ad9-0b72-406f-8a07-a419254ccd36', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3422, 'PRAVACHOL (Oral Pill)', '1551860', 'Pravastatin', '897ad8b7-921d-eb02-a61c-3419e662a2da', to_date('10/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3423, 'Pravastatin (Oral Pill)', '1551860', 'Pravastatin', '88295e57-9167-48a0-b52f-6ec9cef61109', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3424, 'PRAX (Topical)', '927478', 'pramoxine', '35ca8ff5-79da-4e7c-be71-91d7b8a6d977', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3425, 'Praziquantel (Oral Pill)', '1750461', 'Praziquantel', '34ce1cdd-648e-4f1e-8512-bf3d4cc22eb9', to_date('7/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3426, 'Prazosin (Oral Pill)', '1350489', 'Prazosin', '14a764d2-6142-443e-9598-414f11cbb627', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3427, 'PRECOSE (Oral Pill)', '1529331', 'Acarbose', 'e2158832-ad0b-4b9c-bbf0-1608a177bf85', to_date('3/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3428, 'PRED FORTE (Ophthalmic)', '1550557', 'prednisolone', '00a5aa88-e361-4ea7-8922-530c738b726e', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3429, 'PRED MILD (Ophthalmic)', '1550557', 'prednisolone', '90fba723-51b1-4404-a30b-816f35001d91', to_date('5/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3430, 'Prednicarbate (Topical)', '928110', 'prednicarbate', 'ccc7985a-da29-475f-8a53-0f76ba20b86d', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3431, 'prednisoLONE (Ophthalmic)', '1550557', 'prednisolone', 'dbcab023-8a71-4c66-ac6b-b98b20a493f9', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3432, 'prednisoLONE (Oral Disintegrating)', '1550557', 'prednisolone', '1e379543-c4cf-4e72-953b-db15b7f0c2a1', to_date('12/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3433, 'prednisoLONE (Oral Liquid)', '1550557', 'prednisolone', '9f4b181e-2675-40c6-a3d7-a8fe671230c1', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3434, 'prednisoLONE (Oral Pill)', '1550557', 'prednisolone', 'b8fadaec-9985-4f17-9b2f-b2f6a28cae1c', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3435, 'PrednisoLONE/Sulfacetamide (Ophthalmic)', '1550557', 'prednisolone', 'e5a2f3a5-2b9d-4d02-ad5c-e6a890569363', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3436, 'predniSONE (Oral Pill)', '1551099', 'Prednisone', 'd3abe47f-8ad5-4752-b772-97b56cca19f2', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3437, 'Pregabalin (Oral Pill)', '734354', 'pregabalin', '59cf1b6b-eaae-4bd8-abca-8e68aeb30ee6', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3438, 'PREGNYL (Injectable)', '1563600', 'Chorionic Gonadotropin', 'dc604794-6dd6-43a7-85fa-2f04ed325c33', to_date('4/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3439, 'PREMARIN (Oral Pill)', '1549080', '"Estrogens, Conjugated (USP)"', '701acf2c-fffe-451a-9b94-82d825e5a47c', to_date('5/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3440, 'PREMSYN PMS (Oral Pill)', '1125315', 'Acetaminophen', 'ce280f7d-ca22-473d-b276-de44933e7957', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3441, 'PREPARATION H COOLING GEL (Rectal)', '1135766', 'Phenylephrine', 'cebee3f7-8591-e4f7-e66a-e43b4ba3aaf4', to_date('4/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3442, 'PREPARATION H MEDICATED WIPES (Topical)', '959196', 'Witch Hazel', '1953ec64-20ce-488b-8f14-44e15cc9e720', to_date('3/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3443, 'PREPARATION H REFORMULATED JUN 2013 (Rectal)', '908523', 'Mineral Oil', 'ce789c2a-1d38-4c5f-923e-9d4dab751c01', to_date('7/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3444, 'PREVACID (Oral Disintegrating)', '929887', 'lansoprazole', '7140f8d9-e478-4f69-a4eb-3fd4c9414576', to_date('7/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3445, 'PREVACID (Oral Pill)', '929887', 'lansoprazole', '2f4c571b-a27e-40ef-b0cd-e6e44ac9a15e', to_date('1/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3446, 'PREVIDENT (Toothpaste)', '19069022', 'Sodium Fluoride', '5b67ae9e-129a-43ab-8eca-d4a38fbbfcf6', to_date('9/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3447, 'PREVIDENT 5000 SENSITIVE (Toothpaste)', '927322', 'potassium nitrate', 'b028cfff-4946-49e8-b8bb-197ab99d0d35', to_date('7/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3448, 'PREVIDENT DENTAL RINSE (Mouthwash)', '19069022', 'Sodium Fluoride', '714c38d1-e018-47a2-9160-6c79ee8c2dc5', to_date('9/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3449, 'PREZISTA (Oral Pill)', '1756831', 'darunavir', '69b6f72d-fe6b-4347-8801-99ece7e2a29b', to_date('5/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3450, 'PriLOSEC (Oral Pill)', '923645', 'Omeprazole', 'd970b074-957a-4036-92d3-1712386f3858', to_date('2/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3451, 'PRIMACOR (Injectable)', '1368671', 'Milrinone', '2a0a2d3a-1900-4c73-89c5-c4bde1b61553', to_date('5/22/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3452, 'Primaquine (Oral Pill)', '1751310', 'Primaquine', '222f3d0a-7649-44ad-99b2-b2dc8c298e7b', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3453, 'PRIMATENE (Oral Pill)', '1143374', 'Ephedrine', '9005482c-25ae-d365-33d1-29269532c74d', to_date('2/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3454, 'PRIMAXIN (Injectable)', '1797258', 'Cilastatin', '7aa0ce90-156c-4583-ae6d-9ed3595960c8', to_date('4/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3455, 'Primidone (Oral Pill)', '751347', 'Primidone', 'a90d5ba6-4170-0b97-5ae3-fc707c9e4f1b', to_date('8/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3456, 'PRIMLEV (Oral Pill)', '1125315', 'Acetaminophen', '94679f29-d63a-41a5-bdda-3aa3fc2db531', to_date('3/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3457, 'PRIMSOL (Oral Liquid)', '1705674', 'Trimethoprim', 'a06ea7d8-a884-4b62-a87f-c36d824f2aa4', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3458, 'Privet pollen extract (Injectable)', '40162001', 'privet pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3459, 'PRIVINE (Nasal)', '914533', 'Naphazoline', 'ec2bb7d7-d014-46ed-a836-453e921da4c5', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3460, 'PROAMATINE (Oral Pill)', '1308368', 'Midodrine', '171543e7-a592-4676-88ef-d68f14701d13', to_date('12/8/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3461, 'Probenecid (Oral Pill)', '1151422', 'Probenecid', '8459857e-1a52-45de-81e6-e06ce18508bb', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3462, 'Procainamide (Injectable)', '1351461', 'Procainamide', 'dfd657ec-aaf5-4f9e-85d0-0a2a081ceaf7', to_date('6/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3463, 'Procaine (Injectable)', '751698', 'Procaine', '999625d5-3a6b-4753-059a-4f19d04c85a5', to_date('9/14/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3464, 'PROCARDIA (Oral Pill)', '1318853', 'Nifedipine', 'e04aa152-b08d-47f7-b976-f8bee4c386db', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3465, 'PROCENTRA (Oral Liquid)', '719311', 'Dextroamphetamine', '1548cce2-fb6b-4f17-8a3b-868933f6c9d6', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3466, 'PROCHIEVE (Vaginal)', '1552310', 'Progesterone', '9f8dc923-65d7-42ff-b718-97e7a7e87822', to_date('12/14/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3467, 'Prochlorperazine (Injectable)', '752061', 'Prochlorperazine', '328bcba6-a2f8-4216-8f6f-c40959fe8779', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3468, 'Prochlorperazine (Oral Pill)', '752061', 'Prochlorperazine', '718c6fee-77d5-4ba1-8a1d-f2ac059298b3', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3469, 'Prochlorperazine (Rectal)', '752061', 'Prochlorperazine', '9bdba30b-53b4-427a-af74-7a39b52130b2', to_date('8/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3470, 'PROCOMYCIN (Topical)', '915175', 'Bacitracin', 'a08ffd2b-6c78-4a1a-9ca4-08a72900119d', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3471, 'PROCORT (Rectal)', '975125', 'Hydrocortisone', '9e899b72-a16e-4b55-93b5-ab5baec37d50', to_date('4/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3472, 'PROCRIT (Injectable)', '1301125', 'Epoetin Alfa', '9bbe9a5b-ad1d-41a4-9699-ff6dc776bce1', to_date('1/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3473, 'PROCTO-PAK (Rectal)', '975125', 'Hydrocortisone', 'a1148e9e-061c-4070-8059-68ffe3d3b20a', to_date('6/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3474, 'PROCTOCORT (Rectal)', '975125', 'Hydrocortisone', 'a2e1222a-ab91-4382-a210-7dfdd6de1407', to_date('2/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3475, 'PROCTOFOAM-HC (Rectal)', '975125', 'Hydrocortisone', '3831e931-ec0a-11e3-ac10-0800200c9a66', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3476, 'PROCTOSOL (Topical)', '975125', 'Hydrocortisone', '565284e7-4994-486b-8267-18bd166655ac', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3477, 'PROCTOZONE HC (Topical)', '975125', 'Hydrocortisone', 'fcd4747b-3c54-4b2f-a6bc-eafa0cf7016e', to_date('6/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3478, 'PROCYSBI (Oral Pill)', '910888', 'Cysteamine', 'b7b6e290-5168-46dc-9e7f-5995420ec1c1', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3479, 'PRODERM (Topical)', '950933', 'Castor Oil', '6bf98ba3-d9f6-4872-8220-a1b403226223', to_date('10/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3480, 'PRODRIN (Oral Pill)', '1125315', 'Acetaminophen', '1d157217-d307-423c-8f50-965b23881330', to_date('8/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3481, 'PROFENAL (Ophthalmic)', '1036636', 'Suprofen', '8de2c303-5d99-46b6-ad6d-a4caadea3604', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3482, 'Progesterone (Injectable)', '1552310', 'Progesterone', '83cfc12e-75d1-4284-bcc3-beadcbd27171', to_date('1/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3483, 'Progesterone (Oral Pill)', '1552310', 'Progesterone', '6e8d8c78-001b-00fb-6a03-3b4489198d25', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3484, 'Progesterone (Vaginal)', '1552310', 'Progesterone', '9f8dc923-65d7-42ff-b718-97e7a7e87822', to_date('12/14/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3485, 'PROGLYCEM (Oral Liquid)', '1523280', 'Diazoxide', 'b16c7832-2fd9-49af-b923-1dc0d91fd6e2', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3486, 'PROGRAF (Oral Pill)', '950637', 'Tacrolimus', '1e56c550-1c2b-4177-8e49-26303e9e335f', to_date('5/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3487, 'PROLENSA (Ophthalmic)', '1139179', 'bromfenac', '4e072537-f73c-4a96-a65f-e2805ce112d8', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3488, 'Promethazine (Injectable)', '1153013', 'Promethazine', 'ed16846a-b054-4625-b4e4-4a951e95c92e', to_date('2/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3489, 'Promethazine (Oral Liquid)', '1153013', 'Promethazine', 'e5be207b-122b-490f-a0d6-841132e45180', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3490, 'Promethazine (Oral Pill)', '1153013', 'Promethazine', '0af133fc-a27d-4099-908a-0bdf7c64f22b', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3491, 'Promethazine (Rectal)', '1153013', 'Promethazine', '9aa7b3f2-4429-4a61-ad8e-876afb14cc45', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3492, 'PROMETHEGAN (Rectal)', '1153013', 'Promethazine', 'bf9d28d7-0ce1-48bb-85e8-48676e35069c', to_date('8/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3493, 'PROMETRIUM (Oral Pill)', '1552310', 'Progesterone', 'cf73c385-5173-4b54-af23-069581c5d560', to_date('9/1/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3494, 'PROMOLAXIN (Oral Pill)', '941258', 'Docusate', '9ff570c5-1d0e-47bb-aea2-347c7b24ca68', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3495, 'PRONTO PLUS (Shampoo)', '946340', 'Piperonyl Butoxide', '3cdec6f3-4da6-467f-96c3-c8941ff46b56', to_date('2/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3496, 'Propafenone (Oral Pill)', '1353256', 'Propafenone', 'a7c8f090-c48c-44f7-9973-2cf4b491e35c', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3497, 'Proparacaine (Ophthalmic)', '929504', 'proparacaine', '37cde651-2549-43f3-97b9-cdc442a0aa7a', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3498, 'PROPECIA (Oral Pill)', '996416', 'Finasteride', '9e7329eb-39f1-4f84-a0bb-91daffaba1c3', to_date('6/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3499, 'PROPEL (Implant)', '905233', 'Mometasone', '6befbf16-3f60-4ce8-94ec-5ce6a2b7f4e1', to_date('1/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3500, 'Propofol (Injectable)', '753626', 'Propofol', 'e3105799-a4b6-f3f4-e6e2-b2b29bbdb538', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3501, 'Propoxyphene (Oral Pill)', '1153664', 'Propoxyphene', 'c6c48eee-240b-4425-8691-35462523652e', to_date('10/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3502, 'Propranolol (Injectable)', '1353766', 'Propranolol', '87688f92-a620-437d-904a-25c19d4270c8', to_date('4/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3503, 'Propranolol (Oral Liquid)', '1353766', 'Propranolol', 'b6f9dd2a-632b-87eb-70f0-b2064d7ed48a', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3504, 'Propranolol (Oral Pill)', '1353766', 'Propranolol', '6112d957-e39e-470d-9f66-0bce4b3455ee', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3505, 'Propylhexedrine (Nasal)', '954036', 'propylhexedrine', '03a8ef3c-a808-6208-e054-00144ff8d46c', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3506, 'Propylthiouracil (Oral Pill)', '1554072', 'Propylthiouracil', 'ff603c99-6620-4945-acdc-c9150b6f77d4', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3507, 'PROSTIN E2 (Vaginal)', '1329415', 'Dinoprostone', 'fae013fc-e199-43f3-86ef-66d34017c534', to_date('10/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3508, 'PROSTIN VR (Injectable)', '1381504', 'Alprostadil', 'dea460fa-d05e-4191-8461-f185a711ad89', to_date('8/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3509, 'Protamine Sulfate (USP) (Injectable)', '19054242', 'Protamine Sulfate (USP)', '8df0a819-9e1a-44ce-97a6-3ea82c867d44', to_date('7/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3510, 'Protein C (Injectable)', '42801108', 'Protein C', '926914a9-78b2-40ea-b37d-2a55c09bf275', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3511, 'PROTONIX (Injectable)', '948078', 'pantoprazole', '3cde88e6-28f2-4cbe-8c3f-770b05cc0e1b', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3512, 'PROTONIX (Oral Granules)', '948078', 'pantoprazole', '189b7b6a-9717-44eb-b87b-fd3e985b2268', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3513, 'PROTONIX (Oral Pill)', '948078', 'pantoprazole', 'e6238767-90da-4176-8ac6-d71c2025dcb5', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3514, 'PROTOPAM (Injectable)', '1727468', 'pralidoxime', '2741d8fd-51c2-46be-880b-99f2b20a6137', to_date('12/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3515, 'Protriptyline (Oral Pill)', '754270', 'Protriptyline', '700abc58-9362-4ef5-9d7a-dd3c4d364d0a', to_date('7/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3516, 'PROVENGE (Injectable)', '40224095', 'sipuleucel-T', '8309b497-5d4e-4408-ac0c-2452c11c8a35', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3517, 'PROVIGIL (Oral Pill)', '710650', 'modafinil', '8b79d52e-e6e5-4aaf-8835-242c72d6ee38', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3518, 'PROzac (Oral Pill)', '755695', 'Fluoxetine', '4b8fcce1-abfc-4631-9975-9d66e178dab6', to_date('2/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3519, 'PRUDOXIN (Topical)', '738156', 'Doxepin', '64311378-2da2-4835-a222-5df5204c59c2', to_date('2/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3520, 'Prussian blue (Oral Pill)', '19095769', 'Prussian blue', 'baa68c79-5f3d-468a-a510-58b9e978cd50', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3521, 'PSEUDODINE C (Oral Liquid)', '1201620', 'Codeine', 'dd62a5eb-dd5a-4329-8696-07acb555af10', to_date('3/20/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3522, 'Pseudoephedrine (Oral Liquid)', '1154332', 'Pseudoephedrine', '0ae49d7e-ceec-4ad6-a0b8-cb20237e2b70', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3523, 'Pseudoephedrine (Oral Pill)', '1154332', 'Pseudoephedrine', '5377d4dd-aad1-4820-bc05-e7dbb152c0f5', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3524, 'Pseudoephedrine/Triprolidine (Oral Liquid)', '1154332', 'Pseudoephedrine', 'b7c62fdd-5709-4023-9c30-6970de4ad2b3', to_date('12/21/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3525, 'Pseudoephedrine/Triprolidine (Oral Pill)', '1154332', 'Pseudoephedrine', '7f1ff0eb-78e9-465d-9ec9-a900fe8bd9c4', to_date('4/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3526, 'PSORCON (Topical)', '960988', 'Diflorasone', '29c78a72-3dde-493f-b6a2-f286bec1f09e', to_date('8/6/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3527, 'PSORIASIN (Topical)', '1000995', 'Coal Tar', '33b9c589-5953-4c9f-bdd0-d827c3446240', to_date('6/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3528, 'PSORIASIN WASH (Soap)', '964407', 'Salicylic Acid', '3153a8b5-c027-4254-a61b-0c376a38d0f6', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3529, 'Psyllium (Oral Liquid)', '957797', 'Psyllium', 'bb6f5b6a-5111-4e50-8897-74e8ab859cfd', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3530, 'Psyllium (Oral Pill)', '957797', 'Psyllium', 'ea99f870-428a-4d36-8d2d-0eca0240fb54', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3531, '"Psyllium/Sennosides, USP (Oral Pill)"', '957797', 'Psyllium', '3b5e5397-fe64-48c5-8607-47c0a0900953', to_date('12/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3532, 'Pullularia extract (Injectable)', '40161386', 'Pullularia extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3533, 'PULMICORT (Inhalant)', '939259', 'Budesonide', '2e0fa140-85a0-42db-ba15-a068120076b4', to_date('4/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3534, 'PULMOZYME (Inhalant)', '1125443', 'Dornase Alfa', 'd8c78a7e-ff99-48f3-8952-643ec2ea0f86', to_date('1/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3535, 'PURALUBE (Ophthalmic)', '908523', 'Mineral Oil', '6a4a2053-f947-4ce3-a885-a1c1465c8b0b', to_date('8/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3536, 'Purified Protein Derivative of Tuberculin (Injectable)', '19058274', 'Purified Protein Derivative of Tuberculin', '96d91ba3-9dfe-4420-a835-57647ea30b40', to_date('5/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3537, 'PYLERA (Oral Pill)', '958134', 'bismuth subcitrate', '7fe5d2db-c59d-4e15-acd7-f9df8eca45aa', to_date('3/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3538, 'Pyrantel (Chewable)', '1759270', 'Pyrantel', '8c37db7c-a73e-4d99-a8a9-d55da1a74a3e', to_date('12/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3539, 'Pyrantel (Oral Liquid)', '1759270', 'Pyrantel', '82a9fe66-7646-42cf-9be9-b9e181076e02', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3540, 'Pyrazinamide (Oral Pill)', '1759455', 'Pyrazinamide', 'dd5cde5a-4b8b-4b16-92f4-a4b77f5b4ba3', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3541, 'PYRIDIUM (Oral Pill)', '933724', 'Phenazopyridine', 'ae0f0808-51ed-43b9-86a3-b947c42da89f', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3542, 'Pyridostigmine (Oral Pill)', '759740', 'Pyridostigmine', '9448c360-0ce2-42fe-9f0c-50f2159e8483', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3543, 'Pyridostigmine XR (Oral Pill)', '759740', 'Pyridostigmine', '93454159-0c58-1980-34b9-4038a2260420', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3544, 'Pyridoxine (Oral Pill)', '19005046', 'pyridoxine', 'a524c0ff-4893-4df0-aaca-7f690b2bbb13', to_date('7/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3545, 'Pyrimethamine (Oral Pill)', '1760039', 'Pyrimethamine', '3e4d5027-7939-480f-ae19-82e764d9fa97', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3546, 'QLEARQUIL ALLERGY RELIEF (Oral Pill)', '1107830', 'Loratadine', '486e5b2b-0456-4794-b263-004102f0795a', to_date('4/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3547, 'QLEARQUIL DAYTIME SINUS & CONGESTION (Oral Pill)', '1125315', 'Acetaminophen', '119ee51b-6a7f-451b-bf69-ecb92c6a352b', to_date('10/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3548, 'QLEARQUIL NASAL DECONGESTANT (Nasal)', '925636', 'Oxymetazoline', '9a10ca38-ac96-47ab-ab21-0519c034b8a3', to_date('3/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3549, 'QUADRAMET (Injectable)', '1338558', 'SAMARIUM Sm153', '61e84808-0999-4923-910c-2a480d5f971a', to_date('12/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3550, 'QUALAQUIN (Oral Pill)', '1760616', 'Quinine', 'ce2ffee3-3048-43a0-ac45-ee32ce0c4c33', to_date('5/27/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3551, 'Quazepam (Oral Pill)', '731188', 'quazepam', '5d9472c0-e1df-4365-91c9-b54c7019fad3', to_date('3/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3552, 'QUELICIN (Injectable)', '836208', 'Succinylcholine', 'c06156ae-b889-4250-bc85-1435b2635829', to_date('6/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3553, 'QUESTRAN (Oral Liquid)', '19095309', 'Cholestyramine Resin', '362ddd91-a63f-4ec6-841a-75785dd208c8', to_date('1/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3554, 'QUEtiapine (Oral Pill)', '766814', 'quetiapine', '03325ca1-4f51-41a1-92f3-ff7f96e01cc8', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3555, 'Quinapril (Oral Pill)', '1331235', 'quinapril', 'a2de05b9-d1aa-4fbb-a9a3-6918cc306f78', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3556, 'quiNIDine (Injectable)', '1360421', 'Quinidine', '11d14362-8f69-4c30-b487-5d05f6462bd7', to_date('8/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3557, 'quiNIDine (Oral Pill)', '1360421', 'Quinidine', 'a90a03b0-ffbe-4cf6-90b5-bfb0412a1cb2', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3558, 'quiNIDine XR (Oral Pill)', '1360421', 'Quinidine', 'a08a0f0b-6cf5-4fa4-a861-0b054d6fddfc', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3559, 'quiNINE (Oral Pill)', '1760616', 'Quinine', '0b5bbefd-5b56-46f9-84f5-1456371577fd', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3560, 'QUIXIN (Ophthalmic)', '1742253', 'Levofloxacin', '09b3a912-97f9-45ae-a162-9f45c860dc22', to_date('9/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3561, 'R-GENE 10 (Injectable)', '19006410', 'Arginine', '6accf33f-9841-4327-8923-93c42020ef12', to_date('4/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3562, 'RABEprazole (Oral Pill)', '911735', 'rabeprazole', '5a1edab0-a602-4786-9ef5-40063f9efdb4', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3563, '"Rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated (Injectable)"', '544505', '"rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated"', 'ba8d4e72-f452-4859-ae6f-3644b4b0a78c', to_date('9/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3564, 'Racepinephrine (Inhalant)', '1300153', 'Racepinephrine', '5c6d98fe-3e86-4816-92f2-49d38a432e39', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3565, 'RADIOGARDASE (Oral Pill)', '19095769', 'Prussian blue', 'baa68c79-5f3d-468a-a510-58b9e978cd50', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3566, 'RADIUM CHLORIDE RA-223 (Injectable)', '43526934', 'RADIUM CHLORIDE RA-223', 'a398400e-bd31-41a9-9696-4f7c06569ede', to_date('5/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3567, 'RAGWITEK (Sublingual)', '40171301', 'short ragweed pollen extract', '986abfaf-67fc-47fb-8c86-d9f9cce6fa8b', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3568, 'Raloxifene (Oral Pill)', '1513103', 'Raloxifene', '7f4bd906-2af7-4f93-af23-6f13b0f5d868', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3569, 'Raltegravir (Oral Pill)', '1712889', 'raltegravir', 'e463b253-ad05-4e5c-8a3b-595d55c56ed7', to_date('4/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3570, 'Ramelteon (Oral Pill)', '781182', 'ramelteon', '7a51d289-2013-4d37-adf2-91ea49df7932', to_date('1/21/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3571, 'Ramipril (Oral Pill)', '1334456', 'Ramipril', '2dbd4a0a-09f6-4295-8852-613bd3a0fbfb', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3572, 'Ranibizumab (Injectable)', '19080982', 'ranibizumab', 'de4e66cc-ca05-4dc9-8262-e00e9b41c36d', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3573, 'Ranitidine (Injectable)', '961047', 'Ranitidine', '9268c1df-bcf3-4899-896d-044492802a33', to_date('8/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3574, 'Ranitidine (Oral Liquid)', '961047', 'Ranitidine', 'dd7a6355-0341-4bce-a942-2a8bba3fb669', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3575, 'Ranitidine (Oral Pill)', '961047', 'Ranitidine', 'b8be814d-24ff-4b46-9b50-187aa1b4aaa0', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3576, 'RAPAMUNE (Oral Pill)', '19034726', 'Sirolimus', '0f26220a-f4ab-4ceb-9a98-a13dbdeed81f', to_date('5/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3577, 'Rasagiline (Oral Pill)', '715710', 'rasagiline', 'eb558270-1b12-4704-9b09-39f668f30529', to_date('12/23/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3578, 'RASH RELIEF ANTIBACTERIAL (Topical)', '915175', 'Bacitracin', 'f439fb97-0722-42ee-bc90-67daf0497aa8', to_date('11/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3579, 'RASH RELIEF ANTIFUNGAL (Topical)', '916662', 'dimethicone', '4114c685-acd1-4c65-842b-1cb7840852dc', to_date('11/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3580, 'RASH RELIEF CLEAR (Topical)', '916662', 'dimethicone', '0b5753aa-b591-4d6e-8341-fcc9456299b6', to_date('11/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3581, 'RASH RELIEF WITH ZINC OXIDE (Topical)', '916662', 'dimethicone', '54d7250e-6aaa-4fc8-88b3-2fee58ebaf73', to_date('11/7/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3582, 'RAYOS (Oral Pill)', '1551099', 'Prednisone', '281ab967-7565-4bef-9c0c-a646589c671e', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3583, 'RAZADYNE (Oral Pill)', '757627', 'Galantamine', 'e62efb5a-d2cc-4e11-9e61-10e65ef3d897', to_date('2/24/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3584, 'REA LO (Topical)', '906914', 'Urea', '5fcff124-7709-4137-af94-539246e331f4', to_date('9/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3585, 'REA-LO (Topical)', '906914', 'Urea', 'bac5d4a7-2819-48f4-a0de-00d1c2d5ed31', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3586, 'RECOMBINATE (Injectable)', '1352213', 'Factor VIII', '2a569ec5-08d7-44ab-b649-384a496e173c', to_date('1/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3587, 'RECOTHROM (Topical)', '1300673', 'Thrombin', 'af304504-85af-87ba-edb6-9bf35985cba8', to_date('5/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3588, 'RECTICARE (Rectal)', '989878', 'Lidocaine', '49cb48cf-7a26-4d7a-887f-2e98261d269d', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3589, 'RECTIV (Rectal)', '1361711', 'Nitroglycerin', 'af05dde8-1c06-4cd5-bcd0-8e318874536a', to_date('10/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3590, 'Red mulberry pollen extract (Injectable)', '40161918', 'red mulberry pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3591, 'Red pine pollen extract (Injectable)', '40172530', 'red pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3592, 'Redberry juniper pollen extract (Injectable)', '40172534', 'redberry juniper pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3593, 'Redroot pigweed pollen extract (Injectable)', '40161926', 'redroot pigweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3594, 'Redtop grass pollen extract (Injectable)', '40161930', 'redtop grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3595, 'Redwood pollen extract (Injectable)', '40228820', 'redwood pollen extract', '3b904f52-6163-4095-a456-11b3018b227a', to_date('12/15/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3596, 'REFENESEN (Oral Pill)', '1163944', 'Guaifenesin', '8a172972-d5dd-4c0e-8359-b5fd9edc96d8', to_date('11/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3597, 'REFENESEN PE (Oral Pill)', '1163944', 'Guaifenesin', '5667fc64-88b5-4caa-87bb-f08808a1d35c', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3598, 'REFISSA (Topical)', '903643', 'Tretinoin', 'fda09c9d-efee-40dc-8030-065ceacd7a5c', to_date('5/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3599, 'REFRESH DROPS (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'cd467181-9d56-4b11-9826-15b5357d0689', to_date('12/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3600, 'REFRESH LACRI-LUBE (Ophthalmic)', '908523', 'Mineral Oil', 'd232a44b-516d-4cdf-a4e7-c3a9a50dc7af', to_date('6/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3601, 'REFRESH LIQUIGEL (Ophthalmic)', '949279', 'Carboxymethylcellulose', '4b8b2f6a-4b89-446c-9e5b-9b83c453a01d', to_date('4/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3602, 'REFRESH LUBRICANT (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '31bf1d6c-9719-4060-b6a3-409a2fe7b560', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3603, 'REFRESH OPTIVE SENSITIVE (Ophthalmic)', '949279', 'Carboxymethylcellulose', '7f8d88af-fd3b-4138-af61-f24c59ccebd7', to_date('7/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3604, 'REFRESH PM (Ophthalmic)', '908523', 'Mineral Oil', '24365d64-cd94-41cc-a7e1-033102d98114', to_date('8/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3605, 'REGENECARE (Topical)', '989878', 'Lidocaine', 'c3eec066-38e8-4617-b34d-2f72ffb7a324', to_date('6/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3606, 'REGIMEX (Oral Pill)', '719128', 'Benzphetamine', '1a5d7233-4453-42a5-8144-a4276db39660', to_date('3/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3607, 'REGITINE (Injectable)', '1335539', 'Phentolamine', '6db10859-2a3f-4782-ac33-94300463658f', to_date('10/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3608, 'REGLAN (Oral Pill)', '906780', 'Metoclopramide', '55f1ee88-a455-44ba-b51a-2fcefe8eda65', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3609, 'REGRANEX (Topical)', '912476', 'Becaplermin', 'fd2c7d21-7b07-4ab3-8983-816ab3223771', to_date('3/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3610, 'REGULOID (Oral Liquid)', '957797', 'Psyllium', 'f25f3b52-8ac4-4be5-8830-f0a50d19008b', to_date('7/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3611, 'RELAGESIC (Oral Pill)', '1125315', 'Acetaminophen', '8f1bb6e5-3de5-48b4-bf44-d4e881be5ab0', to_date('5/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3612, 'RELCOF C (Oral Liquid)', '1201620', 'Codeine', '357c9914-8d87-43d0-ba2f-516a0a455175', to_date('3/9/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3613, 'RELPAX (Oral Pill)', '1189697', 'eletriptan', '6bb510c8-2ae2-4159-b4c6-0aec5e64b4c9', to_date('3/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3614, 'REMBRANDT (Toothpaste)', '19069022', 'Sodium Fluoride', '11df694e-1594-4eb4-9318-05d6bab51335', to_date('8/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3615, 'REMEDY ANTIFUNGAL (Topical)', '907879', 'Miconazole', 'c31bb2b7-f84b-4c58-8da9-78f3d305419d', to_date('2/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3616, 'REMEDY ZINC SKIN PROTECTANT (Paste)', '19033354', 'Petrolatum', 'f830a0e4-dba5-4a5f-af35-3832ec70d4d3', to_date('4/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3617, 'REMERON (Oral Pill)', '725131', 'Mirtazapine', '8feda54f-a3fa-4108-bfc4-c15b0eab4396', to_date('2/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3618, 'REMEVEN (Topical)', '906914', 'Urea', 'f5e87f91-e355-4347-ae9b-f38b41802cf3', to_date('5/11/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3619, 'Remifentanil (Injectable)', '19016749', 'remifentanil', 'dbc63b6e-f8c5-4fd0-8ec3-4f5e19125313', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3620, 'RENACIDIN (Irrigation)', '950435', 'Citric Acid', 'bdb3cef8-79c4-4322-9a21-c13123abe0cc', to_date('3/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3621, 'RENAGEL (Oral Pill)', '952004', 'sevelamer', 'ee835dc1-36b7-4447-a5c6-5ed9e06a839d', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3622, 'RENESE-R (Oral Pill)', '948787', 'Polythiazide', 'b503fa5e-5726-426d-867c-e8fe59ed3ead', to_date('10/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3623, 'RENOVA (Topical)', '903643', 'Tretinoin', '9f0a0e8d-1051-48a4-80c5-1bd260dd9c36', to_date('8/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3624, 'RENVELA (Oral Pill)', '952004', 'sevelamer', '6178c669-a2e5-4a82-9ca2-7dfef56b63b9', to_date('9/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3625, 'Repaglinide (Oral Pill)', '1516766', 'repaglinide', '457c2638-86cd-4afc-b562-eea925e9d42a', to_date('6/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3626, 'REPREXAIN (Oral Pill)', '1174888', 'Hydrocodone', 'ae37a79e-ca8f-44d7-83a3-96cf2ebebedd', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3627, 'REQUIP (Oral Pill)', '713823', 'ropinirole', 'de0bb94f-4fd8-4f27-5ba6-6f392dd5160f', to_date('9/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3628, 'RESCON TABLETS (Oral Pill)', '1188114', 'dexchlorpheniramine', '9d08d801-6cca-4a1c-ab53-5979f16e3110', to_date('3/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3629, 'RESCON-GG (Oral Liquid)', '1163944', 'Guaifenesin', 'af378f6d-d506-47b0-8044-5e184ebc5d6a', to_date('2/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3630, 'RESCRIPTOR (Oral Pill)', '1747157', 'Delavirdine', '992306f0-c612-41dd-a4df-35d1fd360033', to_date('7/7/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3631, 'RESINOL (Topical)', '19033354', 'Petrolatum', '03f57a4a-f94b-4ba6-b709-41cfb6e16261', to_date('1/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3632, 'Resorcinol/Sulfur (Topical)', '935390', 'resorcinol', 'd30564d2-c27f-44ce-ac21-e24b45acac81', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3633, 'RESPAIRE (Oral Pill)', '1163944', 'Guaifenesin', 'bd8e9558-235a-42f6-81c3-f3c80b2b235d', to_date('11/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3634, 'RETAINE (Ophthalmic)', '949279', 'Carboxymethylcellulose', '6b40c38e-31f8-4aca-9456-04128e6c2e93', to_date('10/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3635, 'RETAINE HPMC (Ophthalmic)', '902251', 'hypromellose', 'ba8f8be3-4641-bc28-2ec0-2ff9f4f9be9f', to_date('6/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3636, 'Retapamulin (Topical)', '991003', 'retapamulin', '5da8f60f-c809-4161-a802-6fe823d532bb', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3637, 'RETAVASE (Injectable)', '19024191', 'Reteplase', 'e9ae6656-977c-4105-8528-bee664aab27a', to_date('1/6/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3638, 'Reteplase (Injectable)', '19024191', 'Reteplase', 'e9ae6656-977c-4105-8528-bee664aab27a', to_date('1/6/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3639, 'RETIN-A (Topical)', '903643', 'Tretinoin', '0ee4fccd-087f-4134-9b66-1d5186c116c0', to_date('5/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3640, 'REVATIO (Oral Pill)', '1316262', 'sildenafil', 'f757f066-8288-4d6c-8c5e-2471007c7966', to_date('8/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3641, 'REVONTO (Injectable)', '711714', 'Dantrolene', '0055d78a-9dc2-4267-8c9e-c3f2c98a66ff', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3642, 'REYATAZ (Oral Pill)', '1727223', 'Atazanavir', '025876b6-f031-43ea-967a-b1d95b4685a6', to_date('2/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3643, 'REZAMID (Topical)', '935390', 'resorcinol', 'd02ace0b-7244-45d4-987f-eb569303a426', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3644, 'REZIRA (Oral Liquid)', '1174888', 'Hydrocodone', '7b873615-d90e-41a1-acc6-60f0526eeead', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3645, 'RHEUMATREX (Oral Pill)', '1305058', 'Methotrexate', '2cb70aa1-f73a-41c8-9a7f-edbcf1a06efd', to_date('3/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3646, 'RI-MOX PLUS (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'a21a94c5-7981-4cf9-af23-fc397b7ded1c', to_date('4/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3647, 'RIASTAP (Injectable)', '19044986', 'fibrinogen concentrate (human)', '903dc8d0-39da-462c-9dac-004e0c7a26cc', to_date('2/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3648, 'RIAX (Topical)', '918172', 'Benzoyl Peroxide', 'a585dbbe-a316-4183-bb6e-24a1b52966c3', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3649, 'Ribavirin (Oral Pill)', '1762711', 'Ribavirin', '3b8b0c65-e466-4662-9e85-5a253d31ebe8', to_date('6/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3650, 'RIDAURA (Oral Pill)', '1114771', 'Auranofin', '05c34ddf-a0f7-4267-83f5-d02be3defc37', to_date('12/15/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3651, 'Rifabutin (Oral Pill)', '1777417', 'Rifabutin', '4be9cc3f-0016-4426-a700-574b45ce245b', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3652, 'RIFADIN (Injectable)', '1763204', 'Rifampin', '036ab68e-5085-4edc-bd83-784b43d64eab', to_date('7/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3653, 'RIFADIN (Oral Pill)', '1763204', 'Rifampin', '036ab68e-5085-4edc-bd83-784b43d64eab', to_date('7/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3654, 'RIFAMATE (Oral Pill)', '1782521', 'isoniazid', '3cc36609-8e2d-4caa-a8e0-c0367e3e52df', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3655, 'Rifampin (Injectable)', '1763204', 'Rifampin', '6f03bb2a-1527-42c7-ab43-f4b4f789e69d', to_date('9/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3656, 'Rifampin (Oral Pill)', '1763204', 'Rifampin', '26a2dbca-5090-4f6c-99ed-e11a70bb5af0', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3657, 'RIFATER (Oral Pill)', '1782521', 'isoniazid', '429a2f62-9fe6-4299-b314-92a9d22b1381', to_date('4/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3658, 'Rifaximin (Oral Pill)', '1735947', 'rifaximin', '523f0320-cc73-445a-a48d-7a181c182307', to_date('8/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3659, 'Rilonacept (Injectable)', '19023450', 'rilonacept', '282f4099-e848-432a-bac1-e041c192a5ba', to_date('3/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3660, 'RILUTEK (Oral Pill)', '735951', 'Riluzole', 'e49d207d-8e32-4183-94ba-cd264f124090', to_date('1/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3661, 'Riluzole (Oral Pill)', '735951', 'Riluzole', '4c851be4-f0d0-4b24-baf9-427ddfc6f7b0', to_date('5/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3662, 'Rimantadine (Oral Liquid)', '1763339', 'Rimantadine', '9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', to_date('7/19/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3663, 'Rimantadine (Oral Pill)', '1763339', 'Rimantadine', '49f7d69a-820b-4c75-a31d-b2104c019c12', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3664, 'RIMSO-50 (Irrigation)', '928980', 'Dimethyl Sulfoxide', '58b25d79-78f2-4953-b0c6-61658dc4ef0d', to_date('6/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3665, 'Risedronate (Oral Pill)', '1516800', 'Risedronate', 'ef2dbc86-b4f5-4990-a83f-0b121cfe2ec1', to_date('6/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3666, 'RisperDAL (Oral Pill)', '735979', 'Risperidone', 'ccb70f90-9ef1-4eac-925f-0178cacdac6b', to_date('5/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3667, 'risperiDONE (Oral Disintegrating)', '735979', 'Risperidone', '7073b706-1946-4ff2-8788-fb9452a59cae', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3668, 'risperiDONE (Oral Liquid)', '735979', 'Risperidone', '5ceafd11-de77-4a91-9873-3ce0ae688397', to_date('1/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3669, 'risperiDONE (Oral Pill)', '735979', 'Risperidone', '24a5d048-b351-4df5-89c8-f68147daba88', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3670, 'RITALIN (Oral Pill)', '705944', 'Methylphenidate', 'cd83fc91-47a3-4be4-9727-caf9ec0371e8', to_date('1/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3671, 'Ritonavir (Oral Pill)', '1748921', 'Ritonavir', '624120b3-0a32-42a7-abfc-324e6b6c93df', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3672, 'Rivaroxaban (Oral Pill)', '40241331', 'Rivaroxaban', '10db92f9-2300-4a80-836b-673e1ae91610', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3673, 'Rivastigmine (Oral Pill)', '733523', 'rivastigmine', '36b4f524-90e6-415c-8c0c-8983da2c7fd4', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3674, 'Rizatriptan (Oral Disintegrating)', '1154077', 'rizatriptan', '57ed2505-28f1-4292-b3c3-a49bf0f7c683', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3675, 'Rizatriptan (Oral Pill)', '1154077', 'rizatriptan', '2978b28c-91e1-4b17-9670-7b03717c1711', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3676, 'ROBAFEN (Oral Liquid)', '1163944', 'Guaifenesin', 'a925e169-a63d-4614-925e-e556daef9ec5', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3677, 'ROBAFEN AC (Oral Liquid)', '1201620', 'Codeine', 'e4bf6ada-e8b4-49e1-98aa-0fde1d0a7e47', to_date('4/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3678, 'ROBAFEN COUGH (Oral Pill)', '1119510', 'Dextromethorphan', '9b6295c7-377b-4392-83b1-13018b0bc295', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3679, 'ROBAFEN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'c1c85b72-0883-4409-ba9c-d9f8d4f63825', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3680, 'ROBAXIN (Injectable)', '704943', 'Methocarbamol', '8f91e243-7395-4ec9-adf5-37520983daf2', to_date('6/26/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3681, 'ROBAXIN (Oral Pill)', '704943', 'Methocarbamol', '5666ece8-9a10-4dcc-a7dc-3cd29df10e28', to_date('5/15/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3682, 'ROBINUL (Injectable)', '963353', 'Glycopyrrolate', '3adddbd4-0b17-4312-83a2-a8420caf045e', to_date('3/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3683, 'ROBINUL (Oral Pill)', '963353', 'Glycopyrrolate', 'bd65ee5e-2000-423c-b0a6-72eb213455c4', to_date('9/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3684, 'ROBITUSSIN CHEST CONGESTION (Oral Liquid)', '1163944', 'Guaifenesin', '259c8b69-c625-4146-b888-34ef43b8385f', to_date('3/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3685, 'ROBITUSSIN COUGH GELS (Oral Pill)', '1119510', 'Dextromethorphan', 'a19d233a-bc41-4603-dcbc-e15088045c2d', to_date('6/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3686, 'ROBITUSSIN NIGHTTIME COUGH DM (Oral Liquid)', '1119510', 'Dextromethorphan', '598ea332-9cf3-403f-9fdc-991cbc62d744', to_date('3/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3687, 'ROBITUSSIN PEAK COLD NASAL (Oral Pill)', '1125315', 'Acetaminophen', 'fb7e074d-4c4f-892e-f34e-13b9803fc436', to_date('12/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3688, 'ROBITUSSIN PEDIATRIC COUGH & COLD LA (Oral Liquid)', '1192710', 'Chlorpheniramine', 'becb4025-b63e-f2ea-9d11-d51fdf4e5c13', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3689, 'ROBITUSSIN PEDIATRIC COUGH SUPPRESSANT (Oral Liquid)', '1119510', 'Dextromethorphan', '75bc7827-4439-e6a8-a65c-7154d5592e58', to_date('10/2/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3690, 'ROCALTROL (Oral Liquid)', '19035631', 'Calcitriol', 'd1013494-bf62-4e68-9f0c-e6571137f20f', to_date('10/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3691, 'ROCALTROL (Oral Pill)', '19035631', 'Calcitriol', 'd1013494-bf62-4e68-9f0c-e6571137f20f', to_date('10/13/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3692, 'Rocuronium (Injectable)', '19003953', 'Rocuronium', '6ec8c417-6613-45e0-bc86-293a8b1ee83f', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3693, 'Roflumilast (Oral Pill)', '40236897', 'Roflumilast', 'c9a1d0a8-581f-4f91-a2b8-f419192d0ebf', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3694, 'ROGAINE (Topical)', '1309068', 'Minoxidil', '88f17a5a-a8e3-488a-8a96-8bd6f150c043', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3695, 'ROLAIDS REFORMULATED AUG 2006 (Chewable)', '19035704', 'Calcium Carbonate', '50aa27e4-00c9-477a-88c0-a10de1fa3f75', to_date('6/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3696, 'ROMAZICON (Injectable)', '19055153', 'Flumazenil', '69049fa6-7dc4-4ae7-99f4-06839af06498', to_date('9/13/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3697, 'romiDEPsin (Injectable)', '40168385', 'romidepsin', '6005c345-ccf9-4fff-8660-3fd73485b0d9', to_date('1/4/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3698, 'rOPINIRole (Oral Pill)', '713823', 'ropinirole', 'de0bb94f-4fd8-4f27-5ba6-6f392dd5160f', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3699, 'Ropivacaine (Injectable)', '1136487', 'ropivacaine', '05b3b09e-e54c-4933-8913-5279d04b521d', to_date('9/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3700, 'ROSADAN (Topical)', '1707164', 'Metronidazole', '99eaa138-0cfa-45e1-abbf-a88271707979', to_date('4/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3701, 'Rosiglitazone (Oral Pill)', '1547504', 'rosiglitazone', 'dd8d7ec8-79b0-4152-8789-d247c77232ce', to_date('6/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3702, 'Rosuvastatin (Oral Pill)', '1510813', 'rosuvastatin', '2c1a3c18-fa77-401b-8784-8e18b0d862f1', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3703, 'Rough cocklebur pollen extract (Injectable)', '40222500', 'rough cocklebur pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3704, 'ROWASA (Rectal)', '968426', 'mesalamine', 'a666d21d-da21-498d-aea2-055326cafd70', to_date('12/4/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3705, 'ROXICODONE (Oral Pill)', '1124957', 'Oxycodone', '5a8157d3-ba20-4abf-b0d4-6ad141b31d63', to_date('1/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3706, 'ROZEREM (Oral Pill)', '781182', 'ramelteon', '7a51d289-2013-4d37-adf2-91ea49df7932', to_date('1/21/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3707, 'RU HIST D (Oral Pill)', '1135766', 'Phenylephrine', 'ae3f15f0-d7ac-4be7-93c2-67d2ed82f4dc', to_date('2/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3708, 'RYANODEX (Injectable)', '711714', 'Dantrolene', '8f7b3ac0-604d-4c78-b545-5e0f8ea3d698', to_date('8/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3709, 'RYMED-D (Oral Pill)', '1188114', 'dexchlorpheniramine', 'c1d6e914-74cc-4cdf-9587-7eaaa4a386e5', to_date('4/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3710, 'RYNEZE (Oral Liquid)', '1192710', 'Chlorpheniramine', '9aca3d25-d042-479b-a00e-63be5b5073fe', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3711, 'Sacrosidase (Oral Liquid)', '951980', 'Sacrosidase', 'd613bb7f-c3f4-462e-81a2-da2347cc4b6b', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3712, 'SAFETUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'ac9f25a7-03cc-461b-af3e-8c16b7146a22', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3713, 'SAFETUSSIN PM (Oral Liquid)', '1119510', 'Dextromethorphan', '0f7e2c22-0c59-4027-ad61-6bdd048a605c', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3714, 'SALACYN (Topical)', '964407', 'Salicylic Acid', 'ac10b92d-2103-41cd-a819-440d35818532', to_date('12/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3715, 'SALAGEN (Oral Pill)', '945286', 'Pilocarpine', 'fb4810ec-d26f-429d-b87c-5898a7870169', to_date('5/11/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3716, 'SALEX (Shampoo)', '964407', 'Salicylic Acid', 'bd9eca8a-87df-46c8-b731-9d8211296e0c', to_date('7/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3717, 'SALEX (Topical)', '964407', 'Salicylic Acid', 'bd9eca8a-87df-46c8-b731-9d8211296e0c', to_date('7/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3718, 'Salicylic Acid (Paste)', '964407', 'Salicylic Acid', '6d3298e8-f623-4771-8497-fb43b5434923', to_date('5/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3719, 'Salicylic Acid (Shampoo)', '964407', 'Salicylic Acid', 'a6b3a6ef-a285-4d77-b4c6-3372a3192ec3', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3720, 'Salicylic Acid (Soap)', '964407', 'Salicylic Acid', '72f2fd8e-4d6c-4944-83a4-5f07f7726598', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3721, 'Salicylic Acid (Topical)', '964407', 'Salicylic Acid', 'b33d61f2-386b-4a8d-a4c9-8e1373eddd53', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3722, 'Salicylic Acid (Transdermal)', '964407', 'Salicylic Acid', 'fa2e95b5-fe90-4406-b981-05bca62fd25c', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3723, 'Salicylic Acid/Sulfur (Shampoo)', '964407', 'Salicylic Acid', '7afc2219-712b-4a0c-b8a9-725f41cbf343', to_date('12/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3724, 'Salmon calcitonin (Injectable)', '1537655', 'salmon calcitonin', '2a27340f-26e7-4003-b817-60de6696088b', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3725, 'Salmon calcitonin (Nasal)', '1537655', 'salmon calcitonin', 'a6eaedb3-5c96-4859-be43-a48c9c818bc7', to_date('9/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3726, 'SALONPAS (Transdermal)', '939881', 'Capsaicin', 'ef5373aa-9857-4d01-95af-2d7716e54ae4', to_date('12/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3727, 'SALONPAS GEL-PATCH (Transdermal)', '939881', 'Capsaicin', 'ee0ec612-3abd-4365-bfd4-9fa69abf0186', to_date('12/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3728, 'SALONPAS MASSAGE FOAM (Topical)', '901656', 'Menthol', 'bf478e06-408c-4958-b98f-68570b14a2de', to_date('5/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3729, 'SALONPAS PAIN RELIEF PATCH (Transdermal)', '901656', 'Menthol', '2e88c933-89e6-4a48-be7a-dc6a36e5c8f8', to_date('9/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3730, 'SALONPAS PAIN RELIEVING PATCH (Transdermal)', '938205', 'Camphor', '1ebe6a18-5247-4172-93ee-161416db060d', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3731, 'Salsalate (Oral Pill)', '1137460', 'Salsalate', 'ae3ee7d8-1a27-4148-8527-102d3d95d3d9', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3732, 'Saltbush pollen extract (Injectable)', '40172670', 'saltbush pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3733, 'SALURON (Oral Pill)', '1376289', 'Hydroflumethiazide', '6153ef9e-77f0-4233-a5bc-3e3d1f732323', to_date('10/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3734, 'SALVAX (Topical)', '964407', 'Salicylic Acid', '879e31b4-3449-40ce-9b34-815563d4e272', to_date('12/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3735, 'SAMARIUM Sm153 (Injectable)', '1338558', 'SAMARIUM Sm153', '89cae12d-05fc-4d53-920f-e271b2940a5d', to_date('12/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3736, 'SandoSTATIN (Injectable)', '1522957', 'Octreotide', '4e2c9856-1836-49f0-9472-4dbeeb408f39', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3737, 'SANSERT (Oral Pill)', '1106740', 'Methysergide', '3fae28ee-700e-4d4f-a040-02ef01a2aeb4', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3738, 'SANTYL (Topical)', '980311', 'COLLAGENASE', 'a7bf0341-49ff-4338-a339-679a3f3f953d', to_date('2/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3739, 'SAPHRIS (Sublingual)', '40164052', 'Asenapine', '5429f134-839f-4ffc-9944-55f51238def8', to_date('3/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3740, 'Saquinavir (Oral Pill)', '1746244', 'Saquinavir', 'b8b53129-06ab-4143-b9b7-7675e49a52ef', to_date('9/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3741, 'SARAPIN (Injectable)', '19030860', 'SARRACENIA PURPUREA preparation', '2c51acbc-033b-40a2-93b1-81ba89223b13', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3742, 'Sargramostim (Injectable)', '1308432', 'sargramostim', 'c96afe62-f0cf-4d4b-b57d-194a8ec12389', to_date('8/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3743, 'SARNA (Topical)', '938205', 'Camphor', 'a64e2fdb-54ba-4a5a-b31b-85a1d4d871eb', to_date('8/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3744, 'SARNA SENSITIVE (Topical)', '927478', 'pramoxine', '6fe48995-0b1c-48dd-bc6e-5d41b31a6486', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3745, 'SARRACENIA PURPUREA preparation (Injectable)', '19030860', 'SARRACENIA PURPUREA preparation', '2c51acbc-033b-40a2-93b1-81ba89223b13', to_date('3/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3746, 'SAVELLA (Oral Pill)', '19080226', 'milnacipran', '9b3d078b-d12f-47ef-baa4-35b88b090ed4', to_date('1/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3747, 'Saxagliptin (Oral Pill)', '40166035', 'saxagliptin', 'd45fc842-2563-4421-86af-a55b3191e19b', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3748, 'SCALPICIN ITCH RELIEF (Topical)', '975125', 'Hydrocortisone', '7b1a29fa-b266-43e6-a87b-aa3c96ab4041', to_date('11/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3749, 'SCALPICIN SCALP RELIEF (Topical)', '964407', 'Salicylic Acid', 'c072181f-827e-4e55-93e6-74929eabdbd1', to_date('2/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3750, 'SCANDONEST (Injectable)', '702774', 'Mepivacaine', '7215f107-d1ca-466d-8f4b-f86e5249d39b', to_date('7/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3751, 'SCLEROSOL (Topical)', '1036667', 'Talc', 'c89eb8fd-6c31-4f8b-8103-1f559424eda1', to_date('7/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3752, 'Scopolamine (Injectable)', '965748', 'Scopolamine', 'b85b3ca0-89ce-44fe-b748-62e160e8c349', to_date('8/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3753, 'SCOT-TUSSIN (Oral Liquid)', '1163944', 'Guaifenesin', '2cd6ab31-1fae-4737-b6af-50586323b751', to_date('1/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3754, 'SCOT-TUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', '4f0aefe3-e80f-44b8-bc24-1a325f36c2d3', to_date('1/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3755, 'SCOT-TUSSIN SUGAR FREE DM (Oral Liquid)', '1192710', 'Chlorpheniramine', '17bfd444-32a5-4036-a5fc-eb11b977e1e5', to_date('1/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3756, 'Scotch pine pollen extract (Injectable)', '40171787', 'Scotch pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3757, 'SCYTERA (Topical)', '1000995', 'Coal Tar', '3637ca89-694d-4061-a23d-e691093276e7', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3758, 'SEB-PREV (Topical)', '1036252', 'Sulfacetamide', '51e81749-8306-4e3e-9165-28c34cdcca62', to_date('9/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3759, 'SEBEX (Shampoo)', '964407', 'Salicylic Acid', 'aec81d61-1d28-490f-9654-f66bd4a30ffa', to_date('1/15/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3760, 'Secobarbital (Oral Pill)', '766067', 'Secobarbital', '19647025-6c7b-4079-8040-51e26347b014', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3761, 'SECONAL SODIUM (Oral Pill)', '766067', 'Secobarbital', '6698bc44-b971-49cc-a5de-11e569493c59', to_date('7/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3762, 'SECTRAL (Oral Pill)', '1319998', 'Acebutolol', '7eee95bf-0452-4d6e-9712-33403768695a', to_date('1/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3763, 'Selegiline (Oral Disintegrating)', '766209', 'Selegiline', '380d7717-2a79-42f3-a712-efe5e7696ba0', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3764, 'Selegiline (Oral Pill)', '766209', 'Selegiline', 'ed802863-bf91-46a4-9c44-a6c5ce905edc', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3765, 'Selenious Acid (Injectable)', '19038024', 'Selenious Acid', 'db7454bc-4f18-4632-b771-2e86db889bae', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3766, 'Selenium sulfide (Shampoo)', '938061', 'selenium sulfide', '4a90c2c6-f2a5-4c0d-8879-b7d6863ea179', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3767, 'Selenium sulfide (Topical)', '938061', 'selenium sulfide', '4b0c6317-7473-45de-b704-5d48d5c2dbe9', to_date('12/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3768, 'SELRX (Shampoo)', '938061', 'selenium sulfide', '44170482-124c-4d18-a4b5-fb5f39514689', to_date('9/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3769, 'SELSUN BLUE (Shampoo)', '938061', 'selenium sulfide', 'f97e458c-cce3-498f-81fc-1b96a4e8f50a', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3770, 'SELSUN BLUE NATURALS (Shampoo)', '964407', 'Salicylic Acid', 'ed031a0f-7467-4b2c-a6b6-95306f6ee828', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3771, 'SELZENTRY (Oral Pill)', '1787101', 'maraviroc', '2b5e5c5d-852a-413b-825c-8491d4539e67', to_date('2/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3772, 'SEMPREX-D (Oral Pill)', '1140123', 'acrivastine', 'd86c6a13-9e5f-43c2-92f5-c7ed7bfcedfc', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3773, 'SENEXON (Oral Liquid)', '938268', '"sennosides, USP"', '90983cc4-04cf-4cfc-a705-5681b985e6a0', to_date('6/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3774, 'SENEXON (Oral Pill)', '938268', '"sennosides, USP"', 'ffc422f2-a3e0-4b48-8186-a11e4088c85e', to_date('9/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3775, 'SENEXON S (Oral Pill)', '941258', 'Docusate', 'bb2064aa-b820-4e07-962a-a506145942df', to_date('5/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3776, 'SENNA LAX (Oral Pill)', '938268', '"sennosides, USP"', '0398229e-2e65-43cf-9e76-cfdd6ac5da46', to_date('8/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3777, '"Sennosides, USP (Chewable)"', '938268', '"sennosides, USP"', 'c8ea170b-57b5-4643-ba88-4cf2ae1bf6a0', to_date('5/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3778, '"Sennosides, USP (Oral Liquid)"', '938268', '"sennosides, USP"', 'b2bf2d76-7dc0-4864-bfc2-ef41e155d316', to_date('9/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3779, '"Sennosides, USP (Oral Pill)"', '938268', '"sennosides, USP"', 'da71f182-032f-4438-a6d4-e973b4cf6241', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3780, 'SENOKOT (Oral Pill)', '938268', '"sennosides, USP"', 'f27cb405-9820-4fe9-8432-e50643f2c7f0', to_date('2/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3781, 'SENOKOT-S (Oral Pill)', '941258', 'Docusate', 'c24cdc5e-62e0-41a6-8afb-512202a569f4', to_date('8/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3782, 'SENSI-CARE BODY (Topical)', '916662', 'dimethicone', '736a6d4e-852b-4611-9638-904979b94ad4', to_date('12/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3783, 'SENSIPAR (Oral Pill)', '1548111', 'cinacalcet', 'e4d86a0f-7164-41c9-9838-ea51d91c43b0', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3784, 'SENSORCAINE (Injectable)', '732893', 'Bupivacaine', 'ab7d1ab1-3d58-4562-a3be-c8b2b12e99cf', to_date('11/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3785, 'SENSORCAINE WITH EPINEPHRINE (Injectable)', '732893', 'Bupivacaine', 'bc61a9a6-0a4e-48a9-b908-e5e66b9f23eb', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3786, 'SEPTOCAINE (Injectable)', '19080512', 'Articaine', '0eba0bd2-ccb6-4f7e-8d0c-e4b4e6cdce03', to_date('7/12/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3787, 'SER-AP-ES (Oral Pill)', '1373928', 'Hydralazine', 'bdd0658e-38fb-4726-9720-09c502138ab0', to_date('8/21/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3788, 'SEROMYCIN (Oral Pill)', '1710446', 'Cycloserine', 'e1e08327-4b90-463e-bb2a-22438cabcef2', to_date('10/6/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3789, 'SEROquel (Oral Pill)', '766814', 'quetiapine', '6d34c9a4-cf73-4e2d-82f6-a132412c20fe', to_date('5/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3790, 'Sertaconazole (Topical)', '939134', 'sertaconazole', '821073f7-33f6-464d-baed-f66d97987d6d', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3791, 'Sertraline (Oral Liquid)', '739138', 'Sertraline', '7f144b68-ae90-483c-b030-f6824662a734', to_date('12/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3792, 'Sertraline (Oral Pill)', '739138', 'Sertraline', '250d998f-7100-495c-81ff-10fcfd5ba61d', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3793, 'Sevelamer (Oral Pill)', '952004', 'sevelamer', 'b2a373e4-110e-4f9a-9abe-e0c4374770d4', to_date('7/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3794, 'Sevoflurane (Inhalant)', '19039298', 'sevoflurane', '3b59360e-2b93-4fcb-b3a3-295f1fee4634', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3795, 'Shagbark hickory pollen extract (Injectable)', '40162231', 'shagbark hickory pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3796, 'Sheep sorrel pollen extract/Yellow dock pollen extract (Injectable)', '40162235', 'sheep sorrel pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3797, 'SHEER DESENZ (Oral Strip)', '927322', 'potassium nitrate', 'ac99f344-f0a7-4502-a06f-888a1b382edd', to_date('10/5/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3798, 'Short ragweed pollen extract (Injectable)', '40171301', 'short ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3799, 'Short ragweed pollen extract (Sublingual)', '40171301', 'short ragweed pollen extract', '986abfaf-67fc-47fb-8c86-d9f9cce6fa8b', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3800, 'Siberian elm pollen extract (Injectable)', '42801112', 'Siberian elm pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3801, 'SIGNIFOR (Injectable)', '43012417', 'pasireotide', '442f0d9d-5c7d-4b81-b329-d71be8cf2be2', to_date('3/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3802, 'SILADRYL (Oral Liquid)', '1129625', 'Diphenhydramine', '717c622c-570e-47d4-be73-041a88e8ebf8', to_date('6/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3803, 'Sildenafil (Injectable)', '1316262', 'sildenafil', 'bb92d686-a81e-4b91-8048-693af0534cb3', to_date('7/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3804, 'Sildenafil (Oral Pill)', '1316262', 'sildenafil', '47af30e9-a189-4721-8c8f-652256df75a1', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3805, 'SILENOR (Oral Pill)', '738156', 'Doxepin', '1bec1223-5239-4eb6-a9e8-62444106d2c0', to_date('12/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3806, 'SILTUSSIN (Oral Liquid)', '1163944', 'Guaifenesin', '264abf3d-c466-4209-b911-29ce18b0b816', to_date('2/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3807, 'SILTUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'ad9916ec-633b-4dcd-a955-88d5f0ec439e', to_date('11/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3808, 'SILVADENE (Topical)', '966956', 'Silver Sulfadiazine', 'c437213a-1cd4-445e-a39f-bbcacb9f746f', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3809, 'Silver sulfadiazine (Topical)', '966956', 'Silver Sulfadiazine', 'c2b6aaa5-3325-403c-9466-977c4f63f36f', to_date('6/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3810, 'Simethicone (Chewable)', '966991', 'Simethicone', '23005295-c5f2-4a76-8431-4a9b8d817d4d', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3811, 'Simethicone (Oral Liquid)', '966991', 'Simethicone', '395be942-d883-4bcb-8811-6fe1521d5a92', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3812, 'Simethicone (Oral Pill)', '966991', 'Simethicone', 'dda3c826-143e-420c-817e-d46d0ee523fb', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3813, 'SIMPLY SLEEP (Oral Pill)', '1129625', 'Diphenhydramine', '37c606b0-04d5-49f0-886a-3ee2c9b0e9cc', to_date('9/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3814, 'SIMPONI (Injectable)', '19041065', 'golimumab', '9e260a47-55af-4c92-8d88-a86ccc767fff', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3815, 'Simvastatin (Oral Disintegrating)', '1539403', 'Simvastatin', '34b56f73-bea4-4265-8b2a-c57520cf8e70', to_date('2/5/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3816, 'Simvastatin (Oral Pill)', '1539403', 'Simvastatin', 'c6985b00-59b5-4ff3-a940-478c616fc227', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3817, 'Sincalide (Injectable)', '19067803', 'Sincalide', 'c56a824b-a8ba-42db-b05c-49c731130879', to_date('7/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3818, 'SINE-OFF MAXIMUM STRENGTH REFORMULATED SEP 2008 (Oral Pill)', '1125315', 'Acetaminophen', 'e37237f4-20a0-4599-84c8-d96c62062861', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3819, 'SINEMET XR (Oral Pill)', '740560', 'Carbidopa', '69e575b9-f8a5-494f-b736-2520ef505cb0', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3820, 'SINEX LONG-ACTING (Nasal)', '925636', 'Oxymetazoline', 'a892608a-56d5-426e-b348-881099a4068d', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3821, 'SINGULAIR (Chewable)', '1154161', 'montelukast', 'e8d9021d-73aa-4c96-8b8a-e90069e78555', to_date('2/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3822, 'SINGULAIR (Oral Pill)', '1154161', 'montelukast', '10cd5ca5-6f8b-417c-af11-a2054a2dde34', to_date('3/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3823, 'Sipuleucel-T (Injectable)', '40224095', 'sipuleucel-T', '8309b497-5d4e-4408-ac0c-2452c11c8a35', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3824, 'Sirolimus (Oral Pill)', '19034726', 'Sirolimus', '0f26220a-f4ab-4ceb-9a98-a13dbdeed81f', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3825, 'Sisal fiber extract (Injectable)', '40162251', 'sisal fiber extract', 'a363efb9-0817-4347-8c36-6630b5b99dc5', to_date('12/18/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3826, 'sitaGLIPtin (Oral Pill)', '1580747', 'sitagliptin', '588f94fa-ef4c-4633-8d65-d0d93f374ffc', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3827, 'SITAVIG (Buccal)', '1703687', 'Acyclovir', '00f7425a-6236-47ff-a087-f28f8cdb1aec', to_date('8/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3828, 'SKELAXIN (Oral Pill)', '780369', 'metaxalone', '7a4163f2-c553-4d14-7e98-d14c5c7f772a', to_date('6/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3829, 'SKLICE (Topical)', '1784444', 'Ivermectin', '4c5557cd-c4cf-11df-851a-0800200c9a66', to_date('7/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3830, 'SKYLA (Implant)', '1589505', 'Levonorgestrel', '9f44ff35-e052-49cd-a1c2-0bfd87d49309', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3831, 'Slash pine pollen extract (Injectable)', '40172778', 'slash pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3832, 'SLEEPINAL (Oral Pill)', '1129625', 'Diphenhydramine', '111e891d-acd8-44f9-b958-09cb876d388c', to_date('1/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3833, 'Smooth brome pollen extract (Injectable)', '40162259', 'smooth brome pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3834, 'SOCHLOR (Ophthalmic)', '967823', 'Sodium Chloride', '3f78386f-42f1-22a9-1f27-349381dad0b0', to_date('2/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3835, 'Sodium Acetate (Injectable)', '19077884', 'Sodium Acetate', 'ce9a7469-c4ba-4f60-8f7a-47ef0974316e', to_date('4/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3836, 'Sodium Bicarbonate (Injectable)', '939506', 'Sodium Bicarbonate', '41735bcb-602f-49a0-b578-18c1bdb33d03', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3837, 'Sodium Bicarbonate (Oral Pill)', '939506', 'Sodium Bicarbonate', 'e73b5871-4a87-4473-ab00-5e5395be017d', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3838, 'Sodium Bicarbonate/Sodium Chloride (Nasal)', '939506', 'Sodium Bicarbonate', 'ff4df6c5-c85f-406a-89d7-8c2853fd5e10', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3839, 'Sodium Chloride (Inhalant)', '967823', 'Sodium Chloride', 'b4fd60c9-6fd9-430a-b4f6-0424b46bdbe1', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3840, 'Sodium Chloride (Injectable)', '967823', 'Sodium Chloride', 'f55bd888-5e01-474d-871b-24654c070178', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3841, 'Sodium Chloride (Irrigation)', '967823', 'Sodium Chloride', '05dee566-7b82-4216-8a6b-765d2b4d9dc7', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3842, 'Sodium Chloride (Nasal)', '967823', 'Sodium Chloride', 'f852bdfe-12af-4ac7-9158-4a1450bcb025', to_date('12/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3843, 'Sodium Chloride (Ophthalmic)', '967823', 'Sodium Chloride', '93fafa27-5031-4d95-b4b8-5574b7204ae2', to_date('9/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3844, 'Sodium citrate (Injectable)', '977968', 'sodium citrate', '447528e6-55cd-4a9b-868e-2a741b2693d3', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3845, 'Sodium ferric gluconate complex (Injectable)', '1399177', 'Sodium ferric gluconate complex', '218d1b8d-b24f-4f77-b588-97c7dd1c2eec', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3846, 'Sodium Fluoride (Chewable)', '19069022', 'Sodium Fluoride', '58b3e7ff-c032-4e42-823a-8ed7b93d606f', to_date('3/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3847, 'Sodium Fluoride (Mouthwash)', '19069022', 'Sodium Fluoride', '1a57bfa0-3b18-4612-ad8c-5e651abb3530', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3848, 'Sodium Fluoride (Oral Foam)', '19069022', 'Sodium Fluoride', 'feaab33f-87b2-4e79-b8c3-649d79002111', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3849, 'Sodium Fluoride (Oral Gel)', '19069022', 'Sodium Fluoride', 'ec50b003-cf61-4f66-bb62-f779e48363c2', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3850, 'Sodium Fluoride (Oral Liquid)', '19069022', 'Sodium Fluoride', 'cc162a0e-b601-4466-9a4e-192985ee014a', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3851, 'Sodium Fluoride (Paste)', '19069022', 'Sodium Fluoride', '0f859886-ce63-4de2-994e-7288b19d9656', to_date('8/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3852, 'Sodium Fluoride (Toothpaste)', '19069022', 'Sodium Fluoride', 'd93ee76f-454b-40bf-9357-39a2ae3b6ccb', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3853, 'Sodium Fluoride/Xylitol (Chewable)', '19069022', 'Sodium Fluoride', '4c854364-e732-4dec-b1d1-b8a97e4e1176', to_date('8/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3854, 'Sodium Iodide (Injectable)', '19069873', 'Sodium Iodide', '64c7014a-c9b1-4264-b365-c610c3d733fd', to_date('6/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3855, 'Sodium Morrhuate (Injectable)', '19069904', 'Sodium Morrhuate', '9298b254-4311-46cd-9244-8651dd87417e', to_date('9/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3856, 'Sodium Nitrite (Injectable)', '19069907', 'Sodium Nitrite', 'ff4941b3-9901-4aab-adcf-c5327bede34e', to_date('12/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3857, 'Sodium Oxybate (Oral Liquid)', '769935', 'Sodium Oxybate', '926eb076-a4a8-45e4-91ef-411f0aa4f3ca', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3858, 'Sodium phosphate (Oral Pill)', '939871', 'sodium phosphate', '983ce15f-cd37-4f3a-9e51-205860e80976', to_date('8/24/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3859, '"Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Injectable)"', '991710', '"Sodium Phosphate, Dibasic"', '348ecd15-59c0-4833-88ea-7acf6ac0dbef', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3860, '"Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Oral Liquid)"', '991710', '"Sodium Phosphate, Dibasic"', 'baa19edb-d585-451e-a536-96293f2a7688', to_date('12/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3861, '"Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Rectal)"', '991710', '"Sodium Phosphate, Dibasic"', 'fb260df0-7bda-4299-84a5-44c8f9447798', to_date('8/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3862, '"SODIUM PHOSPHATE,MONOBASIC,MONOHYDRATE/Sodium Phosphate, Dibasic (Oral Pill)"', '991710', '"Sodium Phosphate, Dibasic"', '57ccd52e-5b13-4b39-8aa0-ebecc49a7db4', to_date('12/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3863, 'Sodium polystyrene sulfonate (Oral Liquid)', '19078126', 'Sodium polystyrene sulfonate', '905c3ee5-d1a7-4deb-a345-4a42296704fa', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3864, 'Sodium Tetradecyl Sulfate (Injectable)', '19070012', 'Sodium Tetradecyl Sulfate', 'f1756c28-dcd2-4b49-be62-07ca20682018', to_date('7/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3865, 'Sodium thiosulfate (Injectable)', '940004', 'sodium thiosulfate', 'ff4941b3-9901-4aab-adcf-c5327bede34e', to_date('12/20/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3866, 'SOLARCAINE (Topical)', '989878', 'Lidocaine', '88f3cb40-2258-4e1c-92fb-e1891ddb3135', to_date('9/4/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3867, 'Solifenacin (Oral Pill)', '916005', 'Solifenacin', '5256f116-ad56-4ce0-8a5e-69d401f3ea00', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3868, 'SOLTAMOX (Oral Liquid)', '1436678', 'Tamoxifen', '8e4710a7-8757-49be-8bec-a1dc39e6c695', to_date('10/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3869, 'Solu-CORTEF (Injectable)', '975125', 'Hydrocortisone', 'b2b4c961-363d-49fe-b354-d59b39fd517a', to_date('5/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3870, 'Solu-MEDROL (Injectable)', '1506270', 'Methylprednisolone', '68ef8ec4-16de-4a8c-8696-b09359660380', to_date('1/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3871, 'SOMA (Oral Pill)', '749910', 'Carisoprodol', '6543c6ba-852e-40fb-b7ec-1331b9c83656', to_date('12/10/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3872, 'Somatropin (Injectable)', '1584910', 'Somatropin', '85ba081b-bee0-4a9a-aa0f-ae5b5e9a0886', to_date('4/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3873, 'SOMBRA WARM PAIN RELIEVING GEL (Topical)', '938205', 'Camphor', 'de78dba9-53b3-4dbd-9dd2-6a692378da34', to_date('1/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3874, 'SOMINEX (Oral Pill)', '1129625', 'Diphenhydramine', '9e70ead1-479f-48bb-9be4-a8b30b784795', to_date('2/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3875, 'SONATA (Oral Pill)', '720727', 'zaleplon', '43ac81cb-1e3f-4d44-86bd-13db2721d060', to_date('9/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3876, 'SOOTHE & COOL MOISTURE BARRIER (Topical)', '19033354', 'Petrolatum', '59625382-2769-4c91-9c53-e19dfd6ca115', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3877, 'SOOTHE NIGHT TIME (Ophthalmic)', '908523', 'Mineral Oil', '638d3c3f-9960-43da-956e-0e28c77f533e', to_date('12/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3878, 'SOOTHE REGULAR STRENGTH (Oral Liquid)', '937791', 'bismuth subsalicylate', '82f2b3a4-3428-4046-9372-2ef9046a071c', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3879, 'Sorbitol (Irrigation)', '970011', 'Sorbitol', '5f7be402-f25a-428e-b81f-6a4a00de894c', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3880, 'Sorbitol (Rectal)', '970011', 'Sorbitol', '16cc9d47-5382-4237-ab84-f22c5436fe2e', to_date('7/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3881, 'SORINE (Oral Pill)', '1370109', 'Sotalol', '6ee6e904-a8e2-41d4-8261-67103ecfa605', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3882, 'Sotalol (Injectable)', '1370109', 'Sotalol', '2afe7385-2441-4e22-b63e-ab8614b275df', to_date('9/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3883, 'Sotalol (Oral Liquid)', '1370109', 'Sotalol', '1f33f900-0777-4a92-a7f7-00cf3d57d95c', to_date('3/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3884, 'Sotalol (Oral Pill)', '1370109', 'Sotalol', '03de4b65-29b0-4e30-a94b-b5877a050f93', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3885, 'SOTRADECOL (Injectable)', '19070012', 'Sodium Tetradecyl Sulfate', 'f1756c28-dcd2-4b49-be62-07ca20682018', to_date('7/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3886, 'SOTRET (Oral Pill)', '984232', 'Isotretinoin', 'd5a26c5e-9c3e-4781-8c08-62b91d21a68d', to_date('12/1/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3887, 'SOTYLIZE (Oral Liquid)', '1370109', 'Sotalol', '1f33f900-0777-4a92-a7f7-00cf3d57d95c', to_date('3/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3888, 'SPECTRACEF (Oral Pill)', '1747005', 'cefditoren', '1c90b649-5536-417c-82cb-89663137f14f', to_date('6/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3889, 'Spinosad (Shampoo)', '40172543', 'spinosad', '5cd2bff8-40cd-4e63-9907-77b80d774cb7', to_date('6/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3890, 'SPIRIVA (Inhalant)', '1106776', 'tiotropium', '1cf82d42-5ad0-4b86-838e-9230c61cf3d4', to_date('7/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3891, 'Spironolactone (Oral Pill)', '970250', 'Spironolactone', 'd895f00f-ce8c-47cf-9e3f-78ec2d1a0a1b', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3892, 'SPORTSCREME (Topical)', '943116', 'trolamine salicylate', 'cfaae612-43df-409e-80b4-4704fbf53b04', to_date('12/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3893, 'SPRYCEL (Oral Pill)', '1358436', 'dasatinib', '0e7f054c-7a27-4192-bd1c-6115d8be858f', to_date('6/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3894, 'SSD (Topical)', '966956', 'Silver Sulfadiazine', 'cecc0b75-fccf-418d-923a-2a5869c1d043', to_date('12/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3895, 'STAHIST AD (Oral Pill)', '990413', 'chlorcyclizine', 'ccedbc38-2479-4c35-9f86-a9f29bcfab3f', to_date('1/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3896, 'STAHIST AD LIQUID (Oral Liquid)', '990413', 'chlorcyclizine', '4e1bd76c-3fd8-4372-907f-6b799d67cfbb', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3897, 'STANBACK HEADACHE POWDER REFORMULATED JAN 2011 (Oral Powder)', '1112807', 'Aspirin', 'caaa1313-09e4-45aa-8836-346f6a370196', to_date('6/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3898, 'Stannous Fluoride (Mouthwash)', '1036094', 'Stannous Fluoride', 'd2f0df92-d52f-4c9c-99d0-3cd2a025e5e9', to_date('6/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3899, 'Stannous Fluoride (Oral Gel)', '1036094', 'Stannous Fluoride', '3b21d029-271b-43f4-9406-429507621bf7', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3900, 'Stannous Fluoride (Toothpaste)', '1036094', 'Stannous Fluoride', '2ee74342-c3f6-4aa5-a4d6-d9123d24a5aa', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3901, 'Starch (Rectal)', '1036157', 'Starch', '6a3ee178-39a9-44bf-8fdb-5eacbd089998', to_date('8/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3902, 'Starch/Zinc Oxide (Topical)', '1036157', 'Starch', '9f12dee2-7afa-45e9-a729-0fd42bb77715', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3903, 'STATROL (Ophthalmic)', '915981', 'Neomycin', '7218af16-9378-472a-a033-4c9f9d5524db', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3904, 'STATUSS GREEN REFORMULATED JAN 2012 (Oral Liquid)', '990413', 'chlorcyclizine', '9d1d42e4-9d69-4360-a057-81f909133880', to_date('1/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3905, 'Stavudine (Oral Liquid)', '1781406', 'Stavudine', '259fbf19-ad1a-424f-873a-ba12e42b9315', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3906, 'Stavudine (Oral Pill)', '1781406', 'Stavudine', '6d397a2a-06fc-467e-b014-c19e6384c8d9', to_date('11/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3907, 'STAXYN (Oral Disintegrating)', '1311276', 'vardenafil', '0e5139d8-bf61-4f21-a36b-81b96b9b07d1', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3908, 'STOPAIN (Topical)', '901656', 'Menthol', 'da5b7666-3df4-4b11-afb3-7e292c065053', to_date('11/30/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3909, 'STRATTERA (Oral Pill)', '742185', 'atomoxetine', '23c702e2-3abc-4d7d-b88f-a089e2179f42', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3910, 'Streptomycin (Injectable)', '1836191', 'Streptomycin', 'abd1f64e-4283-4370-aae8-3666316aa36e', to_date('10/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3911, 'Streptozocin (Injectable)', '19136210', 'Streptozocin', '15d161ed-9e7b-4c92-ba45-0556d2423e67', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3912, 'STRI-DEX (Topical)', '964407', 'Salicylic Acid', '843d3424-bd6c-44aa-976b-63c9da15014e', to_date('5/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3913, 'STRIANT (Buccal)', '1636780', 'Testosterone', '9af8ef50-f650-44ca-a272-135bfce9daca', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3914, 'STRIBILD (Oral Pill)', '42874220', 'cobicistat', '144067b2-0532-476a-996e-e4a0a9d09b05', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3915, 'STRIDEX (Topical)', '964407', 'Salicylic Acid', 'b3a78318-293a-4869-b442-3b6a9965791f', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3916, 'STYPTSTIX (Topical)', '927322', 'potassium nitrate', 'b7634e27-3c75-4e56-ab42-3e5796edb0c7', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3917, 'SUBLIMAZE (Injectable)', '1154029', 'Fentanyl', '8944ea18-016e-4971-876d-2365fac190ea', to_date('5/15/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3918, 'SUBOXONE (Oral Strip)', '1133201', 'Buprenorphine', '426a0094-f192-48ff-be40-c4f7c9566d50', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3919, 'SUBOXONE (Sublingual)', '1133201', 'Buprenorphine', '8083b4e1-9863-4311-b72d-cbad288f7652', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3920, 'Succimer (Oral Pill)', '1728909', 'Succimer', '62035612-9505-3a3f-1ac8-e2dbd711d24e', to_date('8/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3921, 'Succinylcholine (Injectable)', '836208', 'Succinylcholine', 'c06156ae-b889-4250-bc85-1435b2635829', to_date('6/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3922, 'SUCRAID (Oral Liquid)', '951980', 'Sacrosidase', 'd613bb7f-c3f4-462e-81a2-da2347cc4b6b', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3923, 'Sucralfate (Oral Liquid)', '1036228', 'Sucralfate', '0fb67b1c-b4c0-46f2-8a81-df1510e006aa', to_date('5/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3924, 'Sucralfate (Oral Pill)', '1036228', 'Sucralfate', '989ca8a8-3ad6-4ee4-aa9c-eed731828753', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3925, 'SUCRETS (Oral Lozenge)', '992308', 'dyclonine', '68f3e4d6-4292-4c5c-96de-2c4d38ec6399', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3926, 'SUCRETS DM (Oral Lozenge)', '1119510', 'Dextromethorphan', '00ad5b08-5371-4a2f-be49-4254106d7f64', to_date('11/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3927, 'SUCRETS ORIGINAL (Oral Lozenge)', '969004', 'Hexylresorcinol', 'e282ba65-b674-45d5-82c2-ab4e4a95243b', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3928, 'SUDAFED (Oral Liquid)', '1154332', 'Pseudoephedrine', '52e9307b-ad38-4f65-bb2f-4fa262e82010', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3929, 'SUDAFED (Oral Pill)', '1154332', 'Pseudoephedrine', 'd280abe9-6bdf-4e1e-a0cf-95fd0451c999', to_date('6/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3930, 'SUDAFED PE (Oral Pill)', '1135766', 'Phenylephrine', '74716ae2-b035-47e2-9fc6-9ce53fdcd790', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3931, 'SUDAFED PE CHILDREN''S COLD & COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', '20e45243-3989-413a-bcf1-49d754ff2e44', to_date('3/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3932, 'SUDAFED PE CHILDREN''S NASAL DECONGESTANT (Oral Liquid)', '1135766', 'Phenylephrine', '4dfd46e4-b9f9-464d-aa47-e8fa9e526a5d', to_date('6/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3933, 'Sudan grass pollen extract (Injectable)', '40237944', 'Sudan grass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3934, 'SUDO-TAB (Oral Pill)', '1135766', 'Phenylephrine', '6f70ed59-a1f8-4daa-8614-feaf2533687b', to_date('11/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3935, 'SUDOGEST (Oral Liquid)', '1154332', 'Pseudoephedrine', '0ae49d7e-ceec-4ad6-a0b8-cb20237e2b70', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3936, 'SUDOGEST (Oral Pill)', '1154332', 'Pseudoephedrine', '7d26821c-a08a-40a8-9729-251f21d54702', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3937, 'SUDOGEST SINUS & ALLERGY (Oral Pill)', '1192710', 'Chlorpheniramine', '7cd8f7f3-c262-4f7c-bcaf-068be2c952f9', to_date('5/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3938, 'SUFentanil (Injectable)', '19078219', 'Sufentanil', '53dbe21e-0b97-4271-a7af-2d18986adcd8', to_date('4/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3939, 'Sulconazole (Topical)', '940535', 'sulconazole', 'b3aea089-3961-43ea-8335-8128e9bae13b', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3940, 'SULF-10 (Ophthalmic)', '1036252', 'Sulfacetamide', '43aab37c-3020-4f7e-8b21-f9be22e9d356', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3941, 'Sulfacetamide (Ophthalmic)', '1036252', 'Sulfacetamide', '26983557-e3e8-477f-bb63-64f04b1606eb', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3942, 'Sulfacetamide (Shampoo)', '1036252', 'Sulfacetamide', '6a034465-e600-49cb-91bd-7b9ceee6ffc6', to_date('10/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3943, 'Sulfacetamide (Soap)', '1036252', 'Sulfacetamide', 'a77aed6c-355f-44ed-ae95-78b4d1549c2b', to_date('1/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3944, 'Sulfacetamide (Topical)', '1036252', 'Sulfacetamide', '5a005021-dfa1-4aeb-8661-045516723baf', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3945, 'Sulfacetamide/Sulfur (Soap)', '1036252', 'Sulfacetamide', '0e76c520-d02a-4064-bcda-fc45cf9e6fa3', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3946, 'Sulfacetamide/Sulfur (Topical)', '1036252', 'Sulfacetamide', '5fff8c9a-a798-4b5b-b818-6c1817936d5d', to_date('3/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3947, 'Sulfamethoxazole/Trimethoprim (Injectable)', '1836430', 'Sulfamethoxazole', 'b89b5502-ce87-45a6-a43c-9891da3cfca4', to_date('8/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3948, 'Sulfamethoxazole/Trimethoprim (Oral Liquid)', '1836430', 'Sulfamethoxazole', 'bbad2036-e2a8-4c56-bb92-dea833598ebc', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3949, 'Sulfamethoxazole/Trimethoprim (Oral Pill)', '1836430', 'Sulfamethoxazole', 'a0f86f52-8841-4e1c-8536-2e78320471ed', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3950, 'SULFAMYLON (Topical)', '992716', 'Mafenide', '9972db4c-703f-4cbc-915c-ec993bff6fb9', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3951, 'Sulfanilamide (Vaginal)', '1036475', 'Sulfanilamide', 'd344f475-1bf2-4aaf-aae3-0cd0be4995d1', to_date('12/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3952, 'sulfaSALAzine (Oral Pill)', '964339', 'Sulfasalazine', 'ad13d598-7b1b-48d3-a25b-08635b419f99', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3953, 'SULFATRIM (Oral Liquid)', '1836430', 'Sulfamethoxazole', 'a8df90d8-78b3-48c3-b42e-1e651d81454b', to_date('11/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3954, 'SULFONATED PHENOL/Sulfuric acid (Mucosal)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3955, 'SULFONATED PHENOL/Sulfuric acid (Topical)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', to_date('5/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3956, 'Sulfur (Soap)', '1036525', 'Sulfur', 'bd35f939-a36a-4a96-98df-36bf81ab8628', to_date('6/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3957, 'Sulfur (Topical)', '1036525', 'Sulfur', '0280e008-8f9d-4bb8-897b-3e5fbb49aa1e', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3958, 'Sulindac (Oral Pill)', '1236607', 'Sulindac', '19dde540-3d29-4db4-9570-6ca15f09e0fe', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3959, 'SULPHO-LAC (Soap)', '1036525', 'Sulfur', '2f838efd-831d-4171-8387-83c8eab3c51a', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3960, 'SUMADAN WASH (Soap)', '1036252', 'Sulfacetamide', 'f4b493b8-1193-4a3f-b7a2-77d08d5b3d66', to_date('12/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3961, 'SUMAtriptan (Injectable)', '1140643', 'Sumatriptan', '24259865-233b-4258-a01b-e895a873f2c4', to_date('3/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3962, 'SUMAtriptan (Nasal)', '1140643', 'Sumatriptan', '6c95caa4-812e-4e47-bcfc-c641c00db3f7', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3963, 'SUMAtriptan (Oral Pill)', '1140643', 'Sumatriptan', '1ecbd827-e22b-113d-e054-00144ff8d46c', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3964, 'SUMAtriptan (Transdermal)', '1140643', 'Sumatriptan', '806a07a0-e042-11df-9548-0002a5d5c51b', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3965, 'SUMAXIN (Soap)', '1036252', 'Sulfacetamide', '2e3350eb-ca10-4bf2-819f-3eb46c7437b7', to_date('9/3/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3966, 'SUMAXIN (Topical)', '1036252', 'Sulfacetamide', '5d9ddc1a-fbae-4595-86ce-3bbca7d03482', to_date('12/29/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3967, 'SUPERDENT HEMAL (Mucosal)', '957393', 'aluminum chloride', 'cb363bac-c935-4398-892e-d9024eb7d121', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3968, 'SUPRANE (Inhalant)', '19002770', 'desflurane', 'bf4d8d29-852d-4281-b732-4af0eca019e1', to_date('3/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3969, 'SUPRAX (Chewable)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3970, 'SUPRAX (Oral Liquid)', '1796435', 'Cefixime', '7e2462b2-bfed-4da4-8c47-46838d6153f8', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3971, 'SUPRAX (Oral Pill)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', to_date('9/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3972, 'Suprofen (Ophthalmic)', '1036636', 'Suprofen', '8de2c303-5d99-46b6-ad6d-a4caadea3604', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3973, 'SURFAK STOOL SOFTENER (Oral Pill)', '941258', 'Docusate', 'f2ea1d6b-fce6-40b4-9c06-48ca40323e01', to_date('11/25/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3974, 'SURFAXIN (Injectable)', '42800204', 'lucinactant', 'f2ba0c81-ceb0-11e0-9572-0800200c9a66', to_date('5/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3975, 'SURMONTIL (Oral Pill)', '705755', 'Trimipramine', '0177d783-773c-41bf-9db9-eb7e5c64474a', to_date('2/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3976, 'SUSTIVA (Oral Pill)', '1738135', 'efavirenz', '04b5c345-c446-43a4-83f0-509bc287e10b', to_date('3/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3977, 'Suvorexant (Oral Pill)', '45775760', 'Suvorexant', 'e5b72731-1acb-45b7-9c13-290ad12d3951', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3978, 'SYLATRON (Injectable)', '1797155', 'peginterferon alfa-2b', '3874c95c-092e-4cd5-b104-6ed2bc391b0e', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3979, 'SYNALAR (Topical)', '996541', 'fluocinolone', '4feecef4-553f-4a90-a3ce-a19eb04bd68e', to_date('2/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3980, 'SYNALGOS-DC (Oral Pill)', '1112807', 'Aspirin', '3e863ce5-936c-4145-b14b-76670e21bdad', to_date('5/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3981, 'SYNERA (Transdermal)', '989878', 'Lidocaine', 'b3eee508-8bf3-4bd3-9a71-47ee6ea87f95', to_date('3/5/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3982, 'SYNERCID (Injectable)', '1789517', 'dalfopristin', '28f698df-b584-4455-2e94-6efc41313960', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3983, 'SYNRIBO (Injectable)', '19069046', 'omacetaxine mepesuccinate', '83a504ef-cf92-467d-9ecf-d251194a3484', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3984, '"Synthetic conjugated estrogens, A (Oral Pill)"', '1596779', '"synthetic conjugated estrogens, A"', '410f9433-98ed-4c3f-abb1-2386296d2f72', to_date('8/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3985, '"Synthetic conjugated estrogens, B (Oral Pill)"', '1586808', '"synthetic conjugated estrogens, B"', 'b7aba0b2-72d1-4429-bb64-98b92e9d9433', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3986, 'SYNTHROID (Oral Pill)', '1501700', 'Thyroxine', '1083d90e-398e-4c8f-99a7-4ddf377ffffe', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3987, 'SYPRINE (Oral Pill)', '19004969', 'Trientine', '0ed52ecf-cda9-4a06-bacc-2c2827cc8967', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3988, 'SYSTANE (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '14916d2c-a63d-491e-bd91-a61f300af38a', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3989, 'SYSTANE BALANCE (Ophthalmic)', '929128', 'Propylene glycol', 'c7b1a03a-a5f2-409e-a34a-d6f166671de5', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3990, 'SYSTANE NIGHTTIME (Ophthalmic)', '908523', 'Mineral Oil', '4689c59c-5721-3f91-6c85-e41501998fd0', to_date('5/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3991, 'TABLOID (Oral Pill)', '1437379', 'Thioguanine', '4490128b-e73f-4849-9d6e-e8591639d771', to_date('3/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3992, 'TACHOSIL (Transdermal)', '19054702', 'Fibrinogen', '5918e503-b457-48ab-b68b-243e29651d06', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3993, 'TACLONEX (Topical)', '920458', 'Betamethasone', 'ef43ba2d-20ce-4415-b5c2-e486b836812e', to_date('1/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3994, 'Tacrolimus (Oral Pill)', '950637', 'Tacrolimus', '61dee012-43af-0e9a-3843-9b9b91e022c4', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3995, 'Tacrolimus (Topical)', '950637', 'Tacrolimus', '1bf44a84-14fd-4f80-ad8a-99b1431d631f', to_date('11/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3996, 'TACTINAL (Oral Pill)', '1125315', 'Acetaminophen', '0a5b8720-dec4-4cb2-e054-00144ff88e88', to_date('12/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3997, 'Tadalafil (Oral Pill)', '1336926', 'tadalafil', 'ebddb745-81f9-4b25-8739-b2886032ed26', to_date('3/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3998, 'TAFINLAR (Oral Pill)', '43532299', 'dabrafenib', '803beaaa-33f9-48cc-9a95-c2e887e095b4', to_date('2/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(3999, 'Tag alder pollen extract (Injectable)', '40162097', 'tag alder pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4000, 'TAGAMET (Oral Pill)', '997276', 'Cimetidine', 'e6401e0a-8612-42e8-bf89-2d67243f28dc', to_date('12/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4001, 'TAKE ACTION (Oral Pill)', '1589505', 'Levonorgestrel', '94f251c1-599c-4517-8c60-50a896b06992', to_date('3/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4002, 'TALACEN (Oral Pill)', '1125315', 'Acetaminophen', '927f1bb9-6c13-4229-a5c8-0bf0b4c3bb35', to_date('11/14/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4003, 'Talc (Topical)', '1036667', 'Talc', 'c89eb8fd-6c31-4f8b-8103-1f559424eda1', to_date('7/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4004, 'Talc/Zinc Oxide (Topical)', '1036667', 'Talc', '8ebc1ab4-6dcb-42ec-908b-5b97648331db', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4005, 'Taliglucerase alfa (Injectable)', '42800246', 'taliglucerase alfa', 'fa3cbd5d-677c-4b19-9032-d9182cb69a83', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4006, 'Tall oat grass pollen extract (Injectable)', '40225727', 'tall oat grass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4007, 'Tamarack pollen extract (Injectable)', '40172606', 'tamarack pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4008, 'TAMBOCOR (Oral Pill)', '1354860', 'Flecainide', 'b764c8b8-7e23-4016-830f-68312d84f3d3', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4009, 'TAMIFLU (Oral Liquid)', '1799139', 'Oseltamivir', '1948cafd-b5b3-4212-9d5d-8c293b1baad5', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4010, 'TAMIFLU (Oral Pill)', '1799139', 'Oseltamivir', '2f912317-c0de-445a-8729-a99a8d2acaad', to_date('5/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4011, 'Tamoxifen (Oral Liquid)', '1436678', 'Tamoxifen', '8e4710a7-8757-49be-8bec-a1dc39e6c695', to_date('10/1/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4012, 'Tamoxifen (Oral Pill)', '1436678', 'Tamoxifen', 'f5ffe9dd-f76d-4aab-9473-81e33b26710b', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4013, 'Tamsulosin (Oral Pill)', '924566', 'tamsulosin', '836447d8-fdea-4fa7-bb2f-e269fcb251f9', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4014, 'TANAC LIQUID (Mucosal)', '917006', 'Benzocaine', '4fec813b-f5ad-4d15-8db5-529d5aa8bcb6', to_date('1/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4015, 'TAPAZOLE (Oral Pill)', '1504620', 'Methimazole', '0659f574-542f-4931-8fe7-d9f6b431bb9a', to_date('3/13/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4016, 'Tapentadol (Oral Liquid)', '19026459', 'tapentadol', 'e921054f-b3f1-4624-8edd-f6628c6f0fd9', to_date('11/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4017, 'Tapentadol (Oral Pill)', '19026459', 'tapentadol', 'e35e8385-db1f-41a8-8307-20979569ac72', to_date('3/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4018, 'TARCEVA (Oral Pill)', '1325363', 'erlotinib', '5783976b-0862-44e5-9b19-0f41d236d5c3', to_date('1/30/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4019, 'TARGRETIN (Oral Pill)', '1389888', 'bexarotene', '1d056725-0576-4338-8089-6336e768ccdc', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4020, 'TARGRETIN (Topical)', '1389888', 'bexarotene', 'e415c4c8-3144-4172-94a0-f4f3243130ae', to_date('2/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4021, 'TARSUM (Shampoo)', '1000995', 'Coal Tar', 'd990a3d8-8be8-44e3-8e84-a6d8da21f3b5', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4022, 'Tasimelteon (Oral Pill)', '44814600', 'tasimelteon', 'ca4a9b63-708e-49e9-8f9b-010625443b90', to_date('12/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4023, 'TASMAR (Oral Pill)', '715727', 'tolcapone', 'a0e47a9d-78e7-4523-983a-aa259f221736', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4024, 'TAVIST (Oral Pill)', '1197677', 'Clemastine', 'da09ea30-067f-45bc-9dc8-6fdd63db9ee1', to_date('9/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4025, 'Tazarotene (Topical)', '947416', 'tazarotene', '75145c21-6ef2-455a-8a67-d48ddd4181a4', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4026, 'TAZORAC (Topical)', '947416', 'tazarotene', 'dd02ea43-7668-4872-a655-ee31c456e345', to_date('7/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4027, 'Tea Tree Oil (Topical)', '19008374', 'Tea Tree Oil', '31952c39-8b43-4e93-b2e8-9388da8bdaf8', to_date('3/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4028, 'TEARS RENEWED (Ophthalmic)', '1319156', 'Dextran 70', '8cb4d4b4-44e5-4584-a4a4-940ad50b2f9d', to_date('5/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4029, 'Teduglutide (Injectable)', '43013171', 'teduglutide', '66b69c1e-b25c-44d3-b5ff-1c1de9a516fa', to_date('1/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4030, 'Tegretol', '19045157', 'carbamazepine', '8d409411-aa9f-4f3a-a52c-fbcb0c3ec053', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4031, 'TEKTURNA (Oral Pill)', '1317967', 'aliskiren', '4c222831-90af-4336-8bf6-5628ddf24326', to_date('1/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4032, 'TEKTURNA HCT (Oral Pill)', '1317967', 'aliskiren', '40d12d97-152d-4fea-bc59-b69e5c29fde2', to_date('11/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4033, 'Telavancin (Injectable)', '40166675', 'telavancin', 'c09655ea-7af5-4443-a769-86e416214f59', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4034, 'TELDRIN HBP (Oral Pill)', '1192710', 'Chlorpheniramine', '4cdbecbe-3219-4083-adc0-5479dc3ad3b9', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4035, 'Telithromycin (Oral Pill)', '1702911', 'telithromycin', 'ba1cca98-f350-4655-88e3-6ef990779fb9', to_date('3/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4036, 'Telmisartan (Oral Pill)', '1317640', 'telmisartan', '209b005e-12d7-3d34-e054-00144ff8d46c', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4037, 'Temazepam (Oral Pill)', '836715', 'Temazepam', 'f1ff672d-0b95-4e1b-9104-a545e02f4ee7', to_date('7/31/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4038, 'TEMODAR (Oral Pill)', '1341149', 'temozolomide', '819571ea-b808-4fd8-93c7-1ea2e33d71cf', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4039, 'TEMOVATE (Topical)', '998415', 'Clobetasol', '830a28fb-9b80-4fbb-99dc-56ec80e4e581', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4040, 'Temozolomide (Oral Pill)', '1341149', 'temozolomide', '819571ea-b808-4fd8-93c7-1ea2e33d71cf', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4041, 'Tenecteplase (Injectable)', '19098548', 'Tenecteplase', '66a1e273-ab59-4e7a-a223-a96b86501f51', to_date('9/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4042, 'TENEX (Oral Pill)', '1344965', 'Guanfacine', '886e050c-dd22-4f35-ac3b-243f091125c3', to_date('7/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4043, 'Tenofovir disoproxil (Oral Pill)', '1710281', 'tenofovir disoproxil', 'e122435e-cd0b-4c90-940a-b7a0d090d866', to_date('4/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4044, 'TENORETIC (Oral Pill)', '1314002', 'Atenolol', '0ebcca1e-ca16-4483-429a-aec5dcacd1dc', to_date('11/8/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4045, 'TENORMIN (Injectable)', '1314002', 'Atenolol', '4f266bf9-05ba-45bd-f683-d156c06d9acc', to_date('12/8/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4046, 'TERAZOL 3 (Vaginal)', '941472', 'terconazole', '61eab575-94e4-41cb-8045-af73424bb316', to_date('7/31/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4047, 'TERAZOL 7 (Vaginal)', '941472', 'terconazole', '61eab575-94e4-41cb-8045-af73424bb316', to_date('12/22/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4048, 'Terazosin (Oral Pill)', '1341238', 'Terazosin', '24a4243f-0855-44c1-bb78-ba6f14b273f9', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4049, 'Terbinafine (Oral Pill)', '1741309', 'terbinafine', 'aa9f660f-29e6-42fe-ba66-ee9387ce0385', to_date('4/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4050, 'Terbinafine (Topical)', '1741309', 'terbinafine', '2a342421-fc4b-4c21-a394-5ddb9d4a96d5', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4051, 'Terbutaline (Injectable)', '1236744', 'Terbutaline', 'cec31032-f366-4524-9e01-63146e473b2b', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4052, 'Terbutaline (Oral Pill)', '1236744', 'Terbutaline', '879be756-991a-42c5-a381-9c8c2ad1fbdb', to_date('3/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4053, 'Terconazole (Vaginal)', '941472', 'terconazole', '2b3923b5-0a97-428c-b8d2-4a3ceb3447a1', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4054, 'TERRAMYCIN (Oral Pill)', '925952', 'Oxytetracycline', 'd30ffe60-a418-4425-883e-58d10417b9bf', to_date('9/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4055, 'Tesamorelin (Injectable)', '40231628', 'tesamorelin', '3de31cec-31dc-4ac4-9717-367a687d22f2', to_date('3/11/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4056, 'TESSALON PERLES (Oral Pill)', '1136601', 'benzonatate', '8edd07a0-5f5b-9000-bafb-dbf8ff7609d4', to_date('8/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4057, 'TESTOPEL (Implant)', '1636780', 'Testosterone', 'a1741a0b-3d4c-42dc-880d-a06e96cce9ef', to_date('7/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4058, 'Testosterone (Buccal)', '1636780', 'Testosterone', '9af8ef50-f650-44ca-a272-135bfce9daca', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4059, 'Testosterone (Implant)', '1636780', 'Testosterone', 'a1741a0b-3d4c-42dc-880d-a06e96cce9ef', to_date('7/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4060, 'Testosterone (Injectable)', '1636780', 'Testosterone', '786cfd08-40a2-420a-bb29-230db15816bc', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4061, 'TESTRED (Oral Pill)', '1506602', 'Methyltestosterone', '09db5a9d-9662-4bfb-824c-9c9aaad488dc', to_date('4/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4062, '"Tetanus toxoid vaccine, inactivated (Injectable)"', '529411', '"tetanus toxoid vaccine, inactivated"', '669abb62-e995-48f1-a80d-e954f9192fa5', to_date('8/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4063, 'Tetrabenazine (Oral Pill)', '836877', 'Tetrabenazine', '5867189c-17bd-4e70-a079-c4730f9950d1', to_date('7/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4064, 'Tetracaine (Injectable)', '1036884', 'Tetracaine', 'b29124f7-c238-4961-b810-f4e7fabe4bb1', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4065, 'Tetracaine (Ophthalmic)', '1036884', 'Tetracaine', '5c7b1de4-9f55-1d0e-ef6d-b0ba2cbaba79', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4066, 'Tetracycline (Oral Pill)', '1836948', 'Tetracycline', 'd07410b3-37e6-4382-97de-0c2676bc1103', to_date('7/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4067, 'Tetracycline (Topical)', '1836948', 'Tetracycline', '8654de63-4200-439d-b3f9-4a21ef1ad0b4', to_date('5/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4068, 'Tetrahydrocannabinol (Oral Pill)', '1037005', 'Tetrahydrocannabinol', '08adbfd9-789a-4888-a9e2-2a6dac867885', to_date('4/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4069, 'Tetrahydrozoline (Nasal)', '941577', 'tetrahydrozoline', '9bea4aec-219f-46a9-9af4-5baab2552073', to_date('9/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4070, 'Tetrahydrozoline (Ophthalmic)', '941577', 'tetrahydrozoline', '253fb4ed-e6e7-4dee-b2c3-364ccf36dde6', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4071, 'Tetrahydrozoline/Zinc Sulfate (Ophthalmic)', '941577', 'tetrahydrozoline', 'ac928224-804c-40c7-b76a-c573ed33535b', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4072, 'TETRAVISC (Ophthalmic)', '1036884', 'Tetracaine', '8534f262-6755-4a3c-980b-c25a6c9110e4', to_date('5/27/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4073, 'TETTERINE (Topical)', '907879', 'Miconazole', '4de96ed4-7506-4acd-8e8d-ea74bfd18e4a', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4074, 'TEVETEN HCT (Oral Pill)', '1346686', 'eprosartan', 'b1dfcac3-ef66-4d3e-9d58-37d3f516eb31', to_date('1/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4075, 'TEXACORT (Topical)', '975125', 'Hydrocortisone', '25279d46-6bad-471f-8bd6-736d53cfd942', to_date('5/8/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4076, 'THALITONE (Oral Pill)', '1395058', 'Chlorthalidone', 'e2eb7dad-3ea3-439c-dcbb-d1d61aa49dfc', to_date('8/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4077, 'THEO-24 XR (Oral Pill)', '1237049', 'Theophylline', '7a108fa0-c230-475f-be93-6f864b98a410', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4078, 'THEOLAIR (Oral Pill)', '1237049', 'Theophylline', '3829d74e-b3ab-46df-a08b-f0327b63304e', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4079, 'Theophylline (Injectable)', '1237049', 'Theophylline', 'c3bb34c1-89b2-48c3-9ad2-16b4b2bce5f9', to_date('5/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4080, 'Theophylline (Oral Liquid)', '1237049', 'Theophylline', '2676f761-4fe5-40a9-a07d-ed2542847883', to_date('11/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4081, 'Theophylline (Oral Pill)', '1237049', 'Theophylline', '3829d74e-b3ab-46df-a08b-f0327b63304e', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4082, 'Theophylline XR (Oral Pill)', '1237049', 'Theophylline', '1750235a-ad52-4231-abe5-d3c441ba39e8', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4083, 'THERA TEARS (Ophthalmic)', '949279', 'Carboxymethylcellulose', '661d8764-8ae6-4229-9485-867553ee8e16', to_date('7/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4084, 'THERACYS (Topical)', '19023835', '"BCG, Live, Connaught Strain"', '8e456333-5a25-4484-84bf-53ece67c000a', to_date('11/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4085, 'THERASEAL HAND PROTECTION (Topical)', '916662', 'dimethicone', '2c8dc616-20c1-4d33-8a89-9bcdb22b35c8', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4086, 'THERATEARS (Ophthalmic)', '949279', 'Carboxymethylcellulose', '17a01236-130f-495b-9f8d-92b6a23b2dc5', to_date('10/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4087, 'THERMAZENE (Topical)', '966956', 'Silver Sulfadiazine', 'b3767ee9-038e-43ff-88bf-2a4577ac608a', to_date('1/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4088, 'Thiamine (Injectable)', '19137312', 'Thiamine', '4a8ea036-44e8-4329-ae13-3ef4ada26dfc', to_date('9/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4089, 'Thioguanine (Oral Pill)', '1437379', 'Thioguanine', '4490128b-e73f-4849-9d6e-e8591639d771', to_date('3/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4090, 'THIOLA (Oral Pill)', '903031', 'tiopronin', '494a714e-923c-cd57-df6c-12886afb265a', to_date('12/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4091, 'Thioridazine (Oral Pill)', '700299', 'Thioridazine', '9c4bedb4-2d59-4fcd-aad7-fce988cd96d8', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4092, 'Thiothixene (Oral Pill)', '700465', 'Thiothixene', '92a1f215-e063-4c3e-89f5-f56d78a4c64e', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4093, 'Thrombin (Topical)', '1300673', 'Thrombin', 'bcf44467-b1eb-479b-8866-a8ac2c780c22', to_date('5/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4094, 'Thyroid (USP) (Oral Pill)', '1501309', 'thyroid (USP)', 'c815faa3-1d02-4680-96ef-5fad1645e99b', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4095, 'THYROLAR (Oral Pill)', '1501700', 'Thyroxine', '7d028b83-5166-4b2e-b442-ba6cbfefbfd6', to_date('5/17/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4096, 'Thyrotropin-Releasing Hormone (Injectable)', '19001701', 'Thyrotropin-Releasing Hormone', 'af5da799-76bf-415a-9dc7-99c7ddc62bc4', to_date('10/24/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4097, 'tiaGABine (Oral Pill)', '715458', 'tiagabine', '25225511-70b8-4377-ad4f-6629025ac75f', to_date('5/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4098, 'TICE BCG (Topical)', '19086176', '"BCG, Live, Tice Strain"', 'c9b74876-e665-442b-87ad-b7333bc9a67a', to_date('3/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4099, 'Ticlopidine (Oral Pill)', '1302398', 'Ticlopidine', '13d85420-75e2-46e7-93eb-dcd10675cd03', to_date('6/3/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4100, 'TIGAN (Injectable)', '942799', 'trimethobenzamide', '97191d37-7c2e-48c6-91bf-0631fd7b1dd8', to_date('1/4/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4101, 'TIGAN (Oral Pill)', '942799', 'trimethobenzamide', '01a95f6d-f7d6-4ed1-a262-3c5848915252', to_date('3/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4102, 'TIGER BALM (Topical)', '938205', 'Camphor', 'ce703715-4c11-472c-9270-daac87b7be05', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4103, 'TIGER BALM LINIMENT (Topical)', '901656', 'Menthol', '51293a06-5922-4072-ae14-afaba9c1b58e', to_date('4/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4104, 'TIGER BALM MUSCLE RUB (Topical)', '938205', 'Camphor', '24385c6e-11d8-4573-ab23-7ad0fa981a84', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4105, 'Timolol (Ophthalmic)', '902427', 'Timolol', 'c9726422-f794-4d39-a437-17dcb8c0f3b5', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4106, 'Timolol (Oral Pill)', '902427', 'Timolol', '57c62928-63d8-4505-9b9e-c085a3a12c95', to_date('6/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4107, 'TIMOPTIC (Ophthalmic)', '902427', 'Timolol', '15ca19c2-f28b-4703-aa23-5af265af9e8b', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4108, 'Timothy grass pollen extract (Injectable)', '40161488', 'Timothy grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('7/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4109, 'Timothy grass pollen extract (Sublingual)', '40161488', 'Timothy grass pollen extract', '1d7f3e56-c233-47a4-9bcd-80098ffff47d', to_date('2/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4110, 'TINACTIN (Topical)', '902950', 'Tolnaftate', 'ec83cef5-d8ea-4df1-aa2a-08c25040b32c', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4111, 'TINDAMAX (Oral Pill)', '1702559', 'Tinidazole', 'a0d01539-8413-4703-94cc-d221918630a1', to_date('7/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4112, 'TINEACIDE ANTIFUNGAL (Topical)', '914244', 'Undecylenate', '3a7caf9f-2552-41be-a7d4-ac3a18b5a0d5', to_date('3/23/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4113, 'TING (Topical)', '902950', 'Tolnaftate', 'bc89b8ec-4f9d-42d8-a38c-9b6284a54a34', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4114, 'Tinidazole (Oral Pill)', '1702559', 'Tinidazole', 'c8169a92-39e3-4794-87f5-13d31f0f15b3', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4115, 'Tinzaparin (Injectable)', '1308473', 'tinzaparin', '1513b960-d9d1-11de-8a1e-0002a5d5c51b', to_date('10/21/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4116, 'Tioconazole (Vaginal)', '942028', 'tioconazole', '22ac4774-87b4-437f-8520-e4a4ed6e1c55', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4117, 'Tiopronin (Oral Pill)', '903031', 'tiopronin', '494a714e-923c-cd57-df6c-12886afb265a', to_date('12/19/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4118, 'Tirofiban (Injectable)', '19017067', 'tirofiban', 'fe0ced75-ccbf-4d2e-bd0d-b57e60ab913f', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4119, 'TISSEEL (Topical)', '19036781', 'Calcium Chloride', 'e1aca067-0c96-4025-88bc-bd2345a46a30', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4120, 'TITRALAC (Chewable)', '19035704', 'Calcium Carbonate', '5d630381-88f0-4406-af0c-95b86c43f3c9', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4121, 'TITRALAC PLUS (Chewable)', '19035704', 'Calcium Carbonate', '68725b83-46fc-47ae-bb5c-51f080dcacfe', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4122, 'TIVICAY (Oral Pill)', '43560385', 'dolutegravir', '63df5af3-b8ac-4e76-9830-2dbb340af922', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4123, 'TIVORBEX (Oral Pill)', '1178663', 'Indomethacin', '04ca474c-798e-43dd-be7a-1b36720e6a3d', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4124, 'tiZANidine (Oral Pill)', '778474', 'tizanidine', 'd24e0cda-a22f-404f-b861-f85090cef099', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4125, 'TL GARD RX (Oral Pill)', '19111620', 'Folic Acid', '737ba5b9-8aec-4593-a93a-d3d0b4a5c529', to_date('5/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4126, 'TNKASE (Injectable)', '19098548', 'Tenecteplase', '66a1e273-ab59-4e7a-a223-a96b86501f51', to_date('9/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4127, 'Tobacco leaf extract (Injectable)', '40162187', 'tobacco leaf extract', 'd71013ab-718c-4cb0-ae1a-31fdd6db8851', to_date('12/18/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4128, 'TOBI (Inhalant)', '902722', 'Tobramycin', '625a4499-4e46-4f5a-8d0c-d104f520d97e', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4129, 'TOBRADEX (Ophthalmic)', '1518254', 'Dexamethasone', '330ac1f7-d583-454d-96bf-37c5af31a369', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4130, 'TOBRAFLEX (Ophthalmic)', '955583', 'Fluorometholone', 'cbdf11f4-d84c-4c4a-aac2-f8c23304fb02', to_date('3/13/08', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4131, 'Tobramycin (Inhalant)', '902722', 'Tobramycin', 'da1e5afd-d707-4af1-8935-8195ba6d769f', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4132, 'Tobramycin (Injectable)', '902722', 'Tobramycin', '8cfeb84f-193a-458a-bdec-205d9274e1a4', to_date('4/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4133, 'Tobramycin (Ophthalmic)', '902722', 'Tobramycin', 'cdd423c5-a231-47d4-bf51-00b5c29e6a60', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4134, 'TOBREX (Ophthalmic)', '902722', 'Tobramycin', '3d4be22b-7a8c-4247-ac35-143611342de1', to_date('7/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4135, 'Tofacitinib (Oral Pill)', '42904205', 'tofacitinib', '68e3d6b2-7838-4d2d-a417-09d919b43e13', to_date('11/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4136, 'TOLAZamide (Oral Pill)', '1502809', 'Tolazamide', 'f82dcff5-4afa-45d8-bc8c-f0f7c0c96272', to_date('1/23/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4137, 'TOLBUTamide (Oral Pill)', '1502855', 'Tolbutamide', '3995eed8-39ec-ce5e-8cc2-062f93445c8d', to_date('6/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4138, 'Tolcapone (Oral Pill)', '715727', 'tolcapone', 'a0e47a9d-78e7-4523-983a-aa259f221736', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4139, 'Tolmetin (Oral Pill)', '1102917', 'Tolmetin', '6e0228a8-e3d3-4ae9-8873-d7aa3e0dcfee', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4140, 'Tolnaftate (Topical)', '902950', 'Tolnaftate', '7357adcd-437d-4651-8922-6ef830f9f85a', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4141, 'Tolterodine (Oral Pill)', '913782', 'tolterodine', '304023e8-57ad-4dd7-9cf0-a4524623aa6c', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4142, 'TOPAMAX (Oral Pill)', '742267', 'topiramate', 'cea5f748-3127-4d36-83af-9ab3cf58503c', to_date('6/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4143, 'TOPEX (Oral Gel)', '917006', 'Benzocaine', '87083cc6-fedc-4676-84e1-3134f690dfa9', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4144, 'TOPICAL HEMO-STAT (Mucosal)', '957393', 'aluminum chloride', '6223c9d2-5944-4ca1-bf6f-24047a51a5f5', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4145, 'TOPICORT (Topical)', '917336', 'Desoximetasone', '96dfac6f-540f-4b7d-bcee-7e62088ebc93', to_date('10/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4146, 'Topiramate (Oral Pill)', '742267', 'topiramate', 'cea5f748-3127-4d36-83af-9ab3cf58503c', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4147, 'Topotecan (Injectable)', '1378509', 'Topotecan', '996430c0-ee26-4ed9-82b8-a8b645becba6', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4148, 'Toremifene (Oral Pill)', '1342346', 'Toremifene', '2cab8dd1-3a10-48e6-86ce-0e5275ed49e5', to_date('11/29/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4149, 'Torsemide (Injectable)', '942350', 'torsemide', 'f95454ab-33fa-483b-bba3-91d6562765c3', to_date('4/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4150, 'Torsemide (Oral Pill)', '942350', 'torsemide', 'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4151, 'TRADJENTA (Oral Pill)', '40239216', 'Linagliptin', 'dfe327e8-f6ab-41e5-bdef-d520118cd83a', to_date('7/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4152, 'traMADol (Oral Pill)', '1103314', 'Tramadol', 'd5ab4f08-1d12-4c64-b3bf-e72c705aeca8', to_date('8/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4153, 'TRANDATE (Oral Pill)', '1386957', 'Labetalol', 'a4195473-51a9-40f1-8678-1478ebca2d84', to_date('12/7/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4154, 'Trandolapril (Oral Pill)', '1342439', 'trandolapril', '26404e50-011e-4068-9745-647d2de681a3', to_date('7/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4155, 'Tranexamic Acid (Injectable)', '1303425', 'Tranexamic Acid', '6f033f1e-8c78-4c87-b870-6493944315ff', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4156, 'Tranexamic Acid (Oral Pill)', '1303425', 'Tranexamic Acid', 'add851b1-0f2d-46e9-b122-f4f5ff216539', to_date('11/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4157, 'TRANSANOSIL (Topical)', '939881', 'Capsaicin', '14b76eca-29f6-4dbd-890b-f72865877ad3', to_date('8/27/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4158, 'TRANXENE (Oral Pill)', '790253', 'clorazepate', '9c7ab45c-7461-6e4e-ee6d-f0ebe3eb4a28', to_date('8/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4159, 'Tranylcypromine (Oral Pill)', '703470', 'Tranylcypromine', 'cd45db80-3cf3-4714-989b-de11f249bdfb', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4160, 'Trastuzumab (Injectable)', '1387104', 'trastuzumab', '492dbdb2-077e-4064-bff3-372d6af0a7a2', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4161, 'TRASYLOL (Injectable)', '19000729', 'Aprotinin', '8a5982c6-825f-4d05-90f5-1519a7291d15', to_date('5/17/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4162, 'TRAVATAN (Ophthalmic)', '904501', 'travoprost', 'db08d5f3-6713-4372-a66c-fad3018ef5c6', to_date('9/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4163, 'TRAVEL-EASE (Oral Pill)', '994341', 'Meclizine', 'c941f16b-b192-4a10-aabe-cc25ee8cc445', to_date('3/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4164, 'Travoprost (Ophthalmic)', '904501', 'travoprost', 'db08d5f3-6713-4372-a66c-fad3018ef5c6', to_date('9/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4165, 'traZODone (Oral Pill)', '703547', 'Trazodone', '10124262-e443-49a5-a1cc-8cc34c74d953', to_date('3/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4166, 'TRETIN X (Topical)', '903643', 'Tretinoin', '1cecc7e2-00bd-4c63-af1d-723aaf892f60', to_date('8/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4167, 'Tretinoin (Oral Pill)', '903643', 'Tretinoin', '0f81f505-a962-414e-8612-c3ef3b159e9a', to_date('7/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4168, 'Tretinoin (Topical)', '903643', 'Tretinoin', 'ac92dfd3-6517-43d0-b6c1-b86fdf3a761f', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4169, 'TRETTEN (Injectable)', '19106100', 'factor XIII', '8664978e-1814-4930-aca5-97a24455f6df', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4170, 'TREXALL (Oral Pill)', '1305058', 'Methotrexate', 'e942f8db-510f-44d6-acb5-b822196f5e8c', to_date('5/21/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4171, 'TREZIX (Oral Pill)', '1125315', 'Acetaminophen', '63841f53-a567-4102-80b5-3565d9b52373', to_date('7/18/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4172, 'TRI-CHLOR (Topical)', '987009', 'Trichloroacetate', 'd929f1d6-3234-491c-b084-644c91e61302', to_date('10/8/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4173, 'TRI-LUMA (Topical)', '996541', 'fluocinolone', 'a35fa709-5eb5-4429-b38f-f1e0019bf0ee', to_date('4/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4174, 'TRIACIN C (Oral Liquid)', '1201620', 'Codeine', '6cc01bb7-27c5-43c4-8e21-64ecbfbb4fa2', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4175, 'Triamcinolone (Injectable)', '903963', 'Triamcinolone', '53522b35-6215-4e9c-b51d-8b81728e0817', to_date('8/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4176, 'Triamcinolone (Oral Paste)', '903963', 'Triamcinolone', 'b353c8b1-9088-4969-8199-37876f2461cc', to_date('10/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4177, 'Triamcinolone (Topical)', '903963', 'Triamcinolone', '5b1d1510-118f-4b82-9119-386d572971d2', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4178, 'TRIAMINIC COLD AND ALLERGY REFORMULATED JAN 2014 (Oral Liquid)', '1130863', 'Brompheniramine', '0da4b415-6aaf-4c64-9c1c-f59e7edc4db2', to_date('1/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4179, 'TRIAMINIC COUGH & SORE THROAT REFORMULATED JUL 2007 (Oral Liquid)', '1125315', 'Acetaminophen', 'bccbf604-768c-4e20-995a-bb0212374202', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4180, 'TRIAMINIC COUGH AND CONGESTION (Oral Liquid)', '1119510', 'Dextromethorphan', '85cdcb69-2336-4e36-9f24-711d391f3215', to_date('6/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4181, 'TRIAMINIC DAY TIME COLD & COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', '9437b637-fb70-41dd-8ead-d79698a61e22', to_date('7/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4182, 'TRIAMINIC FEVER & PAIN (Oral Liquid)', '1125315', 'Acetaminophen', 'd8b68434-2d0b-4431-b79d-7d6510f50e1b', to_date('10/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4183, 'TRIAMINIC LONG ACTING COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', '83bb1f25-23e8-4827-bfc4-25ff3c87de18', to_date('10/1/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4184, 'TRIAMINIC NIGHT TIME COLD & COUGH (Oral Liquid)', '1129625', 'Diphenhydramine', '40ae8bfc-4007-4483-bb08-cf32f2e802c6', to_date('11/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4185, 'Triamterene (Oral Pill)', '904542', 'Triamterene', 'ffe24e3d-cfe8-4d5a-8213-69f0bbc9f4d5', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4186, 'TRIANEX (Topical)', '903963', 'Triamcinolone', 'cde13809-a606-12ca-aece-f2ae594baa71', to_date('2/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4187, 'Triazolam (Oral Pill)', '704599', 'Triazolam', '6d743386-a8e4-4a3f-ac82-c046896f35ae', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4188, 'Trichloroacetate (Topical)', '987009', 'Trichloroacetate', '1c515490-1d4a-408c-8a99-0f9b34dbe270', to_date('9/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4189, 'Trichophyton mentagrophytes extract (Injectable)', '40167348', 'Trichophyton mentagrophytes extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4190, 'Trichothecium roseum extract (Injectable)', '40175764', 'Trichothecium roseum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4191, 'Triclosan (Soap)', '1704758', 'Triclosan', '439c9213-b6b2-4dd6-bf5c-1d2209cb28c8', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4192, 'Triclosan (Topical)', '1704758', 'Triclosan', '3fc53a6d-15cb-44d0-8e0c-e0ab48a6f748', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4193, 'TRICOR (Oral Pill)', '1551803', 'Fenofibrate', '194cd14a-d952-4507-91be-3f1d5371d3b8', to_date('6/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4194, 'Trientine (Oral Pill)', '19004969', 'Trientine', 'c34f77a7-996b-4470-b5df-d946a7fe5dbe', to_date('1/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4195, 'TRIESENCE (Injectable)', '903963', 'Triamcinolone', '3f045347-3e5e-4bbd-90f8-6c3100985ca5', to_date('6/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4196, 'Trifluoperazine (Oral Pill)', '704984', 'Trifluoperazine', '10b124e8-3167-4b2c-85f1-197b5aa8dabf', to_date('4/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4197, 'Trifluridine (Ophthalmic)', '905078', 'Trifluridine', 'f3a14d86-0ff2-4535-318c-ac8bc8ede42c', to_date('6/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4198, 'Trihexyphenidyl (Oral Liquid)', '705178', 'Trihexyphenidyl', 'd6f08000-e973-4bab-810c-b69f6c8ee4f3', to_date('6/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4199, 'Trihexyphenidyl (Oral Pill)', '705178', 'Trihexyphenidyl', 'd25fa10c-cc9c-4d8c-9896-4ccc544bbbde', to_date('8/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4200, 'Triiodothyronine (Injectable)', '1505346', 'Triiodothyronine', '4cd4baf4-18d2-434f-b80b-4f4b19996cf9', to_date('5/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4201, 'Triiodothyronine (Oral Pill)', '1505346', 'Triiodothyronine', 'fecd164d-1344-4d2f-97a7-ebe972470d2b', to_date('9/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4202, 'TRILEPTAL (Oral Pill)', '718122', 'oxcarbazepine', 'd9741f36-0abd-49b7-9f43-e9700663122b', to_date('2/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4203, 'TRILIPIX (Oral Pill)', '1551803', 'Fenofibrate', '3057fc9c-ff77-43eb-b687-776660423742', to_date('1/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4204, 'Trilostane (Oral Pill)', '19042801', 'trilostane', '22a5e838-c9a3-40d2-84cd-15df6ada913b', to_date('9/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4205, 'Trimethobenzamide (Injectable)', '942799', 'trimethobenzamide', 'c1d3cc1f-f990-42b1-bc42-3551c1bfa12a', to_date('7/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4206, 'Trimethobenzamide (Oral Pill)', '942799', 'trimethobenzamide', '760afbcd-bc81-4595-82c8-ec1cbd7c2b08', to_date('2/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4207, 'Trimethoprim (Oral Liquid)', '1705674', 'Trimethoprim', 'a06ea7d8-a884-4b62-a87f-c36d824f2aa4', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4208, 'Trimethoprim (Oral Pill)', '1705674', 'Trimethoprim', '7d25e3f9-7b0d-452d-953e-f100bb0f2db7', to_date('7/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4209, 'Trimetrexate (Injectable)', '1750928', 'Trimetrexate', 'ad0f8925-f817-4460-aa6b-172a043a440b', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4210, 'Trimipramine (Oral Pill)', '705755', 'Trimipramine', '0177d783-773c-41bf-9db9-eb7e5c64474a', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4211, 'TRIMOX (Oral Pill)', '1713332', 'Amoxicillin', '2f4c571b-a27e-40ef-b0cd-e6e44ac9a15e', to_date('12/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4212, 'TRIOSTAT (Injectable)', '1505346', 'Triiodothyronine', '4cd4baf4-18d2-434f-b80b-4f4b19996cf9', to_date('5/7/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4213, 'TRIPLE PASTE (Topical)', '911064', 'Zinc Oxide', 'f9fd9395-48bc-43be-a3d9-ec7fcad339a9', to_date('1/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4214, 'TRIPLE PASTE AF (Topical)', '907879', 'Miconazole', '8d19b86d-b63c-485f-b143-2bc35f76c659', to_date('11/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4215, 'Triprolidine (Oral Liquid)', '1105889', 'Triprolidine', 'cc466d33-cf3e-4f1c-a794-6d3d79903adf', to_date('3/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4216, 'TRISENOX (Injectable)', '1333379', 'arsenic trioxide', 'dec51fab-3784-deb7-752f-2d4d5692a20f', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4217, 'TRIUMEQ (Oral Pill)', '1736971', 'abacavir', '2997739a-aa91-42aa-a206-a70e2db7b84f', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4218, 'TRIZIVIR (Oral Pill)', '1736971', 'abacavir', '3354e50f-4dc5-413f-b5ae-87353ab8913d', to_date('4/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4219, 'Trolamine salicylate (Topical)', '943116', 'trolamine salicylate', 'e1cfadb7-7370-4735-a87a-071c6eedd87a', to_date('9/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4220, 'TRONOLANE ANESTHETIC (Rectal)', '927478', 'pramoxine', '0d5ba4f1-1178-490d-8524-143d0aa2f0ef', to_date('3/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4221, 'Tropicamide (Ophthalmic)', '906072', 'Tropicamide', '0d4f4a2e-eb00-4c65-b3fa-baf5738d468d', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4222, 'Trospium (Oral Pill)', '991825', 'Trospium', '0ac65eae-b3dd-4cda-aec2-ff1e954a93a4', to_date('5/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4223, 'Trovafloxacin (Oral Pill)', '1712549', 'trovafloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', to_date('7/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4224, 'TROVAN (Oral Pill)', '1712549', 'trovafloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', to_date('7/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4225, 'TROVAN IV (Injectable)', '19018154', 'alatrofloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', to_date('7/13/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4226, 'TRU-MICIN (Topical)', '943116', 'trolamine salicylate', '49c41d92-9c48-4245-b251-13226fb11c94', to_date('6/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4227, 'TRUSOPT (Ophthalmic)', '981709', 'dorzolamide', '26d26f80-aebf-441c-6383-327cb95eae4d', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4228, 'TRUVADA (Oral Pill)', '1703069', 'emtricitabine', 'd0b3d18b-7e5d-49ea-bcaf-8408414e8094', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4229, 'TUBERSOL (Injectable)', '19058274', 'Purified Protein Derivative of Tuberculin', '96d91ba3-9dfe-4420-a835-57647ea30b40', to_date('5/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4230, 'TUCKS HEMORRHOIDAL (Rectal)', '908523', 'Mineral Oil', '347ff421-3ad9-409f-8731-af0183682e12', to_date('8/8/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4231, 'TUCKS SUPPOSITORIES (Rectal)', '1036157', 'Starch', '1b051fc4-bc4c-4eb6-96f8-f40e577c3072', to_date('8/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4232, 'TUMS (Chewable)', '19035704', 'Calcium Carbonate', '91b240f2-856c-44cf-a3de-a6ead2891f0d', to_date('5/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4233, 'TUSNEL C (Oral Liquid)', '1201620', 'Codeine', '403935ac-5111-4f8b-80ae-1bd47ae774c7', to_date('1/31/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4234, 'TUSNEL DIABETIC (Oral Liquid)', '1119510', 'Dextromethorphan', '66b3c094-809e-4d2c-bc15-46563de685cb', to_date('4/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4235, 'TUSSIGON (Oral Pill)', '1101703', 'homatropine', '6c0bba34-07db-42f5-9e5e-ad79b71b4276', to_date('10/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4236, 'TYBOST (Oral Pill)', '42874220', 'cobicistat', '3784c35c-e87f-410c-900b-8fd6313c6010', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4237, 'TYLENOL (Oral Liquid)', '1125315', 'Acetaminophen', 'ad40b276-fbff-4b8d-9197-32345573fa80', to_date('7/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4238, 'TYLENOL (Oral Pill)', '1125315', 'Acetaminophen', '937d3bee-2c37-4dac-a79b-2c2b2075db7d', to_date('8/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4239, 'TYLENOL PM (Oral Pill)', '1125315', 'Acetaminophen', '1b6e88d7-8e18-4838-9cee-db876f14f14f', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4240, 'TYLENOL WITH CODEINE (Oral Pill)', '1125315', 'Acetaminophen', '96847717-e3ff-42ee-a25b-1df72c427572', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4241, 'TYPHIM VI (Injectable)', '532881', '"Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain"', 'ad1fbe7f-2995-45dd-92f3-7baccaab85d9', to_date('4/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4242, '"Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain (Injectable)"', '532881', '"Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain"', 'ad1fbe7f-2995-45dd-92f3-7baccaab85d9', to_date('4/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4243, 'TYZINE (Nasal)', '941577', 'tetrahydrozoline', '9bea4aec-219f-46a9-9af4-5baab2552073', to_date('9/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4244, 'U-CORT (Topical)', '975125', 'Hydrocortisone', '1eb217be-34f1-4b3b-a3a5-4dfb83fb6143', to_date('3/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4245, 'ULESFIA (Topical)', '919681', 'Benzyl Alcohol', 'aeba2488-1ac3-4c02-833c-78a36859f029', to_date('7/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4246, 'Ulipristal (Oral Pill)', '40225722', 'ulipristal', '052bfe45-c485-49e5-8fc4-51990b2efba4', to_date('7/2/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4247, 'ULORIC (Oral Pill)', '19017742', 'febuxostat', '3803df6e-b765-4917-ab0e-4d91a23be47f', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4248, 'ULTIVA (Injectable)', '19016749', 'remifentanil', 'dbc63b6e-f8c5-4fd0-8ec3-4f5e19125313', to_date('3/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4249, 'ULTRACET (Oral Pill)', '1125315', 'Acetaminophen', '2d20df3c-8b5b-4bdf-a49f-ec904522575d', to_date('8/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4250, 'ULTRAM (Oral Pill)', '1103314', 'Tramadol', '288ddb7b-29e4-46c7-9d84-38a188231710', to_date('12/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4251, 'ULTRASAL (Topical)', '964407', 'Salicylic Acid', 'a01a3ccd-d9bc-40b6-b269-cddd6d0e47c5', to_date('10/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4252, 'ULTRAVATE (Topical)', '949759', 'halobetasol', 'b73836e9-7ccc-41bb-b4ef-65ad2d865085', to_date('2/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4253, 'ULTRESA (Oral Pill)', '919204', 'Amylases', '73861076-218d-4f8e-872d-0e0690c374a8', to_date('4/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4254, 'UMECTA (Topical)', '906914', 'Urea', 'fd7b3fe5-8ba6-4808-8ead-1b20a87a2ed2', to_date('1/3/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4255, 'UMECTA PD (Topical)', '787787', 'hyaluronate', 'ce953fdf-a73a-4f7e-8946-959346990626', to_date('12/2/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4256, 'Undecylenate (Topical)', '914244', 'Undecylenate', 'eaedf82d-2fae-4360-8a88-f2f62ae9a18c', to_date('8/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4257, 'UNISOM SLEEP (Oral Disintegrating)', '1129625', 'Diphenhydramine', '9105f4f1-7f94-408d-a025-83afb68dc9f0', to_date('5/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4258, 'UNISOM SLEEP (Oral Pill)', '1129625', 'Diphenhydramine', '17383d22-91cc-4d9e-a0b8-3f7d9a18af83', to_date('3/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4259, 'UNITHROID (Oral Pill)', '1501700', 'Thyroxine', '07562e72-7eaa-4ce6-94f0-e08814787e50', to_date('7/3/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4260, 'UNIVASC (Oral Pill)', '1310756', 'moexipril', 'e16c2ad3-1ce5-48fc-96b2-5d63dc6b68d5', to_date('10/4/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4261, 'URAMAXIN (Topical)', '906914', 'Urea', '67993648-4930-4a98-8d26-5995b4e58b45', to_date('4/27/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4262, 'Urea (Topical)', '906914', 'Urea', '0e5d02d2-fa60-46e9-b45c-9fd5ee51a637', to_date('1/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4263, 'URECHOLINE (Oral Pill)', '937439', 'Bethanechol', '5513ddc8-90c8-4548-8188-5a807465cdc4', to_date('9/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4264, 'URELLE (Oral Pill)', '923672', 'Hyoscyamine', 'd801fc5b-f0df-4347-9b9b-8f439328cdde', to_date('1/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4265, 'URIBEL (Oral Pill)', '923672', 'Hyoscyamine', 'fa2cc334-bd86-46cc-bc6a-12c71303f963', to_date('8/2/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4266, 'URICALM INTENSIVE (Oral Pill)', '1125315', 'Acetaminophen', '99730efd-aa2a-4437-bef2-60aa3f349905', to_date('9/30/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4267, 'UROCIT-K XR (Oral Pill)', '976545', 'potassium citrate', 'd2c923d5-85c1-4bbb-9f93-556080a5ef87', to_date('4/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4268, 'Urofollitropin (Injectable)', '1515417', 'Urofollitropin', '46f7740f-c879-4a77-9a16-2821fd772641', to_date('9/28/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4269, 'UROGESIC BLUE REFORMULATED APR 2012 (Oral Pill)', '923672', 'Hyoscyamine', '36527dcb-dc17-469c-8286-b752b0d8badf', to_date('2/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4270, 'URSO (Oral Pill)', '988095', 'Ursodeoxycholate', 'e8fc4fc2-fe5c-4cba-b6e0-5ceaf2157a61', to_date('6/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4271, 'Ursodeoxycholate (Oral Pill)', '988095', 'Ursodeoxycholate', 'c9aa0223-3ea4-4cb7-b53b-f35e5a04cec7', to_date('8/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4272, 'UTA CAPSULE (Oral Pill)', '923672', 'Hyoscyamine', '206ac12b-a081-4e37-aa0e-73b8794608d8', to_date('7/19/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4273, 'UVADEX (Injectable)', '905223', 'Methoxsalen', '5ad333bd-845f-43f8-9ecf-43491f26c7c7', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4274, 'VAGIFEM (Vaginal)', '1548195', 'Estradiol', 'd67888ac-5041-4758-88db-845a41f67df4', to_date('3/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4275, 'VAGISIL ORIGINAL FORMULA (Vaginal)', '917006', 'Benzocaine', '4929a228-44bc-4f1c-b1d9-a82132c5c278', to_date('9/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4276, 'VAGISTAT (Vaginal)', '907879', 'Miconazole', 'c91cba6b-61fc-4708-9edb-3ba086cc1038', to_date('9/30/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4277, 'valACYclovir (Oral Pill)', '1717704', 'valacyclovir', 'c31fdda3-217c-c452-eb9b-aba705456aa1', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4278, 'VALCHLOR (Topical)', '1394337', 'Mechlorethamine', '706bd420-2f32-11e0-aaee-0002a5d5c51b', to_date('10/21/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4279, 'VALCYTE (Oral Liquid)', '1703063', 'valganciclovir', 'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4280, 'VALCYTE (Oral Pill)', '1703063', 'valganciclovir', 'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4281, 'Valdecoxib (Oral Pill)', '1103374', 'valdecoxib', 'caf64301-262c-45ca-acd1-a9d6696c584e', to_date('3/23/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4282, 'valGANciclovir (Oral Liquid)', '1703063', 'valganciclovir', 'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4283, 'valGANciclovir (Oral Pill)', '1703063', 'valganciclovir', '4db6dd63-e56b-45a4-86b2-ee125a1854a0', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4284, 'VALIUM (Oral Pill)', '723013', 'Diazepam', '957f79d9-2bcb-4e6b-885d-fa34851f062d', to_date('1/29/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4285, 'Valproate (Injectable)', '745466', 'Valproate', '7a687b2f-246d-4736-a20c-92421c263268', to_date('6/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4286, 'Valproate (Oral Liquid)', '745466', 'Valproate', 'caf12ea3-06c8-44c1-9e89-3ecaff89a22b', to_date('3/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4287, 'Valproate (Oral Pill)', '745466', 'Valproate', 'f738ddad-fef0-43cb-b791-b046fdcec311', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4288, 'Valsartan (Oral Pill)', '1308842', 'valsartan', '8e4382de-df78-4821-b11e-c423442a7ff8', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4289, 'VALTREX (Oral Pill)', '1717704', 'valacyclovir', 'b4450539-78ec-4e8a-8cfc-56dcde7984a0', to_date('6/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4290, 'VANACOF-8 (Oral Liquid)', '1150886', 'chlophedianol', 'fc6b92e8-932a-4040-b424-c2cb5b1b503c', to_date('9/10/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4291, 'VANCOCIN (Oral Pill)', '1707687', 'Vancomycin', 'b7f386c7-8b78-4751-b6ae-e171925c2d54', to_date('8/6/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4292, 'Vancomycin (Injectable)', '1707687', 'Vancomycin', 'b01aaa02-8f1d-4b57-96a5-337503428af1', to_date('8/18/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4293, 'Vancomycin (Oral Pill)', '1707687', 'Vancomycin', 'a078d9c2-f89c-4f9f-8ded-60ffb2983c3f', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4294, 'VANDAZOLE (Vaginal)', '1707164', 'Metronidazole', '27d71471-8f89-4a1e-8c55-020a58961454', to_date('10/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4295, 'Vandetanib (Oral Pill)', '40238052', 'Vandetanib', 'd2a87691-c9ad-4753-97a1-311fccfe6515', to_date('2/13/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4296, 'VANIPLY (Topical)', '916662', 'dimethicone', '53f53dc6-21e3-4f55-bc0f-b0615dd8c8cf', to_date('2/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4297, 'VANIQA (Topical)', '978236', 'Eflornithine', 'a2c3d206-b893-4f65-a2f6-c11fa9a0e486', to_date('9/10/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4298, 'VANOS (Topical)', '955252', 'Fluocinonide', '34b91547-31f6-4043-b91c-16c9ebd81349', to_date('12/10/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4299, 'VANOXIDE-HC (Topical)', '918172', 'Benzoyl Peroxide', '1f0edbd9-103e-4a49-b7a8-6552ef172c13', to_date('10/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4300, 'VAPRISOL (Injectable)', '19010927', 'conivaptan', '5150d9d9-01dc-4a52-9858-214c66d8caea', to_date('5/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4301, 'Vardenafil (Oral Disintegrating)', '1311276', 'vardenafil', '0e5139d8-bf61-4f21-a36b-81b96b9b07d1', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4302, 'Vardenafil (Oral Pill)', '1311276', 'vardenafil', 'b3bbc16e-8305-469a-9dc3-8e698339a98b', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4303, 'Varenicline (Oral Pill)', '780442', 'varenicline', '2468ba8d-4c77-4ea0-88d8-b64497a72222', to_date('9/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4304, 'Varicella-zoster immune globulin (Injectable)', '543291', 'varicella-zoster immune globulin', 'ac96a331-e2ff-4839-a4d5-fda3d858c969', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4305, 'VARITHENA (Injectable)', '40175900', 'polidocanol', 'dfd6b4a0-b0dc-11e2-9e96-0800200c9a66', to_date('3/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4306, 'VARIZIG (Injectable)', '543291', 'varicella-zoster immune globulin', 'ac96a331-e2ff-4839-a4d5-fda3d858c969', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4307, 'VASELINE (Topical)', '19033354', 'Petrolatum', 'eb182cdf-985e-4039-b426-fcbaef1ef78d', to_date('12/8/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4308, 'VASOCON (Ophthalmic)', '914533', 'Naphazoline', '0f25812f-96ab-44f4-bacf-2eb012cbddc7', to_date('9/18/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4309, 'Vasopressin (USP) (Injectable)', '1507835', 'Vasopressin (USP)', '977ab16e-c2c1-4aa2-98cb-af065b37c944', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4310, 'VASOSTRICT (Injectable)', '1507835', 'Vasopressin (USP)', 'b1147beb-743e-4c62-8927-91192447f8b8', to_date('10/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4311, 'VASOTEC (Oral Pill)', '1341927', 'Enalapril', 'da4704d6-dc9e-4539-809e-4bdbc898043a', to_date('10/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4312, 'VECAMYL (Oral Pill)', '1394333', 'Mecamylamine', '0774cc48-7287-4093-91d6-9df41a81408a', to_date('6/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4313, 'VECTICAL (Topical)', '19035631', 'Calcitriol', 'a1567da9-af74-4afd-9ac5-8b53ec5d7cbf', to_date('3/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4314, 'Vecuronium (Injectable)', '19012598', 'Vecuronium', '96e69586-e9af-4b07-990f-12d93faa7edd', to_date('6/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4315, 'Vedolizumab (Injectable)', '45774639', 'vedolizumab', '6e94621c-1a95-4af9-98d1-52b9e6f1949c', to_date('5/23/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4316, 'VELETRI (Injectable)', '1354118', 'Epoprostenol', 'df502787-46ec-4dd1-a2c0-be90f6d95a5d', to_date('7/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4317, 'Velvet grass pollen extract (Injectable)', '40162058', 'velvet grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4318, 'Venlafaxine (Oral Pill)', '743670', 'venlafaxine', '6490e629-062b-4caa-a0aa-3d9c75c693d7', to_date('9/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4319, 'VENOFER (Injectable)', '1395773', '"ferric oxide, saccharated"', 'f1ab1a22-2b99-4d27-8b5a-9c3bcd5e3040', to_date('1/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4320, 'Verapamil (Oral Pill)', '1307863', 'Verapamil', '0c604923-4a37-45ac-ad93-3610a5eadc16', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4321, 'Verapamil XR (Oral Pill)', '1307863', 'Verapamil', '887b91f5-f117-47e6-8d59-87ac61d17175', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4322, 'VERSACLOZ (Oral Liquid)', '800878', 'Clozapine', '693cb9d4-39db-4ecf-9eae-b01f06f8d5d1', to_date('9/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4323, 'Verteporfin (Injectable)', '912803', 'Verteporfin', '952f4c80-50b1-4308-9ee6-311ffefb13df', to_date('1/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4324, 'VERTICALM (Oral Pill)', '994341', 'Meclizine', '5ce8022e-9d09-4e38-b952-9c7b118ac0fa', to_date('4/16/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4325, 'Verticillium albo-atrum extract (Injectable)', '40175719', 'Verticillium albo-atrum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4326, 'VESICARE (Oral Pill)', '916005', 'Solifenacin', 'e433dc68-6b2a-4c48-beae-4ec946f1ff1e', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4327, 'VFEND (Injectable)', '1714277', 'voriconazole', '08d08721-1f4c-478a-8abf-d9c402d50553', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4328, 'VFEND (Oral Pill)', '1714277', 'voriconazole', 'ac3e3964-90c0-44dd-800c-ec9606629572', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4329, 'VIAGRA (Oral Pill)', '1316262', 'sildenafil', '1da7847b-16e4-4bf1-957f-3894d023b339', to_date('5/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4330, 'VIBATIV (Injectable)', '40166675', 'telavancin', '9fc67b76-9ba1-45ec-9749-ca3f3a6477d9', to_date('12/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4331, 'VICKS VAPODROPS (Oral Lozenge)', '901656', 'Menthol', 'ff232f72-1ccd-457a-a64d-66c89fd9a510', to_date('10/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4332, 'VICKS VAPORUB (Topical)', '938205', 'Camphor', 'e69a7c9b-fd04-4109-a7c8-6edfd83855fc', to_date('10/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4333, 'VICKS VAPOSTEAM (Inhalant)', '938205', 'Camphor', '196a38e2-efe5-4fc8-a5bd-eb9e9f07ba8b', to_date('10/12/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4334, 'VICODIN (Oral Pill)', '1125315', 'Acetaminophen', '496ed99b-7bce-4ade-b7c3-6c59feebce6f', to_date('5/16/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4335, 'VIDAZA (Injectable)', '1314865', 'Azacitidine', 'e437efe0-9c6a-4f87-b3b4-de90443b095f', to_date('12/23/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4336, 'VIGAMOX (Ophthalmic)', '1716903', 'moxifloxacin', '68cca7e1-120c-4ac6-8851-15a17e11bd9f', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4337, 'VIIBRYD (Oral Pill)', '40234834', 'vilazodone', 'bfef9e19-d0f5-40fa-954c-b73c812eb242', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4338, 'Vilazodone (Oral Pill)', '40234834', 'vilazodone', 'bfef9e19-d0f5-40fa-954c-b73c812eb242', to_date('9/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4339, 'VIMOVO (Oral Pill)', '904453', 'Esomeprazole', 'baa47781-7151-4c75-a9a2-d2eac0a7d55e', to_date('6/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4340, 'vinBLAStine (Injectable)', '19008264', 'Vinblastine', 'f073b58e-56d6-4c8d-a2ce-b37719402d77', to_date('1/25/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4341, 'VINCASAR (Injectable)', '1308290', 'Vincristine', '01cee93f-3ab9-44fa-8c9a-dd5958fd2db9', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4342, 'vinCRIStine (Injectable)', '1308290', 'Vincristine', '01cee93f-3ab9-44fa-8c9a-dd5958fd2db9', to_date('10/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4343, 'Vincristine liposome (Injectable)', '42874135', 'vincristine liposome', 'a1869e23-b93b-4407-843b-4b830319d82e', to_date('1/14/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4344, 'Vinorelbine (Injectable)', '1343346', 'vinorelbine', 'dd3dcc9a-e40c-4677-9ee6-f318e7c7d835', to_date('1/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4345, 'VIOKACE (Oral Pill)', '919204', 'Amylases', 'd85c7e20-4e1d-43cd-a64b-ced3bda70eed', to_date('5/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4346, 'VIRACEPT (Oral Pill)', '1715472', 'Nelfinavir', '84948e6a-971f-4e86-928e-7d32a1883a23', to_date('3/28/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4347, 'VIRAMUNE (Oral Pill)', '1769389', 'Nevirapine', '46fb9dbc-5345-48a4-a0ec-75039622c76c', to_date('6/11/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4348, 'VIREAD (Oral Pill)', '1710281', 'tenofovir disoproxil', 'e122435e-cd0b-4c90-940a-b7a0d090d866', to_date('4/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4349, 'VIROPTIC (Ophthalmic)', '905078', 'Trifluridine', 'f3a14d86-0ff2-4535-318c-ac8bc8ede42c', to_date('6/26/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4350, 'VISICOL (Oral Pill)', '991710', '"Sodium Phosphate, Dibasic"', '57ccd52e-5b13-4b39-8aa0-ebecc49a7db4', to_date('12/15/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4351, 'VISINE AC (Ophthalmic)', '941577', 'tetrahydrozoline', '159f0bae-7a3d-42d8-8572-aebcabae86ba', to_date('9/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4352, 'VISINE ADVANCED RELIEF (Ophthalmic)', '1319156', 'Dextran 70', '619c2e09-aa29-4225-89b9-d2582f89ebe9', to_date('1/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4353, 'VISINE PURE TEARS (Ophthalmic)', '961145', 'Glycerin', 'fe902038-7afc-4c54-93fd-1744ca9c659e', to_date('9/21/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4354, 'VISINE TIRED EYE RELIEF (Ophthalmic)', '961145', 'Glycerin', '2d3f9d75-72e8-47c9-bc73-eabc827b2a11', to_date('4/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4355, 'VISINE-A (Ophthalmic)', '914533', 'Naphazoline', '82500e4c-bc01-4ce0-80d8-6e9f0be99163', to_date('4/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4356, 'VISKEN (Oral Pill)', '1345858', 'Pindolol', '07fe9cc3-1ef2-420c-b45d-7f1e894b6ef9', to_date('12/1/06', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4357, 'Vismodegib (Oral Pill)', '42709321', 'vismodegib', 'eb368bb6-80e3-4df9-8a85-91df0a2ada6a', to_date('6/5/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4358, 'VISTARIL (Oral Pill)', '777221', 'Hydroxyzine', 'c271f97f-040e-492b-9194-2c8b74675a95', to_date('5/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4359, 'VISUDYNE (Injectable)', '912803', 'Verteporfin', '952f4c80-50b1-4308-9ee6-311ffefb13df', to_date('1/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4360, 'Vitamin B 12 (Injectable)', '1308738', 'Vitamin B 12', '74141034-87b2-4401-b100-44aee4849fe8', to_date('7/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4361, 'Vitamin B 12 (Nasal)', '1308738', 'Vitamin B 12', 'ee2b4869-cd13-489b-b12f-1ce4fe081157', to_date('5/24/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4362, 'Vitamin B6 (Oral Pill)', '1353228', 'Vitamin B6', 'a524c0ff-4893-4df0-aaca-7f690b2bbb13', to_date('12/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4363, 'Vitamin K 1 (Injectable)', '19044727', 'Vitamin K 1', 'b08d2ba5-c3c5-47ce-a9d6-64d7cee9483b', to_date('4/29/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4364, 'Vitamin K 1 (Oral Pill)', '19044727', 'Vitamin K 1', '9b9be805-15a6-4391-96d7-062056567d5b', to_date('7/7/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4365, 'VITEKTA (Oral Pill)', '42874212', 'elvitegravir', 'be87c3bc-97bb-49cb-8053-9b0c756a1965', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4366, 'VITRASE (Injectable)', '19073699', 'Hyaluronidase', '21fbd12e-4a12-4ad1-ad01-964cd5ec9996', to_date('1/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4367, 'VIVACAINE (Injectable)', '732893', 'Bupivacaine', 'b4c60d8e-e350-45b2-9d6b-5815eeb6c994', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4368, 'VIVAGLOBIN (Injectable)', '19117912', 'Immunoglobulin G', '88eac3b8-55a5-4451-9d25-c30e43ab7068', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4369, 'VIVARIN (Oral Pill)', '1134439', 'Caffeine', '587358ab-e28c-11e3-8b68-0800200c9a66', to_date('6/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4370, 'VOLTAREN (Topical)', '1124300', 'Diclofenac', '2280a305-34bd-4f9c-8f31-d6bb6fad90d5', to_date('9/3/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4371, 'VORAXAZE (Injectable)', '42709319', 'glucarpidase', 'acaef5a6-b740-40e3-8ffe-74a75c74745c', to_date('4/8/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4372, 'Voriconazole (Injectable)', '1714277', 'voriconazole', '08d08721-1f4c-478a-8abf-d9c402d50553', to_date('4/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4373, 'Voriconazole (Oral Liquid)', '1714277', 'voriconazole', '74f51144-c228-440e-8043-c3ec9cb1b42e', to_date('3/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4374, 'Voriconazole (Oral Pill)', '1714277', 'voriconazole', 'f1889599-be14-49af-8781-5594e9bd026b', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4375, 'Vortioxetine (Oral Pill)', '44507700', 'vortioxetine', '4b0700c9-b417-4c3a-b36f-de461e125bd3', to_date('9/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4376, 'VUSION (Topical)', '907879', 'Miconazole', '8d8aaac5-3203-4ade-ae74-e2ea469dae18', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4377, 'VYTONE (Topical)', '975125', 'Hydrocortisone', '3d7278ee-2c8e-4df1-9372-d43403122945', to_date('9/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4378, 'VYTORIN (Oral Pill)', '1526475', 'ezetimibe', '65e1c3ae-a462-4345-8a28-c7d2c0388af8', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4379, 'VYVANSE (Oral Pill)', '709567', 'Lisdexamfetamine', 'a310fc51-2743-4755-8398-fed5402283f6', to_date('1/18/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4380, 'WAL ZYR 24 HOUR ALLERGY (Oral Liquid)', '1149196', 'Cetirizine', '416d3ef9-7d36-4f58-815e-178e17d10521', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4381, 'WAL-ACT (Oral Pill)', '1154332', 'Pseudoephedrine', '7f1ff0eb-78e9-465d-9ec9-a900fe8bd9c4', to_date('4/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4382, 'WAL-DRYL (Topical)', '1129625', 'Diphenhydramine', '0c8d5ee1-96ce-407f-947f-dd98f35fc8ad', to_date('3/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4383, 'WAL-DRYL ALLERGY (Oral Disintegrating)', '1129625', 'Diphenhydramine', '826c5868-c9bf-42b2-a97e-2e7ae6fae057', to_date('7/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4384, 'WAL-DRYL ALLERGY (Oral Pill)', '1129625', 'Diphenhydramine', 'b484db36-8460-4ea7-b9f5-71cc663b7d77', to_date('7/27/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4385, 'WAL-DRYL CHILDRENS (Oral Liquid)', '1129625', 'Diphenhydramine', '53e6f72d-15a4-4efe-8b1f-5753fed53df8', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4386, 'WAL-DRYL-D (Oral Pill)', '1129625', 'Diphenhydramine', 'd8ed0a4f-c711-4517-b667-3698e9a5699a', to_date('3/22/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4387, 'WAL-FEX (Oral Pill)', '1153428', 'fexofenadine', '15ad58b4-4056-4602-a663-d600224ae92d', to_date('8/7/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4388, 'WAL-FINATE-D (Oral Pill)', '1192710', 'Chlorpheniramine', '6c6a8a9f-7af6-4674-9dac-e17c02759359', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4389, 'WAL-ITIN (Oral Liquid)', '1107830', 'Loratadine', 'bb7392d6-77b9-42d3-82d2-8b21715774c8', to_date('1/24/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4390, 'WAL-ITIN (Oral Pill)', '1107830', 'Loratadine', '84d752d2-33e4-4b69-a015-8b744f5f8d3c', to_date('10/15/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4391, 'WAL-PHED (Oral Pill)', '1154332', 'Pseudoephedrine', '54cc6eff-a5aa-4574-97a0-c2e5295cc840', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4392, 'WAL-PHED PE (Oral Pill)', '1135766', 'Phenylephrine', 'b028c23d-4527-47d8-b3e1-04dc6cb16604', to_date('10/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4393, 'WAL-PROFEN COLD AND SINUS (Oral Pill)', '1177480', 'Ibuprofen', 'faa26964-a140-4d30-ab1e-19f49f9458ac', to_date('11/10/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4394, 'WAL-SLEEP Z (Oral Pill)', '1129625', 'Diphenhydramine', 'cfb67ead-61f9-4d0f-b2db-792b8df3d148', to_date('12/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4395, 'WAL-TAP CHILDREN''S COLD & ALLERGY (Oral Liquid)', '1130863', 'Brompheniramine', '3f438f28-d1ad-44da-a573-f1b0824b051c', to_date('4/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4396, 'WAL-TUSSIN CHEST CONGESTION (Oral Liquid)', '1163944', 'Guaifenesin', '2a61f2f5-75f5-4b00-bc02-8492180f28b2', to_date('8/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4397, 'WAL-TUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', '21119906-3de1-4bee-b656-cec1f30bdd17', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4398, 'WAL-ZAN (Oral Pill)', '961047', 'Ranitidine', '94d7a63a-8df6-e260-80dd-67e8286e3ce5', to_date('8/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4399, 'WAL-ZYR (Oral Pill)', '1149196', 'Cetirizine', '16625a43-22c1-4754-a7bd-ccc262e2dbd5', to_date('1/28/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4400, 'WAL-ZYR ITCHY EYE (Ophthalmic)', '986117', 'Ketotifen', '123101a3-ee3c-483a-a347-7200d4c8756d', to_date('12/6/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4401, 'Warfarin (Oral Pill)', '1310149', 'Warfarin', 'de5e4ed4-e9a5-4784-b512-b40199f17bd8', to_date('8/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4402, 'Water (Injectable)', '19010309', 'Water', 'ccadcf46-6a6f-436b-9bbc-17e2983a335f', to_date('5/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4403, 'Water (Irrigation)', '19010309', 'Water', 'fb20b834-4ca2-4ef0-ab16-8c7e1e3cd3b9', to_date('8/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4404, 'Water (Ophthalmic)', '19010309', 'Water', '6119892d-ce34-4b3e-9a3e-3f8a94f3fbca', to_date('10/1/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4405, 'Weakleaf bur ragweed pollen extract (Injectable)', '40242456', 'weakleaf bur ragweed pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4406, 'WELCHOL (Oral Liquid)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', to_date('2/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4407, 'WELCHOL (Oral Pill)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', to_date('2/14/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4408, 'WELLBUTRIN (Oral Pill)', '750982', 'Bupropion', 'fb118c90-41b7-4bc9-a82f-a4a415faabbb', to_date('12/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4409, 'Western black willow pollen extract (Injectable)', '40228767', 'western black willow pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4410, 'Western ragweed pollen extract (Injectable)', '40162070', 'western ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4411, 'Western sycamore pollen extract (Injectable)', '40162074', 'western sycamore pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4412, 'White (mexican) dock pollen extract (Injectable)', '40228792', 'white (mexican) dock pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4413, 'White hickory pollen extract (Injectable)', '40162128', 'white hickory pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4414, 'White poplar pollen extract (Injectable)', '40162140', 'white poplar pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4415, 'White sweet clover pollen extract (Injectable)', '40228755', 'white sweet clover pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4416, 'White sweet clover pollen extract/Yellow sweet clover pollen extract (Injectable)', '40228755', 'white sweet clover pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4417, 'White-rot fungus extract (Injectable)', '40175955', 'white-rot fungus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', to_date('11/23/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4418, 'Witch Hazel (Topical)', '959196', 'Witch Hazel', '8492ef49-db8d-46a2-9a92-c4d908c02e1b', to_date('7/16/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4419, 'XALATAN (Ophthalmic)', '954688', 'latanoprost', '0f4881ec-2984-4853-bc25-5b14c3b79da7', to_date('4/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4420, 'XARELTO (Oral Pill)', '40241331', 'Rivaroxaban', '10db92f9-2300-4a80-836b-673e1ae91610', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4421, 'XELJANZ (Oral Pill)', '42904205', 'tofacitinib', '68e3d6b2-7838-4d2d-a417-09d919b43e13', to_date('11/9/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4422, 'XELODA (Oral Pill)', '1337620', 'capecitabine', 'a732b303-9bbd-42ba-a7c5-61c21629ba93', to_date('6/11/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4423, 'XENICAL (Oral Pill)', '741530', 'orlistat', 'a9c47f08-bd02-4731-aaf7-42173155b2d0', to_date('6/16/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4424, 'XERAC AC (Topical)', '957393', 'aluminum chloride', '59e37deb-01da-465f-b806-ff1a76255e71', to_date('4/14/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4425, 'XERESE (Topical)', '1703687', 'Acyclovir', '3b6ac164-0f1e-4f36-94a1-1fdb07d710f5', to_date('12/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4426, 'XIFAXAN (Oral Pill)', '1735947', 'rifaximin', '523f0320-cc73-445a-a48d-7a181c182307', to_date('8/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4427, 'XODOL (Oral Pill)', '1125315', 'Acetaminophen', 'c129d9d2-5511-4e14-bd97-6b824ffe0809', to_date('12/11/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4428, 'XOFIGO (Injectable)', '43526934', 'RADIUM CHLORIDE RA-223', 'a398400e-bd31-41a9-9696-4f7c06569ede', to_date('5/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4429, 'XOLEGEL (Topical)', '985708', 'Ketoconazole', '855e42bb-b57f-4772-bffa-d766ddcc46ce', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4430, 'XOLIDO (Topical)', '989878', 'Lidocaine', 'f2b463d7-3fcf-4b2c-8ba2-8e51e3290de2', to_date('8/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4431, 'XOLOX (Oral Pill)', '1125315', 'Acetaminophen', '35b99e65-32d3-43bc-89d9-2e7c7838aa14', to_date('4/22/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4432, 'XOPENEX (Inhalant)', '1192218', 'Levalbuterol', '7e2644e6-36c5-4988-8e52-bec90e2cd2f0', to_date('5/19/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4433, 'XOTEN-C (Topical)', '939881', 'Capsaicin', '1dcb64fd-6bc6-4375-8d30-4462e2407934', to_date('8/8/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4434, 'XTANDI (Oral Pill)', '42900250', 'enzalutamide', 'b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf', to_date('10/9/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4435, 'XYLOCAINE (Injectable)', '989878', 'Lidocaine', '57964c72-5ffe-4548-bca0-a5b0ca57ecb1', to_date('9/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4436, 'XYLOCAINE (Topical)', '989878', 'Lidocaine', 'b2adbf5d-dccd-41ff-9f12-4e606ccb541f', to_date('8/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4437, 'XYLOCAINE WITH EPINEPHRINE (Injectable)', '1343916', 'Epinephrine', '14b55cf9-f7cd-4bb4-a7c5-aba61abadef1', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4438, 'Xylometazoline (Nasal)', '943852', 'xylometazoline', 'b70ba985-2894-493f-a4cf-c9102fe36d97', to_date('12/17/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4439, 'XYREM (Oral Liquid)', '769935', 'Sodium Oxybate', '926eb076-a4a8-45e4-91ef-411f0aa4f3ca', to_date('9/21/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4440, 'XYZAL (Oral Pill)', '1136422', 'levocetirizine', '371ca86d-7ffd-4f20-b6c6-af0a9ff7362f', to_date('5/14/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4441, 'Yellow birch pollen extract (Injectable)', '40172908', 'yellow birch pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', to_date('11/24/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4442, 'Yellow dock pollen extract (Injectable)', '40162170', 'yellow dock pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', to_date('9/11/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4443, 'Yellow sweet clover pollen extract (Injectable)', '40228782', 'yellow sweet clover pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', to_date('11/19/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4444, '"Yellow-Fever Virus Vaccine, 17D-204 strain (Injectable)"', '532274', '"Yellow-Fever Virus Vaccine, 17D-204 strain"', '613aaac9-ec18-4b22-addb-599e1193e6f5', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4445, 'YF-VAX (Injectable)', '532274', '"Yellow-Fever Virus Vaccine, 17D-204 strain"', '613aaac9-ec18-4b22-addb-599e1193e6f5', to_date('6/6/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4446, 'Z TUSS AC (Oral Liquid)', '1192710', 'Chlorpheniramine', 'e61129db-2ee2-4e0c-ab2b-c5f26e62abfc', to_date('10/3/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4447, 'Z-SLEEP (Oral Liquid)', '1129625', 'Diphenhydramine', '5cd03e60-877a-41f6-a10c-1c90a29ea762', to_date('11/4/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4448, 'Z-SLEEP (Oral Pill)', '1129625', 'Diphenhydramine', 'd6679628-990d-47d3-857e-d87c2a6cd860', to_date('10/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4449, 'ZADITOR (Ophthalmic)', '986117', 'Ketotifen', 'ac66b1e4-c2b0-a4c3-09e3-ebd44a2f7c9f', to_date('8/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4450, 'Zafirlukast (Oral Pill)', '1111706', 'zafirlukast', 'fb546f57-cd2f-4cbf-8c54-fbc23d47fe0f', to_date('6/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4451, 'Zaleplon (Oral Pill)', '720727', 'zaleplon', '0d1d5797-6a7f-4a25-b13d-009224cc59c1', to_date('8/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4452, 'ZANAFLEX (Oral Pill)', '778474', 'tizanidine', 'b581d63f-61cb-41b6-a7ca-24bd0b32a8ae', to_date('4/28/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4453, 'ZANOSAR (Injectable)', '19136210', 'Streptozocin', '15d161ed-9e7b-4c92-ba45-0556d2423e67', to_date('9/7/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4454, 'ZANTAC (Injectable)', '961047', 'Ranitidine', 'da7dbbe1-4f2d-4466-9573-8d239d112998', to_date('7/2/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4455, 'ZANTAC (Oral Pill)', '961047', 'Ranitidine', '4da36a98-7363-4a8a-9bfe-5dfa7d2e1268', to_date('2/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4456, 'ZAROXOLYN (Oral Pill)', '907013', 'Metolazone', '16026409-e821-4680-a114-24c1761d6690', to_date('5/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4457, 'ZAVESCA (Oral Pill)', '19045272', 'Miglustat', '817892d1-ee12-4632-85fc-57ccdf16d7b8', to_date('7/30/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4458, 'ZAZOLE (Vaginal)', '941472', 'terconazole', 'f0a917c7-bcc9-4860-b0e8-c7592212f40e', to_date('3/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4459, 'ZEASORB (Topical)', '907879', 'Miconazole', 'c8260a34-ea4d-46d9-b9de-0cdd689be5c9', to_date('11/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4460, 'ZEBETA (Oral Pill)', '1338005', 'Bisoprolol', 'a11548a0-9c0f-4729-907c-75d8f99a6c85', to_date('12/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4461, 'ZEBUTAL (Oral Pill)', '1125315', 'Acetaminophen', 'ac7e8ce7-088f-4d9c-ad52-2af60436d836', to_date('1/27/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4462, 'ZECUITY (Transdermal)', '1140643', 'Sumatriptan', '806a07a0-e042-11df-9548-0002a5d5c51b', to_date('8/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4463, 'ZEGERID REFORMULATED AUG 2006 (Oral Pill)', '923645', 'Omeprazole', '32bed6d8-8a9a-4fb0-a2f6-045892011ee4', to_date('7/17/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4464, 'ZEGERID WITH MAGNESIUM HYDROXIDE (Chewable)', '992956', 'Magnesium Hydroxide', 'cc8ef530-dd8c-40f5-af7e-4622c9e01d52', to_date('3/19/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4465, 'ZELAPAR (Oral Disintegrating)', '766209', 'Selegiline', '380d7717-2a79-42f3-a712-efe5e7696ba0', to_date('1/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4466, 'ZENATANE (Oral Pill)', '984232', 'Isotretinoin', '517810a4-76bb-4739-893f-1f2ba94a5d0c', to_date('12/24/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4467, 'ZENCIA WASH (Soap)', '1036252', 'Sulfacetamide', 'f786db9a-b8b7-4696-8e64-33749576a076', to_date('8/11/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4468, 'ZENZEDI (Oral Pill)', '719311', 'Dextroamphetamine', 'd6394df5-f2c9-47eb-b57e-f3e9cfd94f84', to_date('5/6/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4469, 'ZERIT (Oral Pill)', '1781406', 'Stavudine', '8bb73c56-74cb-4602-b9a3-57bd1082b434', to_date('8/13/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4470, 'ZESTORETIC (Oral Pill)', '974166', 'Hydrochlorothiazide', '0d3a966f-f937-05a8-a90f-5aa52ebbd613', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4471, 'ZESTRIL (Oral Pill)', '1308216', 'Lisinopril', 'fd4889db-5565-4a68-ac2e-3eee62ff8353', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4472, 'ZETIA (Oral Pill)', '1526475', 'ezetimibe', 'd3f0f926-6014-45ab-9cad-54b22c6ff4dc', to_date('5/20/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4473, 'ZFLEX (Oral Pill)', '1125315', 'Acetaminophen', '4b04b21b-ee68-4c59-91ad-57c3d84e2b09', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4474, 'ZIAC (Oral Pill)', '1338005', 'Bisoprolol', '238176e5-df10-457b-a5cf-c950a583e748', to_date('5/24/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4475, 'ZIAGEN (Oral Pill)', '1736971', 'abacavir', 'ced433cf-2acf-47ae-9b74-69992c3bc8e0', to_date('4/9/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4476, 'ZIANA (Topical)', '997881', 'Clindamycin', '78c329f9-f0c9-486d-9e54-0123699fb9e1', to_date('11/19/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4477, 'ZICAM SINUS RELIEF (Nasal)', '925636', 'Oxymetazoline', '2d8da5d3-8488-4352-b2e6-1fa4d274070f', to_date('3/12/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4478, 'Zidovudine (Oral Liquid)', '1710612', 'Zidovudine', 'e4eee396-fdf4-4e4b-94c2-930af5609a7d', to_date('10/25/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4479, 'Zidovudine (Oral Pill)', '1710612', 'Zidovudine', 'a3c2532a-5880-4d52-b2a1-2e6d4dbd6021', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4480, 'ZILACTIN B (Oral Gel)', '917006', 'Benzocaine', '34ce5d91-35ff-4f2c-9d6b-ac389895b6b2', to_date('2/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4481, 'ZILACTIN COLD SORE (Oral Gel)', '919681', 'Benzyl Alcohol', '0910d0d8-dc69-43bb-967d-08cab8ae917b', to_date('2/5/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4482, 'Zinc Acetate (Oral Pill)', '979096', 'Zinc Acetate', 'a0c72bff-20f3-4241-b966-34a95178d1a3', to_date('6/22/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4483, 'Zinc Acetate (Topical)', '979096', 'Zinc Acetate', '5365f205-986d-4f67-b768-1efaa8e81168', to_date('4/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4484, 'Zinc Gluconate (Injectable)', '19079204', 'Zinc Gluconate', 'ea577e0b-7b57-4ed5-be81-b605f6bcb296', to_date('10/18/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4485, 'Zinc Oxide (Paste)', '911064', 'Zinc Oxide', 'caaac1f0-437d-4185-8670-9f11b9cefe63', to_date('9/14/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4486, 'Zinc Oxide (Topical)', '911064', 'Zinc Oxide', '4c1e279b-d4ea-46b7-973f-6b55b0665e9f', to_date('9/10/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4487, 'Zinc pyrithione (Shampoo)', '944360', 'zinc pyrithione', '8772d4e7-e3cb-4265-95f3-d9ce32d0b819', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4488, 'Zinc pyrithione (Topical)', '944360', 'zinc pyrithione', '9aeada50-2cb2-d113-126a-ddcf05f817b6', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4489, 'Zinc Sulfate (Injectable)', '19044522', 'Zinc Sulfate', '1a03fe85-fdc9-4847-960f-1fc782d7d493', to_date('8/25/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4490, 'Zinc-DTPA (Injectable)', '19011565', 'Zinc-DTPA', '9fca10ee-973e-4fe0-aaf5-a0416918a397', to_date('1/5/07', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4491, 'ZINCON (Shampoo)', '944360', 'zinc pyrithione', 'a53e3460-df29-4313-a2bc-d0e3e7c1d4c9', to_date('7/31/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4492, 'ZINGO (Topical)', '989878', 'Lidocaine', '0fb7864f-be1c-4992-a996-556aef29981f', to_date('1/8/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4493, 'ZIOPTAN (Ophthalmic)', '42709325', 'tafluprost', 'd51cbf25-003c-4ba7-86cf-921637ef37a0', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4494, 'Ziprasidone (Injectable)', '712615', 'ziprasidone', '036db1f2-52b3-42a0-acf9-817b7ba8c724', to_date('2/13/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4495, 'Ziprasidone (Oral Pill)', '712615', 'ziprasidone', '09086be1-43ee-48bf-a896-21accd485e5f', to_date('9/23/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4496, 'ZIPSOR (Oral Pill)', '1124300', 'Diclofenac', 'c982eca0-fc41-11e1-a9c8-0002a5d5c51b', to_date('9/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4497, 'ZIRGAN (Ophthalmic)', '1757803', 'Ganciclovir', 'ea25e7ac-7a93-4ec8-975b-2cec197e1c27', to_date('8/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4498, 'ZITHRANOL (Shampoo)', '952538', 'Anthralin', '253fdee7-5060-4b49-ad26-257eb54cccfa', to_date('10/20/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4499, 'ZITHRANOL-RR (Topical)', '952538', 'Anthralin', '45bad116-0351-442f-8e49-f11089a955fd', to_date('7/20/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4500, 'ZITHROMAX (Oral Pill)', '1734104', 'Azithromycin', '931a3c19-23d3-4b65-a422-32bd98de5de4', to_date('9/19/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4501, 'ZODRYL AC (Oral Liquid)', '1192710', 'Chlorpheniramine', '07af42d8-4b0c-4cd1-b299-42dc12980b94', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4502, 'ZODRYL DEC (Oral Liquid)', '1201620', 'Codeine', '7b0051b0-1ae1-4eb5-9328-75f7b506f7d4', to_date('10/9/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4503, 'ZOFRAN (Oral Pill)', '1000560', 'Ondansetron', '3c327aa6-a790-4262-a79b-51856976d560', to_date('8/5/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4504, 'Zoledronic acid (Injectable)', '1524674', 'zoledronic acid', '2191fccc-9f90-486c-8f30-dc828b62fe15', to_date('9/15/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4505, 'ZOLMitriptan (Oral Disintegrating)', '1116031', 'zolmitriptan', '9842232d-83bf-fa08-5c5c-ba10fe5783e8', to_date('5/23/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4506, 'ZOLMitriptan (Oral Pill)', '1116031', 'zolmitriptan', 'df93b636-103f-4fb5-26b6-50f639e29b1d', to_date('8/12/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4507, 'ZOLOFT (Oral Pill)', '739138', 'Sertraline', '92278f12-0f00-4c0b-bb44-c6dd2dbb5b6c', to_date('8/1/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4508, 'Zolpidem (Oral Pill)', '744740', 'zolpidem', 'b87ea23e-2d54-4d10-8f10-72d4c62f3245', to_date('9/25/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4509, 'Zolpidem (Sublingual)', '744740', 'zolpidem', '913b6cfe-1fb0-44a8-817a-26374bbce995', to_date('10/2/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4510, 'Zolpidem XR (Oral Pill)', '744740', 'zolpidem', 'a85400b5-1973-46bc-b092-681ac310f280', to_date('6/22/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4511, 'ZOMIG (Oral Disintegrating)', '1116031', 'zolmitriptan', 'df93b636-103f-4fb5-26b6-50f639e29b1d', to_date('2/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4512, 'ZOMIG (Oral Pill)', '1116031', 'zolmitriptan', 'df93b636-103f-4fb5-26b6-50f639e29b1d', to_date('2/26/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4513, 'ZONALON (Topical)', '738156', 'Doxepin', 'e3a51eb8-cb8b-498f-bf3e-e464cc4acdca', to_date('3/28/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4514, 'ZONATUSS (Oral Pill)', '1136601', 'benzonatate', 'b85137e4-5e8b-4134-9a8e-1e6f9da63f92', to_date('11/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4515, 'ZONEGRAN (Oral Pill)', '744798', 'zonisamide', 'd12de43e-3ac3-4335-bc85-70d7366a91eb', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4516, 'Zonisamide (Oral Pill)', '744798', 'zonisamide', '1e99efc7-cf3f-4368-7afb-41d8dfaeffcf', to_date('9/24/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4517, 'ZOOBY FLUORIDE FOAM (Oral Foam)', '19069022', 'Sodium Fluoride', 'fcebb175-d412-4452-9c7c-a38571006bfc', to_date('11/14/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4518, 'ZORCAINE (Injectable)', '19080512', 'Articaine', 'da242926-93db-4a2b-b68c-23af13ea747e', to_date('9/1/11', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4519, 'ZOSTRIX (Topical)', '939881', 'Capsaicin', '19cdf2cb-1429-49a4-b74e-fa77547f6b7f', to_date('10/22/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4520, 'ZOSTRIX COLD THERAPY (Topical)', '901656', 'Menthol', 'cf1001ec-b069-4d51-82e7-646a9583a43a', to_date('9/21/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4521, 'ZOSTRIX DIABETIC JOINT & ARTHRITIS PAIN RELIEF (Topical)', '939881', 'Capsaicin', '006d3c32-0a88-4454-aa0f-5dcc2ba9a222', to_date('11/20/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4522, 'ZOSYN (Injectable)', '1746114', 'Piperacillin', '81b0bb45-ce9d-43e7-b181-64315e14be55', to_date('11/12/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4523, 'ZOVIRAX (Oral Liquid)', '1703687', 'Acyclovir', '6fe0ab86-9d81-461e-9c84-6ba724a91318', to_date('2/18/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4524, 'ZOVIRAX (Oral Pill)', '1703687', 'Acyclovir', '6fe0ab86-9d81-461e-9c84-6ba724a91318', to_date('2/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4525, 'ZOVIRAX (Topical)', '1703687', 'Acyclovir', '125dbe4e-94ba-45bd-a714-f9c4b8e8b5c2', to_date('2/4/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4526, 'ZUPLENZ (Oral Strip)', '1000560', 'Ondansetron', 'ed036bdb-b832-440f-82c7-ade2956b73ee', to_date('7/17/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4527, 'ZUTRIPRO (Oral Liquid)', '1192710', 'Chlorpheniramine', '6b6ab0f8-fbe6-41f3-9af4-2c86cec4eaf7', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4528, 'ZYCLARA (Topical)', '981691', 'imiquimod', '28cd9b5b-680b-480f-b33d-9c5b52bbf03d', to_date('3/26/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4529, 'ZYDELIG (Oral Pill)', '45776944', 'idelalisib', 'efbdafa9-d18c-4e85-b4a2-1e620fc74e50', to_date('9/11/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4530, 'ZYDONE (Oral Pill)', '1125315', 'Acetaminophen', '4aa8c5b1-d71f-4aa8-92b2-1cde266da467', to_date('9/13/10', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4531, 'ZYLOPRIM (Oral Pill)', '1167322', 'Allopurinol', '342832b5-1a32-4bea-bc49-ab0fd152154e', to_date('12/16/09', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4532, 'ZYMAXID (Ophthalmic)', '1789276', 'gatifloxacin', '1160b16c-929a-4e85-9c0b-1d8c96a7678b', to_date('10/9/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4533, 'ZyPREXA (Oral Disintegrating)', '785788', 'olanzapine', '7881c39e-0624-4c14-a6c3-7a9dc81c198c', to_date('5/10/12', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4534, 'ZyPREXA (Oral Pill)', '785788', 'olanzapine', '250ed608-092c-4e19-884f-a15bdea065d7', to_date('9/16/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4535, 'ZyrTEC (Oral Liquid)', '1149196', 'Cetirizine', 'ee8695ac-1293-4e43-ac7c-a64e21a0ca0a', to_date('5/28/15', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4536, 'ZyrTEC (Oral Pill)', '1149196', 'Cetirizine', 'b165db38-b302-4220-8627-77cb07bb078c', to_date('10/29/14', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4537, 'ZYVOX (Oral Pill)', '1736887', 'linezolid', 'e57716ab-7697-46cc-b612-e0e81414128f', to_date('4/5/13', 'MM/DD/YY'), NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, "Date", cohort_id, image_url) VALUES(4538, 'ZZZQUIL (Oral Liquid)', '1129625', 'Diphenhydramine', 'e441c952-cd48-4159-ada2-271ca7541600', to_date('3/25/15', 'MM/DD/YY'), NULL, NULL); diff --git a/src/main/resources/db/migration/oracle/V1.0.1.1__penelope.sql b/src/main/resources/db/migration/oracle/V1.0.1.1__penelope.sql deleted file mode 100644 index fbfaa60821..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.1.1__penelope.sql +++ /dev/null @@ -1,33 +0,0 @@ -CREATE TABLE COHORT_CONCEPT_MAP ( - cohort_definition_id int NULL, - cohort_definition_name varchar(255) NULL, - concept_id int NULL -); - -CREATE TABLE COHORT_STUDY( - cohort_study_id int NOT NULL, - cohort_definition_id int NULL, - study_type int NULL, - study_name varchar(1000) NULL, - study_URL varchar(1000) NULL, - CONSTRAINT PK_COHORT_STUDY PRIMARY KEY (cohort_study_id) - ); - -CREATE TABLE CONCEPT_OF_INTEREST( - id int NOT NULL, - concept_id int NULL, - concept_of_interest_id int NULL, - CONSTRAINT PK_CONCEPT_OF_INTEREST PRIMARY KEY (id) - ); - -CREATE TABLE drug_labels( - drug_label_id number(19,0) NOT NULL, - search_name varchar(255) NULL, - ingredient_concept_id number(19,0) NULL, - ingredient_concept_name varchar(255) NULL, - setid varchar(255) NULL, - "Date" timestamp NULL, - cohort_id int NULL, - image_url varchar(255) NULL, - CONSTRAINT PK_drug_labels PRIMARY KEY (drug_label_id) -); diff --git a/src/main/resources/db/migration/oracle/V1.0.1.2__conceptset_negative_controls.sql b/src/main/resources/db/migration/oracle/V1.0.1.2__conceptset_negative_controls.sql deleted file mode 100644 index 28dcb373f5..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.1.2__conceptset_negative_controls.sql +++ /dev/null @@ -1,56 +0,0 @@ --- DROP any existing objects from previous runs --- for Oracle only, this section is commented out for reference in case they need to be run manually --- the other DBMS create scripts can dynamically drop objects instead --- DROP TABLE CONCEPT_SET_NEGATIVE_CONTROLS; - -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id INTEGER NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - concept_set_name VARCHAR(255) NOT NULL, - concept_id INTEGER NOT NULL, - concept_name VARCHAR(255) NOT NULL, - domain_id VARCHAR(255) NOT NULL, - MEDLINE_CT FLOAT NULL, - MEDLINE_CASE FLOAT NULL, - MEDLINE_OTHER FLOAT NULL, - SEMMEDDB_CT_T FLOAT NULL, - SEMMEDDB_CASE_T FLOAT NULL, - SEMMEDDB_OTHER_T FLOAT NULL, - SEMMEDDB_CT_F FLOAT NULL, - SEMMEDDB_CASE_F FLOAT NULL, - SEMMEDDB_OTHER_F FLOAT NULL, - EU_SPC FLOAT NULL, - SPL_ADR FLOAT NULL, - AERS FLOAT NULL, - AERS_PRR FLOAT NULL, - MEDLINE_CT_SCALED FLOAT NULL, - MEDLINE_CASE_SCALED FLOAT NULL, - MEDLINE_OTHER_SCALED FLOAT NULL, - SEMMEDDB_CT_T_SCALED FLOAT NULL, - SEMMEDDB_CASE_T_SCALED FLOAT NULL, - SEMMEDDB_OTHER_T_SCALED FLOAT NULL, - SEMMEDDB_CT_F_SCALED FLOAT NULL, - SEMMEDDB_CASE_F_SCALED FLOAT NULL, - SEMMEDDB_OTHER_F_SCALED FLOAT NULL, - EU_SPC_SCALED FLOAT NULL, - SPL_ADR_SCALED FLOAT NULL, - AERS_SCALED FLOAT NULL, - AERS_PRR_SCALED FLOAT NULL, - MEDLINE_CT_BETA FLOAT NULL, - MEDLINE_CASE_BETA FLOAT NULL, - MEDLINE_OTHER_BETA FLOAT NULL, - SEMMEDDB_CT_T_BETA FLOAT NULL, - SEMMEDDB_CASE_T_BETA FLOAT NULL, - SEMMEDDB_OTHER_T_BETA FLOAT NULL, - SEMMEDDB_CT_F_BETA FLOAT NULL, - SEMMEDDB_CASE_F_BETA FLOAT NULL, - SEMMEDDB_OTHER_F_BETA FLOAT NULL, - EU_SPC_BETA FLOAT NULL, - SPL_ADR_BETA FLOAT NULL, - AERS_BETA FLOAT NULL, - AERS_PRR_BETA FLOAT NULL, - RAW_PREDICTION FLOAT NULL, - PREDICTION FLOAT NULL, - CONSTRAINT PK_CS_NEGATIVE_CONTROLS PRIMARY KEY (id) - ); diff --git a/src/main/resources/db/migration/oracle/V1.0.1.3__conceptset_generation_info.sql b/src/main/resources/db/migration/oracle/V1.0.1.3__conceptset_generation_info.sql deleted file mode 100644 index 0db1f1d576..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.1.3__conceptset_generation_info.sql +++ /dev/null @@ -1,23 +0,0 @@ --- DROP any existing objects from previous runs --- for Oracle only, this section is commented out for reference in case they need to be run manually --- the other DBMS create scripts can dynamically drop objects instead --- --- ALTER TABLE concept_set drop CONSTRAINT PK_concept_set; --- DROP TABLE concept_set_generation_info; - - -ALTER TABLE ${ohdsiSchema}.concept_set ADD CONSTRAINT PK_concept_set PRIMARY KEY (concept_set_id); - -CREATE TABLE ${ohdsiSchema}.concept_set_generation_info( - concept_set_id INTEGER NOT NULL, - source_id INTEGER NOT NULL, - generation_type INTEGER NOT NULL, - start_time TIMESTAMP NOT NULL, - execution_duration INTEGER NULL, - status INTEGER NOT NULL, - is_valid INTEGER NOT NULL, - CONSTRAINT PK_cs_generation_info PRIMARY KEY (concept_set_id, source_id), - CONSTRAINT FK_generation_info_concept_set FOREIGN KEY(concept_set_id) - REFERENCES ${ohdsiSchema}.concept_set (concept_set_id) - ON DELETE CASCADE -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.10.0__data-atlas-user.sql b/src/main/resources/db/migration/oracle/V1.0.10.0__data-atlas-user.sql deleted file mode 100644 index f4642b0393..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.10.0__data-atlas-user.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(58, 'cohortdefinition:*:put', 'Update cohort definition'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ID, ROLE_ID, PERMISSION_ID) VALUES (${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 5, 58); - -INSERT INTO ${ohdsiSchema}.sec_role(id, name) VALUES (10, 'Atlas users'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(ID, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 10, id - FROM ${ohdsiSchema}.sec_permission - WHERE id < 200; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.11.0__data-cohortanalysis-permission.sql b/src/main/resources/db/migration/oracle/V1.0.11.0__data-cohortanalysis-permission.sql deleted file mode 100644 index 549ecd38bb..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.11.0__data-cohortanalysis-permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.sec_permission_id_seq START WITH 500; -ALTER TABLE ${ohdsiSchema}.sec_permission ADD CONSTRAINT permission_unique UNIQUE (value); - -insert into ${ohdsiSchema}.sec_permission (id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortanalysis:post', 'Create Cohort analyses'); - -ALTER TABLE ${ohdsiSchema}.sec_role_permission ADD CONSTRAINT role_permission_unique UNIQUE (role_id, permission_id); - -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'cohortanalysis:post' - AND sr.name IN ('admin', 'cohort creator', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.11.1__schema-executions.sql b/src/main/resources/db/migration/oracle/V1.0.11.1__schema-executions.sql deleted file mode 100644 index 4e555a8443..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.11.1__schema-executions.sql +++ /dev/null @@ -1,62 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.analysis_execution( - id INTEGER NOT NULL, - analysis_id INTEGER NOT NULL, - analysis_type VARCHAR(255) NOT NULL, - duration INTEGER NOT NULL, - executed TIMESTAMP(3), - sec_user_id INTEGER, - executionStatus VARCHAR(255), - update_password VARCHAR(255), - source_id INTEGER -); - -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD ( - CONSTRAINT PK_analysis_execution PRIMARY KEY (id)); - -CREATE SEQUENCE ${ohdsiSchema}.analysis_execution_sequence START WITH 1; - -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.analysis_execution_bir - BEFORE INSERT ON ${ohdsiSchema}.analysis_execution - FOR EACH ROW - BEGIN - SELECT ${ohdsiSchema}.analysis_execution_sequence.nextval INTO :new.id FROM dual; - END; - -BEGIN - -DELETE FROM ${ohdsiSchema}.analysis_execution WHERE analysis_type = 'CCA'; - -INSERT INTO ${ohdsiSchema}.analysis_execution(analysis_id, analysis_type, duration, executed, sec_user_id, source_id, executionStatus, update_password) - SELECT cca.cca_id, 'CCA', cca.execution_duration, cca.executed, cca.sec_user_id, cca.source_id, - CASE cca.execution_status - WHEN 0 THEN 'PENDING' - WHEN 1 THEN 'STARTED' - WHEN 2 THEN 'RUNNING' - WHEN 3 THEN 'COMPLETED' - WHEN 4 THEN 'FAILED' - END as status, ext.update_password FROM - ${ohdsiSchema}.cca_execution cca LEFT JOIN ${ohdsiSchema}.cca_execution_ext ext ON ext.cca_execution_id = cca.cca_id; - -ALTER TABLE ${ohdsiSchema}.input_files ADD(execution_id INTEGER); - -UPDATE ${ohdsiSchema}.input_files f SET execution_id = - (SELECT a.id FROM ${ohdsiSchema}.analysis_execution a JOIN ${ohdsiSchema}.cca_execution cca - ON cca.cca_id = a.analysis_id AND a.analysis_type = 'CCA' AND a.executed = cca.executed - WHERE cca.cca_execution_id = f.cca_execution_id AND ROWNUM < 2); - -ALTER TABLE ${ohdsiSchema}.output_files ADD(execution_id INTEGER); - -UPDATE ${ohdsiSchema}.output_files f SET execution_id = - (SELECT a.id FROM ${ohdsiSchema}.analysis_execution a JOIN ${ohdsiSchema}.cca_execution cca - ON cca.cca_id = a.analysis_id AND a.analysis_type = 'CCA' AND a.executed = cca.executed - WHERE cca.cca_execution_id = f.cca_execution_id AND ROWNUM < 2); - -ALTER TABLE ${ohdsiSchema}.input_files MODIFY(cca_execution_id NULL); - -ALTER TABLE ${ohdsiSchema}.output_files MODIFY(cca_execution_id NULL); - -EXCEPTION WHEN OTHERS THEN - IF SQLCODE != -942 THEN - RAISE ; - END IF; -END; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.2.0__cohort_feasiblity.sql b/src/main/resources/db/migration/oracle/V1.0.2.0__cohort_feasiblity.sql deleted file mode 100644 index 7be556bc20..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.2.0__cohort_feasiblity.sql +++ /dev/null @@ -1,30 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_inclusion( - cohort_definition_id number(10) NOT NULL, - rule_sequence number(10) NOT NULL, - name varchar2(255) NULL, - description varchar(1000) NULL -) -; - -CREATE TABLE ${ohdsiSchema}.cohort_inclusion_result( - cohort_definition_id number(10) NOT NULL, - inclusion_rule_mask number(19) NOT NULL, - person_count number(19) NOT NULL -) -; - -CREATE TABLE ${ohdsiSchema}.cohort_inclusion_stats( - cohort_definition_id number(10) NOT NULL, - rule_sequence number(10) NOT NULL, - person_count number(19) NOT NULL, - gain_count number(19) NOT NULL, - person_total number(19) NOT NULL -) -; - -CREATE TABLE ${ohdsiSchema}.cohort_summary_stats( - cohort_definition_id number(10) NOT NULL, - base_count number(19) NOT NULL, - final_count number(19) NOT NULL -) -; diff --git a/src/main/resources/db/migration/oracle/V1.0.3.1__comparative_cohort_analysis.sql b/src/main/resources/db/migration/oracle/V1.0.3.1__comparative_cohort_analysis.sql deleted file mode 100644 index 97b85926ef..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.3.1__comparative_cohort_analysis.sql +++ /dev/null @@ -1,272 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cca( - cca_id number(10) NOT NULL, - name varchar2(255) NULL, - treatment_id number(10) NOT NULL, - comparator_id number(10) NOT NULL, - outcome_id number(10) NOT NULL, - model_type varchar2(50) NOT NULL, - time_at_risk_start number(10) NOT NULL, - time_at_risk_end number(10) NOT NULL, - add_exposure_days_to_end number(10) NOT NULL, - minimum_washout_period number(10) NOT NULL, - minimum_days_at_risk number(10) NOT NULL, - rm_subjects_in_both_cohorts number(10) NOT NULL, - rm_prior_outcomes number(10) NOT NULL, - ps_adjustment number(10) NOT NULL, - ps_exclusion_id number(10) NOT NULL, - ps_inclusion_id number(10) NOT NULL, - ps_demographics number(10) NOT NULL, - ps_demographics_gender number(10) NOT NULL, - ps_demographics_race number(10) NOT NULL, - ps_demographics_ethnicity number(10) NOT NULL, - ps_demographics_age number(10) NOT NULL, - ps_demographics_year number(10) NOT NULL, - ps_demographics_month number(10) NOT NULL, - ps_trim number(10) NOT NULL, - ps_trim_fraction float NOT NULL, - ps_match number(10) NOT NULL, - ps_match_max_ratio number(10) NOT NULL, - ps_strat number(10) NOT NULL, - ps_strat_num_strata number(10) NOT NULL, - ps_condition_occ number(10) NOT NULL, - ps_condition_occ_365d number(10) NOT NULL, - ps_condition_occ_30d number(10) NOT NULL, - ps_condition_occ_inpt180d number(10) NOT NULL, - ps_condition_era number(10) NOT NULL, - ps_condition_era_ever number(10) NOT NULL, - ps_condition_era_overlap number(10) NOT NULL, - ps_condition_group number(10) NOT NULL, - ps_condition_group_meddra number(10) NOT NULL, - ps_condition_group_snomed number(10) NOT NULL, - ps_drug_exposure number(10) NOT NULL, - ps_drug_exposure_365d number(10) NOT NULL, - ps_drug_exposure_30d number(10) NOT NULL, - ps_drug_era number(10) NOT NULL, - ps_drug_era_365d number(10) NOT NULL, - ps_drug_era_30d number(10) NOT NULL, - ps_drug_era_overlap number(10) NOT NULL, - ps_drug_era_ever number(10) NOT NULL, - ps_drug_group number(10) NOT NULL, - ps_procedure_occ number(10) NOT NULL, - ps_procedure_occ_365d number(10) NOT NULL, - ps_procedure_occ_30d number(10) NOT NULL, - ps_procedure_group number(10) NOT NULL, - ps_observation number(10) NOT NULL, - ps_observation_365d number(10) NOT NULL, - ps_observation_30d number(10) NOT NULL, - ps_observation_count_365d number(10) NOT NULL, - ps_measurement number(10) NOT NULL, - ps_measurement_365d number(10) NOT NULL, - ps_measurement_30d number(10) NOT NULL, - ps_measurement_count_365d number(10) NOT NULL, - ps_measurement_below number(10) NOT NULL, - ps_measurement_above number(10) NOT NULL, - ps_concept_counts number(10) NOT NULL, - ps_risk_scores number(10) NOT NULL, - ps_risk_scores_charlson number(10) NOT NULL, - ps_risk_scores_dcsi number(10) NOT NULL, - ps_risk_scores_chads2 number(10) NOT NULL, - ps_risk_scores_chads2vasc number(10) NOT NULL, - ps_interaction_year number(10) NOT NULL, - ps_interaction_month number(10) NOT NULL, - om_covariates number(10) NOT NULL, - om_exclusion_id number(10) NOT NULL, - om_inclusion_id number(10) NOT NULL, - om_demographics number(10) NOT NULL, - om_demographics_gender number(10) NOT NULL, - om_demographics_race number(10) NOT NULL, - om_demographics_ethnicity number(10) NOT NULL, - om_demographics_age number(10) NOT NULL, - om_demographics_year number(10) NOT NULL, - om_demographics_month number(10) NOT NULL, - om_trim number(10) NOT NULL, - om_trim_fraction float NOT NULL, - om_match number(10) NOT NULL, - om_match_max_ratio number(10) NOT NULL, - om_strat number(10) NOT NULL, - om_strat_num_strata number(10) NOT NULL, - om_condition_occ number(10) NOT NULL, - om_condition_occ_365d number(10) NOT NULL, - om_condition_occ_30d number(10) NOT NULL, - om_condition_occ_inpt180d number(10) NOT NULL, - om_condition_era number(10) NOT NULL, - om_condition_era_ever number(10) NOT NULL, - om_condition_era_overlap number(10) NOT NULL, - om_condition_group number(10) NOT NULL, - om_condition_group_meddra number(10) NOT NULL, - om_condition_group_snomed number(10) NOT NULL, - om_drug_exposure number(10) NOT NULL, - om_drug_exposure_365d number(10) NOT NULL, - om_drug_exposure_30d number(10) NOT NULL, - om_drug_era number(10) NOT NULL, - om_drug_era_365d number(10) NOT NULL, - om_drug_era_30d number(10) NOT NULL, - om_drug_era_overlap number(10) NOT NULL, - om_drug_era_ever number(10) NOT NULL, - om_drug_group number(10) NOT NULL, - om_procedure_occ number(10) NOT NULL, - om_procedure_occ_365d number(10) NOT NULL, - om_procedure_occ_30d number(10) NOT NULL, - om_procedure_group number(10) NOT NULL, - om_observation number(10) NOT NULL, - om_observation_365d number(10) NOT NULL, - om_observation_30d number(10) NOT NULL, - om_observation_count_365d number(10) NOT NULL, - om_measurement number(10) NOT NULL, - om_measurement_365d number(10) NOT NULL, - om_measurement_30d number(10) NOT NULL, - om_measurement_count_365d number(10) NOT NULL, - om_measurement_below number(10) NOT NULL, - om_measurement_above number(10) NOT NULL, - om_concept_counts number(10) NOT NULL, - om_risk_scores number(10) NOT NULL, - om_risk_scores_charlson number(10) NOT NULL, - om_risk_scores_dcsi number(10) NOT NULL, - om_risk_scores_chads2 number(10) NOT NULL, - om_risk_scores_chads2vasc number(10) NOT NULL, - om_interaction_year number(10) NOT NULL, - om_interaction_month number(10) NOT NULL, - del_covariates_small_count number(10) NOT NULL, - negative_control_id number(10) NOT NULL, - created Timestamp(3) NOT NULL, - modified Timestamp(3) NOT NULL, - sec_user_id number(10) NOT NULL -); - -CREATE TABLE ${ohdsiSchema}.cca_execution( - cca_execution_id number(10) NOT NULL, - cca_id number(10) NOT NULL, - source_id number(10) NOT NULL, - treatment_id number(10) NOT NULL, - comparator_id number(10) NOT NULL, - outcome_id number(10) NOT NULL, - model_type varchar2(50) NOT NULL, - time_at_risk_start number(10) NOT NULL, - time_at_risk_end number(10) NOT NULL, - add_exposure_days_to_end number(10) NOT NULL, - minimum_washout_period number(10) NOT NULL, - minimum_days_at_risk number(10) NOT NULL, - rm_subjects_in_both_cohorts number(10) NOT NULL, - rm_prior_outcomes number(10) NOT NULL, - ps_adjustment number(10) NOT NULL, - ps_exclusion_id number(10) NOT NULL, - ps_inclusion_id number(10) NOT NULL, - ps_demographics number(10) NOT NULL, - ps_demographics_gender number(10) NOT NULL, - ps_demographics_race number(10) NOT NULL, - ps_demographics_ethnicity number(10) NOT NULL, - ps_demographics_age number(10) NOT NULL, - ps_demographics_year number(10) NOT NULL, - ps_demographics_month number(10) NOT NULL, - ps_trim number(10) NOT NULL, - ps_trim_fraction float NOT NULL, - ps_match number(10) NOT NULL, - ps_match_max_ratio number(10) NOT NULL, - ps_strat number(10) NOT NULL, - ps_strat_num_strata number(10) NOT NULL, - ps_condition_occ number(10) NOT NULL, - ps_condition_occ_365d number(10) NOT NULL, - ps_condition_occ_30d number(10) NOT NULL, - ps_condition_occ_inpt180d number(10) NOT NULL, - ps_condition_era number(10) NOT NULL, - ps_condition_era_ever number(10) NOT NULL, - ps_condition_era_overlap number(10) NOT NULL, - ps_condition_group number(10) NOT NULL, - ps_condition_group_meddra number(10) NOT NULL, - ps_condition_group_snomed number(10) NOT NULL, - ps_drug_exposure number(10) NOT NULL, - ps_drug_exposure_365d number(10) NOT NULL, - ps_drug_exposure_30d number(10) NOT NULL, - ps_drug_era number(10) NOT NULL, - ps_drug_era_365d number(10) NOT NULL, - ps_drug_era_30d number(10) NOT NULL, - ps_drug_era_overlap number(10) NOT NULL, - ps_drug_era_ever number(10) NOT NULL, - ps_drug_group number(10) NOT NULL, - ps_procedure_occ number(10) NOT NULL, - ps_procedure_occ_365d number(10) NOT NULL, - ps_procedure_occ_30d number(10) NOT NULL, - ps_procedure_group number(10) NOT NULL, - ps_observation number(10) NOT NULL, - ps_observation_365d number(10) NOT NULL, - ps_observation_30d number(10) NOT NULL, - ps_observation_count_365d number(10) NOT NULL, - ps_measurement number(10) NOT NULL, - ps_measurement_365d number(10) NOT NULL, - ps_measurement_30d number(10) NOT NULL, - ps_measurement_count_365d number(10) NOT NULL, - ps_measurement_below number(10) NOT NULL, - ps_measurement_above number(10) NOT NULL, - ps_concept_counts number(10) NOT NULL, - ps_risk_scores number(10) NOT NULL, - ps_risk_scores_charlson number(10) NOT NULL, - ps_risk_scores_dcsi number(10) NOT NULL, - ps_risk_scores_chads2 number(10) NOT NULL, - ps_risk_scores_chads2vasc number(10) NOT NULL, - ps_interaction_year number(10) NOT NULL, - ps_interaction_month number(10) NOT NULL, - om_covariates number(10) NOT NULL, - om_exclusion_id number(10) NOT NULL, - om_inclusion_id number(10) NOT NULL, - om_demographics number(10) NOT NULL, - om_demographics_gender number(10) NOT NULL, - om_demographics_race number(10) NOT NULL, - om_demographics_ethnicity number(10) NOT NULL, - om_demographics_age number(10) NOT NULL, - om_demographics_year number(10) NOT NULL, - om_demographics_month number(10) NOT NULL, - om_trim number(10) NOT NULL, - om_trim_fraction float NOT NULL, - om_match number(10) NOT NULL, - om_match_max_ratio number(10) NOT NULL, - om_strat number(10) NOT NULL, - om_strat_num_strata number(10) NOT NULL, - om_condition_occ number(10) NOT NULL, - om_condition_occ_365d number(10) NOT NULL, - om_condition_occ_30d number(10) NOT NULL, - om_condition_occ_inpt180d number(10) NOT NULL, - om_condition_era number(10) NOT NULL, - om_condition_era_ever number(10) NOT NULL, - om_condition_era_overlap number(10) NOT NULL, - om_condition_group number(10) NOT NULL, - om_condition_group_meddra number(10) NOT NULL, - om_condition_group_snomed number(10) NOT NULL, - om_drug_exposure number(10) NOT NULL, - om_drug_exposure_365d number(10) NOT NULL, - om_drug_exposure_30d number(10) NOT NULL, - om_drug_era number(10) NOT NULL, - om_drug_era_365d number(10) NOT NULL, - om_drug_era_30d number(10) NOT NULL, - om_drug_era_overlap number(10) NOT NULL, - om_drug_era_ever number(10) NOT NULL, - om_drug_group number(10) NOT NULL, - om_procedure_occ number(10) NOT NULL, - om_procedure_occ_365d number(10) NOT NULL, - om_procedure_occ_30d number(10) NOT NULL, - om_procedure_group number(10) NOT NULL, - om_observation number(10) NOT NULL, - om_observation_365d number(10) NOT NULL, - om_observation_30d number(10) NOT NULL, - om_observation_count_365d number(10) NOT NULL, - om_measurement number(10) NOT NULL, - om_measurement_365d number(10) NOT NULL, - om_measurement_30d number(10) NOT NULL, - om_measurement_count_365d number(10) NOT NULL, - om_measurement_below number(10) NOT NULL, - om_measurement_above number(10) NOT NULL, - om_concept_counts number(10) NOT NULL, - om_risk_scores number(10) NOT NULL, - om_risk_scores_charlson number(10) NOT NULL, - om_risk_scores_dcsi number(10) NOT NULL, - om_risk_scores_chads2 number(10) NOT NULL, - om_risk_scores_chads2vasc number(10) NOT NULL, - om_interaction_year number(10) NOT NULL, - om_interaction_month number(10) NOT NULL, - del_covariates_small_count number(10) NOT NULL, - negative_control_id number(10) NOT NULL, - executed Timestamp(3) NOT NULL, - execution_duration number(10) NOT NULL, - execution_status number(10) NOT NULL, - sec_user_id number(10) NOT NULL -); - diff --git a/src/main/resources/db/migration/oracle/V1.0.4.0__ir_analysis.sql b/src/main/resources/db/migration/oracle/V1.0.4.0__ir_analysis.sql deleted file mode 100644 index 30d270809e..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.4.0__ir_analysis.sql +++ /dev/null @@ -1,63 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.ir_analysis( - id number(10) NOT NULL, - name varchar2(255) NOT NULL, - description varchar2(1000) NULL, - created_by varchar2(255) NULL, - created_date Timestamp(3) NULL, - modified_by varchar2(255) NULL, - modified_date Timestamp(3) NULL, - CONSTRAINT PK_ir_analysis PRIMARY KEY (id) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_analysis_details( - id int, - expression CLOB NOT NULL, - CONSTRAINT PK_irad PRIMARY KEY (id), - CONSTRAINT FK_irad_ira - FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.ir_analysis(id) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_execution ( - analysis_id number(10) NOT NULL, - source_id number(10) NOT NULL, - start_time Timestamp(3) NULL, - execution_duration number(10) NULL, - status number(10) NOT NULL, - is_valid number(1) NOT NULL, - message varchar2(2000) NULL, - CONSTRAINT PK_ir_exec PRIMARY KEY (analysis_id, source_id) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_strata( - analysis_id number(10) NOT NULL, - strata_sequence number(10) NOT NULL, - name varchar2(255) NULL, - description varchar2(1000) NULL -) -; - -CREATE TABLE ${ohdsiSchema}.ir_analysis_result( - analysis_id number(10) NOT NULL, - target_id number(10) NOT NULL, - outcome_id number(10) NOT NULL, - strata_mask number(19) NOT NULL, - person_count number(19) NOT NULL, - time_at_risk number(19) NOT NULL, - cases number(19) NOT NULL -) -; - -CREATE TABLE ${ohdsiSchema}.ir_analysis_strata_stats( - analysis_id number(10) NOT NULL, - target_id number(10) NOT NULL, - outcome_id number(10) NOT NULL, - strata_sequence number(10) NOT NULL, - person_count number(19) NOT NULL, - time_at_risk number(19) NOT NULL, - cases number(19) NOT NULL -) -; - diff --git a/src/main/resources/db/migration/oracle/V1.0.4.1__ir_dist.sql b/src/main/resources/db/migration/oracle/V1.0.4.1__ir_dist.sql deleted file mode 100644 index b4904fd78c..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.4.1__ir_dist.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.ir_analysis_dist ( - analysis_id number(10) NOT NULL, - target_id number(10) NOT NULL, - outcome_id number(10) NOT NULL, - strata_sequence number(10) NULL, - dist_type number(10) NOT NULL, - total number(19) NOT NULL, - avg_value float NOT NULL, - std_dev float NOT NULL, - min_value number(10) NOT NULL, - p10_value number(10) NOT NULL, - p25_value number(10) NOT NULL, - median_value number(10) NOT NULL, - p75_value number(10) NOT NULL, - p90_value number(10) NOT NULL, - max_value number(10) NULL -) -; diff --git a/src/main/resources/db/migration/oracle/V1.0.5.0__rename_system_user_to_anonymous.sql b/src/main/resources/db/migration/oracle/V1.0.5.0__rename_system_user_to_anonymous.sql deleted file mode 100644 index 1d3bb09ae3..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.5.0__rename_system_user_to_anonymous.sql +++ /dev/null @@ -1,6 +0,0 @@ -UPDATE ${ohdsiSchema}.cohort_definition SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.cohort_definition SET modified_by = 'anonymous' WHERE modified_by = 'system'; -UPDATE ${ohdsiSchema}.feasibility_study SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.feasibility_study SET modified_by = 'anonymous' WHERE modified_by = 'system'; -UPDATE ${ohdsiSchema}.ir_analysis SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.ir_analysis SET modified_by = 'anonymous' WHERE modified_by = 'system'; diff --git a/src/main/resources/db/migration/oracle/V1.0.6.0.1__schema-add-analysis_execution_password.sql b/src/main/resources/db/migration/oracle/V1.0.6.0.1__schema-add-analysis_execution_password.sql deleted file mode 100644 index 81f9b1071f..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.6.0.1__schema-add-analysis_execution_password.sql +++ /dev/null @@ -1,34 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cca_execution ADD CONSTRAINT PK_cca_execution PRIMARY KEY (cca_execution_id); - -CREATE TABLE ${ohdsiSchema}.cca_execution_ext ( - cca_execution_id INTEGER NOT NULL, - update_password VARCHAR2(255) -); - -CREATE TABLE ${ohdsiSchema}.input_files -( - id NUMBER(19), - cca_execution_id NUMBER(19) NOT NULL, - file_contents BLOB, - file_name VARCHAR2(255) NOT NULL, - CONSTRAINT input_files_pkey PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.input_files - ADD CONSTRAINT fk_sof_cca_execution FOREIGN KEY (cca_execution_id) - REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) - ON DELETE CASCADE; - -CREATE TABLE ${ohdsiSchema}.output_files -( - id NUMBER(19), - cca_execution_id NUMBER(19) NOT NULL, - file_contents BLOB, - file_name VARCHAR2(255) NOT NULL, - CONSTRAINT output_files_pkey PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.output_files - ADD CONSTRAINT fk_sif_cca_execution FOREIGN KEY (cca_execution_id) - REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) - ON DELETE CASCADE; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V1.0.6.0__schema-create-plp.sql b/src/main/resources/db/migration/oracle/V1.0.6.0__schema-create-plp.sql deleted file mode 100644 index 50a181bdad..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.6.0__schema-create-plp.sql +++ /dev/null @@ -1,99 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.plp -( - plp_id number(10) NOT NULL, - name varchar2(255), - treatment_id number(10) NOT NULL, - outcome_id number(10) NOT NULL, - model_type varchar2(255) NOT NULL, - time_at_risk_start number(10) NOT NULL, - time_at_risk_end number(10) NOT NULL, - add_exposure_days_to_end number(10) NOT NULL, - minimum_washout_period number(10) NOT NULL, - minimum_days_at_risk number(10) NOT NULL, - require_time_at_risk number(10) NOT NULL, - minimum_time_at_risk number(10) NOT NULL, - sample number(10) NOT NULL, - sample_size number(10) NOT NULL, - first_exposure_only number(10) NOT NULL, - include_all_outcomes number(10) NOT NULL, - rm_prior_outcomes number(10) NOT NULL, - prior_outcome_lookback number(10) NOT NULL, - test_split number(10) NOT NULL, - test_fraction varchar2(255) NULL, - n_fold varchar2(255) NULL, - mo_alpha varchar2(255) NULL, - mo_class_weight varchar2(255) NULL, - mo_index_folder varchar2(255) NULL, - mo_k varchar2(255) NULL, - mo_learn_rate varchar2(255) NULL, - mo_learning_rate varchar2(255) NULL, - mo_max_depth varchar2(255) NULL, - mo_min_impurity_split varchar2(255) NULL, - mo_min_rows varchar2(255) NULL, - mo_min_samples_leaf varchar2(255) NULL, - mo_min_samples_split varchar2(255) NULL, - mo_mtries varchar2(255) NULL, - mo_nestimators varchar2(255) NULL, - mo_nthread varchar2(255) NULL, - mo_ntrees varchar2(255) NULL, - mo_plot varchar2(255) NULL, - mo_seed varchar2(255) NULL, - mo_size varchar2(255) NULL, - mo_variance varchar2(255) NULL, - mo_var_imp varchar2(255) NULL, - cv_exclusion_id number(10) NOT NULL, - cv_inclusion_id number(10) NOT NULL, - cv_demographics number(10) NOT NULL, - cv_demographics_gender number(10) NOT NULL, - cv_demographics_race number(10) NOT NULL, - cv_demographics_ethnicity number(10) NOT NULL, - cv_demographics_age number(10) NOT NULL, - cv_demographics_year number(10) NOT NULL, - cv_demographics_month number(10) NOT NULL, - cv_condition_occ number(10) NOT NULL, - cv_condition_occ_365d number(10) NOT NULL, - cv_condition_occ_30d number(10) NOT NULL, - cv_condition_occ_inpt180d number(10) NOT NULL, - cv_condition_era number(10) NOT NULL, - cv_condition_era_ever number(10) NOT NULL, - cv_condition_era_overlap number(10) NOT NULL, - cv_condition_group number(10) NOT NULL, - cv_condition_group_meddra number(10) NOT NULL, - cv_condition_group_snomed number(10) NOT NULL, - cv_drug_exposure number(10) NOT NULL, - cv_drug_exposure_365d number(10) NOT NULL, - cv_drug_exposure_30d number(10) NOT NULL, - cv_drug_era number(10) NOT NULL, - cv_drug_era_365d number(10) NOT NULL, - cv_drug_era_30d number(10) NOT NULL, - cv_drug_era_overlap number(10) NOT NULL, - cv_drug_era_ever number(10) NOT NULL, - cv_drug_group number(10) NOT NULL, - cv_procedure_occ number(10) NOT NULL, - cv_procedure_occ_365d number(10) NOT NULL, - cv_procedure_occ_30d number(10) NOT NULL, - cv_procedure_group number(10) NOT NULL, - cv_observation number(10) NOT NULL, - cv_observation_365d number(10) NOT NULL, - cv_observation_30d number(10) NOT NULL, - cv_observation_count_365d number(10) NOT NULL, - cv_measurement number(10) NOT NULL, - cv_measurement_365d number(10) NOT NULL, - cv_measurement_30d number(10) NOT NULL, - cv_measurement_count_365d number(10) NOT NULL, - cv_measurement_below number(10) NOT NULL, - cv_measurement_above number(10) NOT NULL, - cv_concept_counts number(10) NOT NULL, - cv_risk_scores number(10) NOT NULL, - cv_risk_scores_charlson number(10) NOT NULL, - cv_risk_scores_dcsi number(10) NOT NULL, - cv_risk_scores_chads2 number(10) NOT NULL, - cv_risk_scores_chads2vasc number(10) NOT NULL, - cv_interaction_year number(10) NOT NULL, - cv_interaction_month number(10) NOT NULL, - del_covariates_small_count number(10) NOT NULL, - created Timestamp(3) NOT NULL, - modified Timestamp(3) NULL, - created_by varchar2(255) NULL, - modified_by varchar2(255) NULL -); diff --git a/src/main/resources/db/migration/oracle/V1.0.7.0__alter_cohort_generation_info.sql b/src/main/resources/db/migration/oracle/V1.0.7.0__alter_cohort_generation_info.sql deleted file mode 100644 index 9712fc4942..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.7.0__alter_cohort_generation_info.sql +++ /dev/null @@ -1,10 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info - ADD (include_features number(1), - fail_message varchar2(2000), - person_count number(19), - record_count number(19)); - -UPDATE ${ohdsiSchema}.cohort_generation_info set include_features = 0; - -ALTER TABLE ${ohdsiSchema}.cohort_generation_info - MODIFY include_features number(1) not null; diff --git a/src/main/resources/db/migration/oracle/V1.0.8.0__cohort_features_results.sql b/src/main/resources/db/migration/oracle/V1.0.8.0__cohort_features_results.sql deleted file mode 100644 index 3dd98be466..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.8.0__cohort_features_results.sql +++ /dev/null @@ -1,44 +0,0 @@ -create table ${ohdsiSchema}.cohort_features_dist -( - cohort_definition_id number(19), - covariate_id number(19), - count_value float, - min_value float, - max_value float, - average_value float, - standard_deviation float, - median_value float, - p10_value float, - p25_value float, - p75_value float, - p90_value float -); - -create table ${ohdsiSchema}.cohort_features -( - cohort_definition_id number(19), - covariate_id number(19), - sum_value number(19), - average_value float -); - -create table ${ohdsiSchema}.cohort_features_ref -( - cohort_definition_id number(19), - covariate_id number(19), - covariate_name varchar2(1000), - analysis_id int, - concept_id int -); - -create table ${ohdsiSchema}.cohort_features_analysis_ref -( - cohort_definition_id number(19), - analysis_id int, - analysis_name varchar2(1000), - domain_id varchar2(100), - start_day int, - end_day int, - is_binary char, - missing_means_zero char -); diff --git a/src/main/resources/db/migration/oracle/V1.0.9.0__data-permissions.sql b/src/main/resources/db/migration/oracle/V1.0.9.0__data-permissions.sql deleted file mode 100644 index 4ebeed3bbd..0000000000 --- a/src/main/resources/db/migration/oracle/V1.0.9.0__data-permissions.sql +++ /dev/null @@ -1,110 +0,0 @@ -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(27, 'conceptset:*:delete', 'Delete Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 3, 27); - -insert into ${ohdsiSchema}.sec_permission values (31, 'conceptset:*:put', 'Update Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 3, 31); - -insert into ${ohdsiSchema}.sec_permission values (32, 'conceptset:*:items:put', 'Update Items of Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 3, 32); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(34, 'conceptset:get', 'List of Concept Sets'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 34); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 3, 34); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(35, 'conceptset:*:get', 'Get conceptset expression') ; -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 35); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 3, 35); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(36, 'ir:get', 'List of incidence rates'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 36); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(37, 'ir:*:get', 'Get incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 37); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(38, 'ir:post', 'Create new incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 38); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(39, 'comparativecohortanalysis:get', 'List estimations'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 39); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(40, 'comparativecohortanalysis:*:get', 'Get estimation'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 40); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(41, 'comparativecohortanalysis:post', 'Create new estimation'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 41); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(42, 'plp:get', 'List of population level predictions'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 42); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(43, 'plp:*:get', 'Get population level prediction'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 43); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(44, 'plp:post', 'Create new plp'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 44); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(45, 'source:*:get', 'Read configuration'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 45); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(46, 'vocabulary:*:search:*:get', 'Search vocabulary'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 46); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(47, 'cdmresults:*:get', 'View CDM results'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 47); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(48, 'cohortanalysis:get', 'Get Cohort analyses'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(49, 'cohortanalysis:*:get', 'Get Cohort analyses summary or preview'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 48); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 49); - -insert into ${ohdsiSchema}.sec_permission values (66, 'cohortdefinition:delete', 'Delete Cohort Definition'); -insert into ${ohdsiSchema}.sec_permission values (67, 'cohortdefinition:*:delete', 'Delete Cohort Definition'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 5, 66); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 5, 67); - -insert into ${ohdsiSchema}.sec_permission values (70, 'plp:*:put', 'Update Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_permission values (71, 'plp:*:delete', 'Delete Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_permission values (72, 'plp:*:copy:get', 'Copy Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 70); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 71); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 72); - -insert into ${ohdsiSchema}.sec_permission values (80, 'ir:*:copy:get', 'Copy incidence rate'); -insert into ${ohdsiSchema}.sec_permission values (81, 'ir:*:delete', 'Delete incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 80); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 81); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(90, 'comparativecohortanalysis:*:copy:get', 'Copy estimations'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 90); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(91, 'comparativecohortanalysis:*:delete', 'Delete estimation'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 91); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(92, 'comparativecohortanalysis:*:put', 'Update estimation'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 2, 92); - - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(100, 'cohortresults:*:get', 'Get Cohort reports'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 100); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(101, 'evidence:*:get', 'Get evidence'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 101); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(102, 'executionservice:*:get', 'Get Execution Service Job status'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(103, 'executionservice:execution:run:post', 'Start Execution Service Job'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 102); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 103); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(104, 'feasibility:get', 'List of Feasibilities'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(105, 'feasibility:*:get', 'View Feasibility'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(106, 'feasibility:*:put', 'Edit Feasibility'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(107, 'feasibility:*:delete', 'Delete Feasibility'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 104); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 105); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 106); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 107); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(108, 'featureextraction:*:get', 'Access to Feature Extraction'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 108); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(109, 'job:get', 'Find Job names'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 109); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(110, 'vocabulary:*:post', 'Vocabulary services'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 110); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(111, '*:person:*:get', 'View profiles'); -insert into ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) values(${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, 1, 111); diff --git a/src/main/resources/db/migration/oracle/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql b/src/main/resources/db/migration/oracle/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql deleted file mode 100644 index 0da36df8c6..0000000000 --- a/src/main/resources/db/migration/oracle/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql +++ /dev/null @@ -1 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission WHERE role_id = 2 AND permission_id BETWEEN 34 AND 44; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.2.0.20180215143000__remove_password.sql b/src/main/resources/db/migration/oracle/V2.2.0.20180215143000__remove_password.sql deleted file mode 100644 index 2c272cbf52..0000000000 --- a/src/main/resources/db/migration/oracle/V2.2.0.20180215143000__remove_password.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user DROP COLUMN password; -ALTER TABLE ${ohdsiSchema}.sec_user DROP COLUMN salt; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.2.5.20180212152023__concept-sets-author.sql b/src/main/resources/db/migration/oracle/V2.2.5.20180212152023__concept-sets-author.sql deleted file mode 100644 index 560a6280a4..0000000000 --- a/src/main/resources/db/migration/oracle/V2.2.5.20180212152023__concept-sets-author.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.concept_set - ADD ( - created_by VARCHAR(255), - modified_by VARCHAR(255), - created_date TIMESTAMP WITH TIME ZONE, - modified_date TIMESTAMP WITH TIME ZONE - ); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.2.5.20180212181325__cca-author.sql b/src/main/resources/db/migration/oracle/V2.2.5.20180212181325__cca-author.sql deleted file mode 100644 index 0286ad9098..0000000000 --- a/src/main/resources/db/migration/oracle/V2.2.5.20180212181325__cca-author.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cca -ADD ( - created_by VARCHAR(255), - modified_by VARCHAR(255) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.2.5.20180215105415__separate-sequences.sql b/src/main/resources/db/migration/oracle/V2.2.5.20180215105415__separate-sequences.sql deleted file mode 100644 index b4342d114f..0000000000 --- a/src/main/resources/db/migration/oracle/V2.2.5.20180215105415__separate-sequences.sql +++ /dev/null @@ -1,91 +0,0 @@ --- cca -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.cca_sequence START WITH '; - SELECT nvl2(max(cca_id), max(cca_id) + 1, 1) INTO val FROM ${ohdsiSchema}.cca; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- cohort_definition -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.cohort_definition_sequence START WITH '; - SELECT nvl2(max(id), max(id) + 1, 1) INTO val FROM ${ohdsiSchema}.cohort_definition; - EXECUTE IMMEDIATE stmt || val; -END; -/ - -DROP SEQUENCE ${ohdsiSchema}.CONCEPT_SET_SEQUENCE; - --- concept_set -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.concept_set_sequence START WITH '; - SELECT nvl2(max(concept_set_id), max(concept_set_id) + 1, 1) INTO val FROM ${ohdsiSchema}.concept_set; - EXECUTE IMMEDIATE stmt || val; -END; -/ - -DROP SEQUENCE ${ohdsiSchema}.CONCEPT_SET_ITEM_SEQUENCE; - --- concept_set_item -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.concept_set_item_sequence START WITH '; - SELECT nvl2(max(concept_set_item_id), max(concept_set_item_id) + 1, 1) INTO val FROM ${ohdsiSchema}.concept_set_item; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- concept_set_negative_controls -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence START WITH '; - SELECT nvl2(max(id), max(id) + 1, 1) INTO val FROM ${ohdsiSchema}.concept_set_negative_controls; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- feasibility_study -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.feasibility_study_sequence START WITH '; - SELECT nvl2(max(id), max(id) + 1, 1) INTO val FROM ${ohdsiSchema}.feasibility_study; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- ir_analysis -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.ir_analysis_sequence START WITH '; - SELECT nvl2(max(id), max(id) + 1, 1) INTO val FROM ${ohdsiSchema}.ir_analysis; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- plp -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.plp_sequence START WITH '; - SELECT nvl2(max(plp_id), max(plp_id) + 1, 1) INTO val FROM ${ohdsiSchema}.plp; - EXECUTE IMMEDIATE stmt || val; -END; -/ \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.2.6.20180215152023__source_key_unique.sql b/src/main/resources/db/migration/oracle/V2.2.6.20180215152023__source_key_unique.sql deleted file mode 100644 index fecde49754..0000000000 --- a/src/main/resources/db/migration/oracle/V2.2.6.20180215152023__source_key_unique.sql +++ /dev/null @@ -1 +0,0 @@ -alter table ${ohdsiSchema}.source ADD CONSTRAINT source_key_unique UNIQUE (source_key); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.3.0.20180302143300__negative_control_redo.sql b/src/main/resources/db/migration/oracle/V2.3.0.20180302143300__negative_control_redo.sql deleted file mode 100644 index 303d88c62e..0000000000 --- a/src/main/resources/db/migration/oracle/V2.3.0.20180302143300__negative_control_redo.sql +++ /dev/null @@ -1,39 +0,0 @@ -DROP SEQUENCE ${ohdsiSchema}.negative_controls_sequence; - -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence START WITH 1 MAXVALUE 9223372036854775807 NOCYCLE; - -DROP TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS; - -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id INTEGER NOT NULL, - evidence_job_id NUMBER(19) NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - concept_set_name varchar(255) NOT NULL, - negative_control INTEGER NOT NULL, - concept_id INTEGER NOT NULL, - concept_name varchar(255) NOT NULL, - domain_id varchar(255) NOT NULL, - sort_order NUMBER(19), - descendant_pmid_count INTEGER, - exact_pmid_count INTEGER, - parent_pmid_count INTEGER, - ancestor_pmid_count INTEGER, - ind_ci INTEGER, - too_broad INTEGER, - drug_induced INTEGER, - pregnancy INTEGER, - descendant_splicer_cnt NUMBER(19), - exact_splicer_cnt NUMBER(19), - parent_splicer_cnt NUMBER(19), - ancestor_splicer_cnt NUMBER(19), - descendant_faers_cnt NUMBER(19), - exact_faers_cnt NUMBER(19), - parent_faers_cnt NUMBER(19), - ancestor_faers_cnt NUMBER(19), - user_excluded INTEGER, - user_included INTEGER, - optimized_out INTEGER, - not_prevalent INTEGER, - CONSTRAINT PK_CONCEPT_SET_NC PRIMARY KEY (id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.3.0.20180302143400__alter_cs_gen_info.sql b/src/main/resources/db/migration/oracle/V2.3.0.20180302143400__alter_cs_gen_info.sql deleted file mode 100644 index 433b6ab645..0000000000 --- a/src/main/resources/db/migration/oracle/V2.3.0.20180302143400__alter_cs_gen_info.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info ADD params CLOB; - -UPDATE ${ohdsiSchema}.concept_set_generation_info set params = '{}'; - -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info MODIFY (params NOT NULL); diff --git a/src/main/resources/db/migration/oracle/V2.3.0.20180330124512__add_source_permissions.sql b/src/main/resources/db/migration/oracle/V2.3.0.20180330124512__add_source_permissions.sql deleted file mode 100644 index 2209bb0412..0000000000 --- a/src/main/resources/db/migration/oracle/V2.3.0.20180330124512__add_source_permissions.sql +++ /dev/null @@ -1,40 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:*:daimons:*:set-priority:post', 'Set priority daimons'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT - ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'source:*:daimons:*:set-priority:post' - AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:post', 'Create source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'source:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:*:put', 'Edit source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'source:*:put' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:*:delete', 'Delete source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'source:*:delete' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:details:*:get', 'Read source details'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'source:details:*:get' AND sr.name IN ('admin'); diff --git a/src/main/resources/db/migration/oracle/V2.3.0.20180405164306__add_profile_permission.sql b/src/main/resources/db/migration/oracle/V2.3.0.20180405164306__add_profile_permission.sql deleted file mode 100644 index a72b21eb88..0000000000 --- a/src/main/resources/db/migration/oracle/V2.3.0.20180405164306__add_profile_permission.sql +++ /dev/null @@ -1,15 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT - ${ohdsiSchema}.sec_permission_id_seq.nextval, - '*:person:*:get:dates', - 'View calendar dates on person profiles' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT - ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = '*:person:*:get:dates' - AND sr.name IN ('admin', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.3.0.20180425185900__cohort_analysis_generation_info.sql b/src/main/resources/db/migration/oracle/V2.3.0.20180425185900__cohort_analysis_generation_info.sql deleted file mode 100644 index db65993aa4..0000000000 --- a/src/main/resources/db/migration/oracle/V2.3.0.20180425185900__cohort_analysis_generation_info.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_analysis_gen_info ( - source_id Number(10) NOT NULL, - cohort_id Number(10) NOT NULL, - last_execution Timestamp(3), - execution_duration Number(10), - fail_message varchar(2000), - PRIMARY KEY (source_id, cohort_id) -); - -CREATE TABLE ${ohdsiSchema}.cohort_analysis_list_xref ( - source_id Number(10), - cohort_id Number(10), - analysis_id Number(10)); - -ALTER TABLE ${ohdsiSchema}.cohort_analysis_gen_info ADD CONSTRAINT FK_cagi_cohort_id FOREIGN KEY (cohort_id) REFERENCES ${ohdsiSchema}.cohort_definition (ID); -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ADD CONSTRAINT FK_calx_source_id FOREIGN KEY (source_id, cohort_id) REFERENCES ${ohdsiSchema}.cohort_analysis_gen_info (source_id, cohort_id); diff --git a/src/main/resources/db/migration/oracle/V2.3.0.20180427114800__sec_user_unique.sql b/src/main/resources/db/migration/oracle/V2.3.0.20180427114800__sec_user_unique.sql deleted file mode 100644 index f215c8cc82..0000000000 --- a/src/main/resources/db/migration/oracle/V2.3.0.20180427114800__sec_user_unique.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD CONSTRAINT sec_user_login_unique UNIQUE (login); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.4.0.20180508090000__source-credentials.sql b/src/main/resources/db/migration/oracle/V2.4.0.20180508090000__source-credentials.sql deleted file mode 100644 index fcd2b465f7..0000000000 --- a/src/main/resources/db/migration/oracle/V2.4.0.20180508090000__source-credentials.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD (username varchar2(255)); -ALTER TABLE ${ohdsiSchema}.source ADD (password varchar2(255)); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.4.0.20180516223100__roles-unique.sql b/src/main/resources/db/migration/oracle/V2.4.0.20180516223100__roles-unique.sql deleted file mode 100644 index 9f7b571325..0000000000 --- a/src/main/resources/db/migration/oracle/V2.4.0.20180516223100__roles-unique.sql +++ /dev/null @@ -1 +0,0 @@ -alter table ${ohdsiSchema}.sec_role ADD CONSTRAINT sec_role_name_uq UNIQUE (name); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.4.3.20180619113700__permission_for_my_user.sql b/src/main/resources/db/migration/oracle/V2.4.3.20180619113700__permission_for_my_user.sql deleted file mode 100644 index 85dfd36ab4..0000000000 --- a/src/main/resources/db/migration/oracle/V2.4.3.20180619113700__permission_for_my_user.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:me:get', 'Get info about current user (myself)'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT - ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:me:get' - AND sr.name IN ('public'); diff --git a/src/main/resources/db/migration/oracle/V2.4.3.20180702202700__permission_for_ir_execution.sql b/src/main/resources/db/migration/oracle/V2.4.3.20180702202700__permission_for_ir_execution.sql deleted file mode 100644 index f4ea92773d..0000000000 --- a/src/main/resources/db/migration/oracle/V2.4.3.20180702202700__permission_for_ir_execution.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'ir:*:execute:*:get', - 'Execute Incidence Rate job' from dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'ir:*:execute:*:get' AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/oracle/V2.4.3.20180703144901__permission_for_evidence.sql b/src/main/resources/db/migration/oracle/V2.4.3.20180703144901__permission_for_evidence.sql deleted file mode 100644 index 77f65a844a..0000000000 --- a/src/main/resources/db/migration/oracle/V2.4.3.20180703144901__permission_for_evidence.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'evidence:*:negativecontrols:post', - 'Execute evidence job' from dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'evidence:*:negativecontrols:post' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql b/src/main/resources/db/migration/oracle/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql deleted file mode 100644 index 187de6efa0..0000000000 --- a/src/main/resources/db/migration/oracle/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_analysis_gen_info ADD(progress INT DEFAULT 0); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.5.0.20180713123456__cem_v_1.sql b/src/main/resources/db/migration/oracle/V2.5.0.20180713123456__cem_v_1.sql deleted file mode 100644 index ae93145c50..0000000000 --- a/src/main/resources/db/migration/oracle/V2.5.0.20180713123456__cem_v_1.sql +++ /dev/null @@ -1,15 +0,0 @@ -DELETE FROM ${ohdsiSchema}.CONCEPT_SET_GENERATION_INFO; - -DROP SEQUENCE ${ohdsiSchema}.negative_controls_sequence; - -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence START WITH 1 MAXVALUE 9223372036854775807 NOCYCLE; - -DROP TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS; - -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id INTEGER NOT NULL, - evidence_job_id NUMBER(19) NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - CONSTRAINT PK_CONCEPT_SET_NC PRIMARY KEY (id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.5.0.20180720117120__source-connection-check-rule.sql b/src/main/resources/db/migration/oracle/V2.5.0.20180720117120__source-connection-check-rule.sql deleted file mode 100644 index f28c6b8779..0000000000 --- a/src/main/resources/db/migration/oracle/V2.5.0.20180720117120__source-connection-check-rule.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:connection:*:get', 'Check source connection'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'source:connection:*:get' AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.5.0.20180725172844__add-ad-import-permissions.sql b/src/main/resources/db/migration/oracle/V2.5.0.20180725172844__add-ad-import-permissions.sql deleted file mode 100644 index ec69b3fa04..0000000000 --- a/src/main/resources/db/migration/oracle/V2.5.0.20180725172844__add-ad-import-permissions.sql +++ /dev/null @@ -1,64 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:providers:get', 'Get list of authentication providers AD/LDAP' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:providers:get' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:import:*:groups:get', 'Search groups in AD/LDAP' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:import:*:groups:get' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:import:*:post', 'Search users in AD/LDAP' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:import:*:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:import:post', 'Import users from AD/LDAP' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:import:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:import:*:mapping:post', 'Save Atlas roles mappings to LDAP groups' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:import:*:mapping:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:import:*:mapping:get', 'Read Atlas roles mappings to LDAP groups' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:import:*:mapping:get' AND sr.name IN ('admin'); - -CREATE SEQUENCE ${ohdsiSchema}.sec_role_group_seq; - -CREATE TABLE ${ohdsiSchema}.sec_role_group( - id INTEGER PRIMARY KEY NOT NULL, - provider VARCHAR2(32) NOT NULL, - group_dn VARCHAR2(2000) NOT NULL, - group_name VARCHAR2(255), - role_id INTEGER NOT NULL, - CONSTRAINT role_group_prov_uniq UNIQUE(provider, group_dn, role_id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql b/src/main/resources/db/migration/oracle/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql deleted file mode 100644 index dadc650cba..0000000000 --- a/src/main/resources/db/migration/oracle/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql +++ /dev/null @@ -1,8 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source - ADD (krb_auth_method VARCHAR2(10) DEFAULT 'PASSWORD' NOT NULL); -ALTER TABLE ${ohdsiSchema}.source - ADD (keytab_name VARCHAR2(50)); -ALTER TABLE ${ohdsiSchema}.source - ADD (krb_keytab BLOB); -ALTER TABLE ${ohdsiSchema}.source - ADD (krb_admin_server VARCHAR2(50)); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.5.0.20180817154116__add-extra-import-permissions.sql b/src/main/resources/db/migration/oracle/V2.5.0.20180817154116__add-extra-import-permissions.sql deleted file mode 100644 index 6f68a3f80f..0000000000 --- a/src/main/resources/db/migration/oracle/V2.5.0.20180817154116__add-extra-import-permissions.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'user:import:*:test:get', 'Check LDAP/AD connection' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'user:import:*:test:get' AND sr.name IN ('admin'); diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20180731092421__cohort-characterization.sql b/src/main/resources/db/migration/oracle/V2.6.0.20180731092421__cohort-characterization.sql deleted file mode 100644 index ee58cbef31..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20180731092421__cohort-characterization.sql +++ /dev/null @@ -1,284 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cohort_characterization_seq; -CREATE TABLE ${ohdsiSchema}.cohort_characterization -( - id NUMBER(19) PRIMARY KEY, - name VARCHAR(255) NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE DEFAULT sysdate NOT NULL, - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - hash_code INTEGER NULL -); - -ALTER TABLE ${ohdsiSchema}.cohort_characterization - ADD CONSTRAINT fk_cc_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id); - -ALTER TABLE ${ohdsiSchema}.cohort_characterization - ADD CONSTRAINT fk_cc_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id); - - - -CREATE SEQUENCE ${ohdsiSchema}.cc_param_sequence; -CREATE TABLE ${ohdsiSchema}.cc_param -( - id NUMBER(19) PRIMARY KEY, - cohort_characterization_id NUMBER(19) NOT NULL, - name VARCHAR(255), - value VARCHAR(255) -); - -ALTER TABLE ${ohdsiSchema}.cc_param - ADD CONSTRAINT fk_ccp_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization (id); - - - -CREATE SEQUENCE ${ohdsiSchema}.fe_analysis_sequence; -CREATE TABLE ${ohdsiSchema}.fe_analysis -( - id NUMBER(19) PRIMARY KEY, - type VARCHAR(255), - name VARCHAR(255), - domain VARCHAR(255), - descr VARCHAR(1000), - value VARCHAR(255), - design CLOB, - is_locked NUMBER(1), - stat_type VARCHAR(255) -); - - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:post', 'Create cohort characterization' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:import:post', 'Import cohort characterization' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:get', 'Get cohort characterization' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:get', 'Get cohort characterizations list' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:generation:get', 'Get cohort characterization generations' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:get', 'Get cohort characterization generation' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:delete', 'Delete cohort characterization generation and results' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:result:get', 'Get cohort characterization generation results' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:design:get', 'Get cohort characterization generation design' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:export', 'Export cohort characterization' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'feature-analysis:get', 'Get feature analyses list' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'feature-analysis:*:get', 'Get feature analysis' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'feature-analysis:post', 'Create feature analysis' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:post', - 'cohort-characterization:get', - 'cohort-characterization:import:post', - 'cohort-characterization:*:get', - 'cohort-characterization:*:generation:get', - 'cohort-characterization:generation:*:get', - 'cohort-characterization:generation:*:delete', - 'cohort-characterization:generation:*:result:get', - 'cohort-characterization:generation:*:design:get', - 'cohort-characterization:*:export', - - 'feature-analysis:get', - 'feature-analysis:*:get', - 'feature-analysis:post' -) -AND sr.name IN ('Atlas users'); - --- SOURCE based permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval AS id, - 'source:' || source_key || ':access' AS value, - 'Access to Source with SourceKey = ' || source_key AS description -FROM ${ohdsiSchema}.source; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.source -join ${ohdsiSchema}.sec_permission sp ON sp.value IN ('source:' || source_key || ':access') -join ${ohdsiSchema}.sec_role sr ON sr.name = 'Source user (' || source_key || ')'; - -CREATE TABLE ${ohdsiSchema}.cc_analysis -( - cohort_characterization_id NUMBER(19) NOT NULL, - fe_analysis_id NUMBER(19) NOT NULL -); - -ALTER TABLE ${ohdsiSchema}.cc_analysis - ADD CONSTRAINT fk_c_char_a_fe_analysis FOREIGN KEY (fe_analysis_id) -REFERENCES ${ohdsiSchema}.fe_analysis(id); - -ALTER TABLE ${ohdsiSchema}.cc_analysis - ADD CONSTRAINT fk_c_char_a_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization(id); - -CREATE SEQUENCE ${ohdsiSchema}.fe_analysis_criteria_sequence; -CREATE TABLE ${ohdsiSchema}.fe_analysis_criteria -( - id NUMBER(19) PRIMARY KEY, - name VARCHAR(255), - expression CLOB, - fe_analysis_id NUMBER(19) -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD CONSTRAINT fk_fec_fe_analysis FOREIGN KEY (fe_analysis_id) -REFERENCES ${ohdsiSchema}.fe_analysis(id); - -CREATE TABLE ${ohdsiSchema}.cc_cohort -( - cohort_characterization_id NUMBER(19) NOT NULL, - cohort_id NUMBER(10) NOT NULL -); - -ALTER TABLE ${ohdsiSchema}.cc_cohort - ADD CONSTRAINT fk_c_char_c_fe_analysis FOREIGN KEY (cohort_id) -REFERENCES ${ohdsiSchema}.cohort_definition(id); - -ALTER TABLE ${ohdsiSchema}.cc_cohort - ADD CONSTRAINT fk_c_char_c_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization(id); - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details ADD hash_code NUMBER(10) null; - -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Range Group Short Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the short term window.', null, 'MeasurementRangeGroupShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Start Long Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the long term window.', null, 'ConditionGroupEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Start Medium Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the medium term window.', null, 'DrugGroupEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Short Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the short term window.', null, 'ConditionEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Long Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the long term window.', null, 'DrugGroupEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Overlapping', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with the end of the risk window.', null, 'ConditionGroupEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Short Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the short term window.', null, 'DrugGroupEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Medium Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the medium term window.', null, 'DrugGroupEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Start Long Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the long term window.', null, 'ConditionEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Any Time Prior', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any time prior to index.', null, 'ConditionEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Start Medium Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the medium term window.', null, 'ConditionGroupEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Exposure Long Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the long term window.', null, 'DrugExposureLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Range Group Long Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the long term window.', null, 'MeasurementRangeGroupLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Range Group Medium Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the medium term window.', null, 'MeasurementRangeGroupMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Any Time Prior', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any time prior to index.', null, 'DrugGroupEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Medium Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the medium term window.', null, 'ConditionEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Overlapping', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with the end of the risk window.', null, 'ConditionEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Start Short Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the short term window.', null, 'ConditionEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Start Short Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the short term window.', null, 'DrugGroupEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Short Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the short term window.', null, 'ConditionGroupEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Start Medium Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the medium term window.', null, 'ConditionEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Procedure Occurrence Medium Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the medium term window.', null, 'ProcedureOccurrenceMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Era Long Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the long term window.', null, 'ConditionEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Start Long Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the long term window.', null, 'DrugGroupEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Group Era Overlapping', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with the end of the risk window.', null, 'DrugGroupEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Range Group Any Time Prior', NULL, 'Covariates indicating whether measurements are below, within, or above normal range any time prior to index.', null, 'MeasurementRangeGroupAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Any Time Prior', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any time prior to index.', null, 'ConditionGroupEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Exposure Any Time Prior', 'DRUG', 'One covariate per drug in the drug_exposure table starting any time prior to index.', null, 'DrugExposureAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Start Short Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the short term window.', null, 'ConditionGroupEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Long Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the long term window.', null, 'ConditionGroupEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Exposure Short Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the short term window.', null, 'DrugExposureShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Group Era Medium Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the medium term window.', null, 'ConditionGroupEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Exposure Medium Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the medium term window.', null, 'DrugExposureMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Observation Short Term', 'OBSERVATION', 'One covariate per observation in the observation table in the short term window.', null, 'ObservationShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Start Long Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the long term window.', null, 'DrugEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Dcsi', 'CONDITION', 'The Diabetes Comorbidity Severity Index (DCSI) using all conditions prior to the window end.', null, 'Dcsi', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Start Short Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the long short window.', null, 'DrugEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Ingredient Count Medium Term', 'DRUG', 'The number of distinct ingredients observed in the medium term window.', null, 'DistinctIngredientCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Any Time Prior', 'MEASUREMENT', 'One covariate per measurement in the measurement table any time prior to index.', null, 'MeasurementAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Medium Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the medium term window.', null, 'MeasurementMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Condition Count Long Term', 'CONDITION', 'The number of distinct condition concepts observed in the long term window.', null, 'DistinctConditionCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Value Long Term', NULL, 'One covariate containing the value per measurement-unit combination in the long term window.', null, 'MeasurementValueLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Short Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the short window.', null, 'DrugEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Overlapping', 'DRUG', 'One covariate per drug in the drug_era table overlapping with the end of the risk window.', null, 'DrugEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Observation Any Time Prior', 'OBSERVATION', 'One covariate per observation in the observation table any time prior to index.', null, 'ObservationAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Ingredient Count Long Term', 'DRUG', 'The number of distinct ingredients observed in the long term window.', null, 'DistinctIngredientCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Procedure Count Short Term', 'PROCEDURE', 'The number of distinct procedures observed in the short term window.', null, 'DistinctProcedureCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Condition Count Short Term', 'CONDITION', 'The number of distinct condition concepts observed in the short term window.', null, 'DistinctConditionCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Charlson Index', 'CONDITION', 'The Charlson comorbidity index (Romano adaptation) using all conditions prior to the window end.', null, 'CharlsonIndex', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Short Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the short term window.', null, 'MeasurementShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Procedure Count Medium Term', 'PROCEDURE', 'The number of distinct procedures observed in the medium term window.', null, 'DistinctProcedureCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Device Exposure Any Time Prior', 'DEVICE', 'One covariate per device in the device exposure table starting any time prior to index.', null, 'DeviceExposureAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Observation Long Term', 'OBSERVATION', 'One covariate per observation in the observation table in the long term window.', null, 'ObservationLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Condition Count Medium Term', 'CONDITION', 'The number of distinct condition concepts observed in the medium term window.', null, 'DistinctConditionCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Procedure Occurrence Short Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the short term window.', null, 'ProcedureOccurrenceShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Observation Medium Term', 'OBSERVATION', 'One covariate per observation in the observation table in the medium term window.', null, 'ObservationMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Device Exposure Long Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the long term window.', null, 'DeviceExposureLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Value Short Term', NULL, 'One covariate containing the value per measurement-unit combination in the short term window.', null, 'MeasurementValueShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Device Exposure Medium Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the medium term window.', null, 'DeviceExposureMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Long Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the long term window.', null, 'MeasurementLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Value Medium Term', NULL, 'One covariate containing the value per measurement-unit combination in the medium term window.', null, 'MeasurementValueMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Start Medium Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the medium term window.', null, 'DrugEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Measurement Value Any Time Prior', NULL, 'One covariate containing the value per measurement-unit combination any time prior to index.', null, 'MeasurementValueAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Ingredient Count Short Term', 'DRUG', 'The number of distinct ingredients observed in the short term window.', null, 'DistinctIngredientCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Device Exposure Short Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the short term window.', null, 'DeviceExposureShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Procedure Count Long Term', 'PROCEDURE', 'The number of distinct procedures observed in the long term window.', null, 'DistinctProcedureCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Occurrence Long Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the long term window.', null, 'ConditionOccurrenceLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Index Month', 'DEMOGRAPHICS', 'Month of the index date.', null, 'DemographicsIndexMonth', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Occurrence Any Time Prior', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting any time prior to index.', null, 'ConditionOccurrenceAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Ethnicity', 'DEMOGRAPHICS', 'Ethnicity of the subject.', null, 'DemographicsEthnicity', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Age Group', 'DEMOGRAPHICS', 'Age of the subject on the index date (in 5 year age groups)', null, 'DemographicsAgeGroup', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Race', 'DEMOGRAPHICS', 'Race of the subject.', null, 'DemographicsRace', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Prior Observation Time', 'DEMOGRAPHICS', 'Number of continuous days of observation time preceding the index date.', null, 'DemographicsPriorObservationTime', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Gender', 'DEMOGRAPHICS', 'Gender of the subject.', null, 'DemographicsGender', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Index Year Month', 'DEMOGRAPHICS', 'Both calendar year and month of the index date in a single variable.', null, 'DemographicsIndexYearMonth', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Occurrence Medium Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the medium term window.', null, 'ConditionOccurrenceMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Age', 'DEMOGRAPHICS', 'Age of the subject on the index date (in years).', null, 'DemographicsAge', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Chads 2', 'CONDITION', 'The CHADS2 score using all conditions prior to the window end.', null, 'Chads2', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Time In Cohort', 'DEMOGRAPHICS', 'Number of days of observation time during cohort period.', null, 'DemographicsTimeInCohort', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Index Year', 'DEMOGRAPHICS', 'Year of the index date.', null, 'DemographicsIndexYear', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Demographics Post Observation Time', 'DEMOGRAPHICS', 'Number of continuous days of observation time following the index date.', null, 'DemographicsPostObservationTime', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Chads 2 Vasc', 'CONDITION', 'The CHADS2VASc score using all conditions prior to the window end.', null, 'Chads2Vasc', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Occurrence Primary Inpatient Long Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the long term window.', null, 'ConditionOccurrencePrimaryInpatientLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Procedure Occurrence Long Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the long term window.', null, 'ProcedureOccurrenceLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Occurrence Primary Inpatient Any Time Prior', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting any time prior to index.', null, 'ConditionOccurrencePrimaryInpatientAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Long Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the long term window.', null, 'DrugEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Procedure Occurrence Any Time Prior', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table any time prior to index.', null, 'ProcedureOccurrenceAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Medium Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the medium term window.', null, 'DrugEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Drug Era Any Time Prior', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any time prior to index.', null, 'DrugEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Condition Occurrence Short Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the short term window.', null, 'ConditionOccurrenceShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Measurement Count Short Term', 'MEASUREMENT', 'The number of distinct measurements observed in the short term window.', null, 'DistinctMeasurementCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Visit Concept Count Short Term', 'VISIT', 'The number of visits observed in the short term window, stratified by visit concept ID.', null, 'VisitConceptCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Observation Count Medium Term', 'OBSERVATION', 'The number of distinct observations observed in the medium term window.', null, 'DistinctObservationCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Observation Count Long Term', 'OBSERVATION', 'The number of distinct observations observed in the long term window.', null, 'DistinctObservationCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Measurement Count Long Term', 'MEASUREMENT', 'The number of distinct measurements observed in the long term window.', null, 'DistinctMeasurementCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Measurement Count Medium Term', 'MEASUREMENT', 'The number of distinct measurements observed in the medium term window.', null, 'DistinctMeasurementCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Distinct Observation Count Short Term', 'OBSERVATION', 'The number of distinct observations observed in the short term window.', null, 'DistinctObservationCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Visit Concept Count Long Term', 'VISIT', 'The number of visits observed in the long term window, stratified by visit concept ID.', null, 'VisitConceptCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Visit Concept Count Medium Term', 'VISIT', 'The number of visits observed in the medium term window, stratified by visit concept ID.', null, 'VisitConceptCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Visit Count Medium Term', 'VISIT', 'The number of visits observed in the medium term window.', null, 'VisitCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Visit Count Short Term', 'VISIT', 'The number of visits observed in the short term window.', null, 'VisitCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Occurrence Primary Inpatient Short Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the short term window.', null, 'ConditionOccurrencePrimaryInpatientShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Visit Count Long Term', 'VISIT', 'The number of visits observed in the long term window.', null, 'VisitCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) VALUES(${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Occurrence Primary Inpatient Medium Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the medium term window.', null, 'ConditionOccurrencePrimaryInpatientMediumTerm', 1, 'PREVALENCE'); - -CREATE TABLE ${ohdsiSchema}.analysis_generation_info ( - job_execution_id NUMBER(10) NOT NULL, - design CLOB NOT NULL, - hash_code VARCHAR(16) NOT NULL, - created_by_id NUMBER(10) -); - -ALTER TABLE ${ohdsiSchema}.analysis_generation_info - ADD CONSTRAINT fk_cgi_sec_user FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20180731092422__cohort-characterization-generations_view.sql b/src/main/resources/db/migration/oracle/V2.6.0.20180731092422__cohort-characterization-generations_view.sql deleted file mode 100644 index 3bf3cb9707..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20180731092422__cohort-characterization-generations_view.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as - SELECT job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(cc_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) cc_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ORDER BY start_time DESC; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20180906220021__pathway_analysis.sql b/src/main/resources/db/migration/oracle/V2.6.0.20180906220021__pathway_analysis.sql deleted file mode 100644 index bc64e20e66..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20180906220021__pathway_analysis.sql +++ /dev/null @@ -1,105 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.pathway_analysis_sequence; -CREATE TABLE ${ohdsiSchema}.pathway_analysis -( - id NUMBER(19) NOT NULL, - name VARCHAR(255) NOT NULL, - combination_window INTEGER, - min_cell_count INTEGER, - max_depth INTEGER, - allow_repeats Number(1) DEFAULT 0, - created_by_id INTEGER, - created_date Timestamp(3), - modified_by_id INTEGER, - modified_date Timestamp(3), - hash_code INTEGER, - CONSTRAINT PK_pathway_analysis PRIMARY KEY (id) -); - -CREATE SEQUENCE ${ohdsiSchema}.pathway_cohort_sequence; - -CREATE TABLE ${ohdsiSchema}.pathway_target_cohort -( - id NUMBER(19), - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - pathway_analysis_id INTEGER NOT NULL, - CONSTRAINT PK_pathway_target_cohort PRIMARY KEY (id), - CONSTRAINT FK_ptc_cd_id - FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_ptc_pa_id - FOREIGN KEY (pathway_analysis_id) - REFERENCES ${ohdsiSchema}.pathway_analysis (id) -); - -CREATE TABLE ${ohdsiSchema}.pathway_event_cohort -( - id NUMBER(19), - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - pathway_analysis_id INTEGER NOT NULL, - CONSTRAINT PK_pathway_event_cohort PRIMARY KEY (id), - CONSTRAINT FK_pec_cd_id - FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_pec_pa_id - FOREIGN KEY (pathway_analysis_id) - REFERENCES ${ohdsiSchema}.pathway_analysis (id) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:post', 'Create Pathways Analysis' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:import:post', 'Import Pathways Analysis' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:get', 'Get Pathways Analyses list' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:get', 'Get Pathways Analysis instance' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:generation:get', 'Get Pathways Analysis generations list' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:generation:*:get', 'Get Pathways Analysis generation instance' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:generation:*:result:get', 'Get Pathways Analysis generation results' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:generation:*:design:get', 'Get Pathways Analysis generation design' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:export:get', 'Export Pathways Analysis' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'pathway-analysis:post', - 'pathway-analysis:import:post', - 'pathway-analysis:get', - 'pathway-analysis:*:get', - 'pathway-analysis:*:generation:get', - 'pathway-analysis:generation:*:get', - 'pathway-analysis:generation:*:result:get', - 'pathway-analysis:generation:*:design:get', - 'pathway-analysis:*:export:get' -) -AND sr.name IN ('Atlas users'); - -CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as -SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(pa_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) pathway_analysis_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -ORDER BY start_time DESC; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql b/src/main/resources/db/migration/oracle/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql deleted file mode 100644 index 267b293379..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql +++ /dev/null @@ -1,90 +0,0 @@ --- Cohort Definition - -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_cd_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_cd_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); - - -UPDATE ${ohdsiSchema}.cohort_definition d SET created_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = d.created_by) - WHERE d.created_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = d.created_by); - -UPDATE ${ohdsiSchema}.cohort_definition d SET modified_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = d.modified_by) - WHERE d.modified_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = d.modified_by); - -ALTER TABLE ${ohdsiSchema}.cohort_definition DROP(created_by, modified_by); - --- Feasibility Study - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_fs_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_fs_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.feasibility_study f SET created_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = f.created_by) - WHERE f.created_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = f.created_by); - -UPDATE ${ohdsiSchema}.feasibility_study f SET modified_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = f.modified_by) - WHERE f.modified_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = f.modified_by); - -ALTER TABLE ${ohdsiSchema}.feasibility_study DROP(created_by, modified_by); - --- Incidence Rate Analysis - -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_ira_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_ira_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.ir_analysis i SET created_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = i.created_by) - WHERE i.created_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = i.created_by); - -UPDATE ${ohdsiSchema}.ir_analysis i SET modified_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = i.modified_by) - WHERE i.modified_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = i.modified_by); - -ALTER TABLE ${ohdsiSchema}.ir_analysis DROP(created_by, modified_by); - --- CCA - -ALTER TABLE ${ohdsiSchema}.cca ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_cca_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.cca ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_cca_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.cca c SET created_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.created_by) - WHERE c.created_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.created_by); - -UPDATE ${ohdsiSchema}.cca c SET modified_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.modified_by) - WHERE c.modified_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.modified_by); - -ALTER TABLE ${ohdsiSchema}.cca DROP(created_by, modified_by); - --- ConceptSet - -ALTER TABLE ${ohdsiSchema}.concept_set ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_cs_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.concept_set ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_cs_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.concept_set c SET created_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.created_by) - WHERE c.created_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.created_by); - -UPDATE ${ohdsiSchema}.concept_set c SET modified_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.modified_by) - WHERE c.modified_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.modified_by); - -ALTER TABLE ${ohdsiSchema}.concept_set DROP(created_by, modified_by); - --- Patient Level Prediction - -ALTER TABLE ${ohdsiSchema}.plp ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_plp_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.plp ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_plp_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.plp p SET created_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = p.created_by) - WHERE p.created_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = p.created_by); - -UPDATE ${ohdsiSchema}.plp p SET modified_by_id = - (SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = p.modified_by) - WHERE p.modified_by IS NOT NULL AND EXISTS(SELECT u.id FROM ${ohdsiSchema}.sec_user u WHERE u.login = p.modified_by); - -ALTER TABLE ${ohdsiSchema}.plp DROP(created_by, modified_by); diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20180921202400__fe-analysis-id.sql b/src/main/resources/db/migration/oracle/V2.6.0.20180921202400__fe-analysis-id.sql deleted file mode 100644 index f06cc31f11..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20180921202400__fe-analysis-id.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis modify (id INTEGER); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181001200021__estimation_prediction.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181001200021__estimation_prediction.sql deleted file mode 100644 index 5745ddd5e4..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181001200021__estimation_prediction.sql +++ /dev/null @@ -1,46 +0,0 @@ --- Estimation -CREATE SEQUENCE ${ohdsiSchema}.estimation_seq; -CREATE TABLE ${ohdsiSchema}.estimation -( - estimation_id NUMBER(19), - name VARCHAR(255) NOT NULL, - type VARCHAR(255) NOT NULL, - description VARCHAR(1000), - specification CLOB NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP, - modified_by_id INTEGER, - modified_date TIMESTAMP, - CONSTRAINT pk_estimation PRIMARY KEY (estimation_id) -); - -ALTER TABLE ${ohdsiSchema}.estimation - ADD CONSTRAINT fk_estimation_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id); - -ALTER TABLE ${ohdsiSchema}.estimation - ADD CONSTRAINT fk_estimation_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id); - --- Prediction -CREATE SEQUENCE ${ohdsiSchema}.prediction_seq; -CREATE TABLE ${ohdsiSchema}.prediction -( - prediction_id NUMBER(19), - name VARCHAR(255) NOT NULL, - description VARCHAR(1000), - specification CLOB NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP, - modified_by_id INTEGER, - modified_date TIMESTAMP, - CONSTRAINT pk_prediction PRIMARY KEY (prediction_id) -); - -ALTER TABLE ${ohdsiSchema}.prediction - ADD CONSTRAINT fk_prediction_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id); - -ALTER TABLE ${ohdsiSchema}.prediction - ADD CONSTRAINT fk_prediction_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181002110845__fe_analysis_conceptsets.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181002110845__fe_analysis_conceptsets.sql deleted file mode 100644 index 65872fc0f6..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181002110845__fe_analysis_conceptsets.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD conceptsets CLOB; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181005122300__schema-create-fe-conceptset.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181005122300__schema-create-fe-conceptset.sql deleted file mode 100644 index 4ff2cd9fe6..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181005122300__schema-create-fe-conceptset.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.fe_conceptset_sequence; - -CREATE TABLE ${ohdsiSchema}.fe_analysis_conceptset ( - id NUMBER(19) NOT NULL, - fe_analysis_id NUMBER(19) NOT NULL, - expression CLOB -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT pk_fe_conceptset_id PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT fk_fe_conceptset_fe_analysis FOREIGN KEY (fe_analysis_id) - REFERENCES ${ohdsiSchema}.fe_analysis(id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN conceptsets; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181008210200__source-deleted-at-field.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181008210200__source-deleted-at-field.sql deleted file mode 100644 index d7b00a6cb9..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181008210200__source-deleted-at-field.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD (deleted_date Timestamp(3)); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181009110500__fix-fe-analysis-types.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181009110500__fix-fe-analysis-types.sql deleted file mode 100644 index 3259a42e79..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181009110500__fix-fe-analysis-types.sql +++ /dev/null @@ -1,45 +0,0 @@ -UPDATE ${ohdsiSchema}.fe_analysis -SET stat_type = 'DISTRIBUTION' -WHERE type = 'PRESET' and TO_CHAR(design) IN ( - -- DemographicsAge.sql - 'DemographicsAge', - -- DemographicsTime.sql - 'DemographicsPriorObservationTime', - 'DemographicsPostObservationTime', - 'DemographicsTimeInCohort', - -- Chads2.sql - 'Chads2', - -- Chads2Vasc.sql - 'Chads2Vasc', - -- ConceptCounts.sql - 'DistinctConditionCountLongTerm', - 'DistinctConditionCountMediumTerm', - 'DistinctConditionCountShortTerm', - 'DistinctIngredientCountLongTerm', - 'DistinctIngredientCountMediumTerm', - 'DistinctIngredientCountShortTerm', - 'DistinctProcedureCountLongTerm', - 'DistinctProcedureCountMediumTerm', - 'DistinctProcedureCountShortTerm', - 'DistinctMeasurementCountLongTerm', - 'DistinctMeasurementCountMediumTerm', - 'DistinctMeasurementCountShortTerm', - 'DistinctObservationCountLongTerm', - 'DistinctObservationCountMediumTerm', - 'DistinctObservationCountShortTerm', - 'VisitCountLongTerm', - 'VisitCountMediumTerm', - 'VisitCountShortTerm', - 'VisitConceptCountLongTerm', - 'VisitConceptCountMediumTerm', - 'VisitConceptCountShortTerm', - -- MeasurementValue.sql - 'MeasurementValueAnyTimePrior', - 'MeasurementValueLongTerm', - 'MeasurementValueMediumTerm', - 'MeasurementValueShortTerm', - -- CharlsonIndex.sql - 'CharlsonIndex', - -- Dcsi.sql - 'Dcsi' -); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181009115500__fix-ple-plp-permissions.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181009115500__fix-ple-plp-permissions.sql deleted file mode 100644 index 584113fe1c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181009115500__fix-ple-plp-permissions.sql +++ /dev/null @@ -1,55 +0,0 @@ --- Estimation - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:post', 'Create Estimation' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:get', 'Get Estimation list' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:get', 'Get Estimation instance' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:copy:get', 'Copy Estimation instance' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:download:get', 'Download Estimation package' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:export:get', 'Export Estimation' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'estimation:post', - 'estimation:get', - 'estimation:*:get', - 'estimation:*:copy:get', - 'estimation:*:download:get', - 'estimation:*:export:get' -) -AND sr.name IN ('Atlas users'); - --- Prediction - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:post', 'Create Prediction' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:get', 'Get Prediction list' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:get', 'Get Prediction instance' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:copy:get', 'Copy Prediction instance' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:download:get', 'Download Prediction package' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:export:get', 'Export Prediction' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'prediction:post', - 'prediction:get', - 'prediction:*:get', - 'prediction:*:copy:get', - 'prediction:*:download:get', - 'prediction:*:export:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181010133216__schema-add-job-is-canceled.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181010133216__schema-add-job-is-canceled.sql deleted file mode 100644 index 039f47beb9..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181010133216__schema-add-job-is-canceled.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info ADD is_canceled NUMBER(1) DEFAULT 0 NOT NULL; - -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info ADD is_canceled NUMBER(1) DEFAULT 0 NOT NULL; - -ALTER TABLE ${ohdsiSchema}.feas_study_generation_info ADD is_canceled NUMBER(1) DEFAULT 0 NOT NULL; - -ALTER TABLE ${ohdsiSchema}.ir_execution ADD is_canceled NUMBER(1) DEFAULT 0 NOT NULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181010185036__schema-user-import-scheduler.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181010185036__schema-user-import-scheduler.sql deleted file mode 100644 index 55dddcb241..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181010185036__schema-user-import-scheduler.sql +++ /dev/null @@ -1,48 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.user_import_job_seq; - -CREATE TABLE ${ohdsiSchema}.user_import_job( - id NUMBER(19) NOT NULL, - is_enabled CHAR(1) DEFAULT '0' NOT NULL, - start_date TIMESTAMP WITH TIME ZONE, - frequency VARCHAR(100) NOT NULL, - recurring_times INTEGER NOT NULL, - recurring_until_date TIMESTAMP WITH TIME ZONE, - cron VARCHAR(255) NOT NULL, - last_executed_at TIMESTAMP WITH TIME ZONE, - executed_times INTEGER DEFAULT 0 NOT NULL, - is_closed CHAR(1) DEFAULT '0' NOT NULL, - provider_type VARCHAR(100) NOT NULL, - preserve_roles CHAR(1) DEFAULT '1' NOT NULL , - CONSTRAINT pk_user_import_job PRIMARY KEY(id) -); - -CREATE TABLE ${ohdsiSchema}.user_import_job_weekdays( - user_import_job_id NUMBER(19) NOT NULL, - day_of_week VARCHAR(100) NOT NULL, - CONSTRAINT pk_user_import_job_weekdays PRIMARY KEY(user_import_job_id, day_of_week) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:import:job:get', 'List user import jobs' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:import:job:post', 'Create new user import job' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:import:job:*:put', 'Update user import job' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:import:job:*:get', 'Get user import job' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:import:job:*:delete', 'Delete user import job' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:import:job:*:history:get', 'Get user import history' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'user:import:job:get', - 'user:import:job:post', - 'user:import:job:*:put', - 'user:import:job:*:get', - 'user:import:job:*:delete', - 'user:import:job:*:history:get') - AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql deleted file mode 100644 index 5a8bd7de78..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql +++ /dev/null @@ -1,23 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - provider_param.STRING_VAL as provider_type, - author_param.STRING_VAL as author - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS provider_param - ON job.JOB_EXECUTION_ID = provider_param.JOB_EXECUTION_ID AND provider_param.KEY_NAME = 'provider' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181015182101__role-group-mapping.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181015182101__role-group-mapping.sql deleted file mode 100644 index b4a8dadc0f..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181015182101__role-group-mapping.sql +++ /dev/null @@ -1,10 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_role_group ADD job_id NUMBER(19); - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ADD CONSTRAINT fk_role_group_job FOREIGN KEY(job_id) - REFERENCES ${ohdsiSchema}.user_import_job(id) ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.sec_role_group DROP CONSTRAINT role_group_prov_uniq; - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ADD CONSTRAINT UC_PROVIDER_GROUP_ROLE UNIQUE(provider, group_dn, role_id, job_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql deleted file mode 100644 index e8f470b05a..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql +++ /dev/null @@ -1,20 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD last_viewed_notifications_time TIMESTAMP WITH TIME ZONE; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'notifications:viewed:post', 'Remember last viewed notification timestamp' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'notifications:viewed:get', 'Get last viewed notification timestamp' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'notifications:get', 'Get notifications' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'notifications:viewed:post', - 'notifications:viewed:get', - 'notifications:get' -) -AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181024150353__separate_system_personal_roles.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181024150353__separate_system_personal_roles.sql deleted file mode 100644 index 06c9a052ae..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181024150353__separate_system_personal_roles.sql +++ /dev/null @@ -1,8 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_role ADD system_role CHAR(1) DEFAULT '0' NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_role DROP CONSTRAINT SEC_ROLE_NAME_UQ; - -UPDATE ${ohdsiSchema}.sec_role sr SET system_role = '1' - WHERE NOT EXISTS(SELECT * FROM ${ohdsiSchema}.sec_user WHERE login = sr.name); - -ALTER TABLE ${ohdsiSchema}.sec_role ADD CONSTRAINT SEC_ROLE_NAME_UQ UNIQUE (name, system_role); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181107165252__fe_criteria_type.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181107165252__fe_criteria_type.sql deleted file mode 100644 index 1ac07c2c1c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181107165252__fe_criteria_type.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD criteria_type VARCHAR(255); - -MERGE INTO ${ohdsiSchema}.fe_analysis_criteria fac -USING -( - SELECT fc.id, - CASE WHEN fa.stat_type = 'PREVALENCE' THEN 'CRITERIA_GROUP' - WHEN fa.stat_type = 'DISTRIBUTION' THEN 'WINDOWED_CRITERIA' END as criteria_type - FROM ${ohdsiSchema}.fe_analysis_criteria fc - JOIN ${ohdsiSchema}.fe_analysis fa ON fa.id = fc.fe_analysis_id -) data ON (fac.id = data.id) -WHEN MATCHED THEN UPDATE -SET fac.criteria_type = data.criteria_type; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.6.0.20181128150100__add_missing_pk.sql b/src/main/resources/db/migration/oracle/V2.6.0.20181128150100__add_missing_pk.sql deleted file mode 100644 index 15bbdba96b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.6.0.20181128150100__add_missing_pk.sql +++ /dev/null @@ -1,181 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cc_cohort_tmp -AS -SELECT DISTINCT cohort_characterization_id, cohort_id -FROM ${ohdsiSchema}.cc_cohort; - -DELETE FROM ${ohdsiSchema}.cc_cohort; - -INSERT INTO ${ohdsiSchema}.cc_cohort (cohort_characterization_id, cohort_id) -SELECT cohort_characterization_id, cohort_id -FROM ${ohdsiSchema}.cc_cohort_tmp; - -TRUNCATE TABLE ${ohdsiSchema}.cc_cohort_tmp; -DROP TABLE ${ohdsiSchema}.cc_cohort_tmp; - -ALTER TABLE ${ohdsiSchema}.ANALYSIS_GENERATION_INFO ADD CONSTRAINT pk_an_gen_info PRIMARY KEY (JOB_EXECUTION_ID); -ALTER TABLE ${ohdsiSchema}.cc_analysis ADD CONSTRAINT pk_cc_analysis PRIMARY KEY (cohort_characterization_id, fe_analysis_id); -ALTER TABLE ${ohdsiSchema}.cc_cohort ADD CONSTRAINT pk_cc_cohort PRIMARY KEY (cohort_characterization_id, cohort_id); -ALTER TABLE ${ohdsiSchema}.cca ADD CONSTRAINT pk_cca PRIMARY KEY (cca_id); -ALTER TABLE ${ohdsiSchema}.cca_execution_ext ADD CONSTRAINT pk_cca_exec_ext PRIMARY KEY (cca_execution_id); -ALTER TABLE ${ohdsiSchema}.cohort ADD CONSTRAINT pk_cohort PRIMARY KEY (cohort_definition_id, subject_id); -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ADD CONSTRAINT pk_cohort_an_list_xref PRIMARY KEY (source_id, cohort_id, analysis_id); -ALTER TABLE ${ohdsiSchema}.cohort_concept_map ADD CONSTRAINT pk_cohort_concept_map PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_inclusion ADD CONSTRAINT pk_cohort_incl PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_inclusion_result ADD CONSTRAINT pk_cohort_incl_res PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_inclusion_stats ADD CONSTRAINT pk_cohort_incl_stat PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_summary_stats ADD CONSTRAINT pk_cohort_summary_stat PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.CONCEPT_SET_ITEM ADD CONSTRAINT pk_concept_set_item PRIMARY KEY (CONCEPT_SET_ITEM_ID); -ALTER TABLE ${ohdsiSchema}.feas_study_inclusion_stats ADD CONSTRAINT pk_feas_st_incl_stats PRIMARY KEY (study_id); -ALTER TABLE ${ohdsiSchema}.feas_study_index_stats ADD CONSTRAINT pk_feas_st_indx_stats PRIMARY KEY (study_id); -ALTER TABLE ${ohdsiSchema}.feas_study_result ADD CONSTRAINT pk_feas_study_result PRIMARY KEY (study_id); -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion ADD CONSTRAINT pk_feas_inclusion PRIMARY KEY (study_id, sequence); -ALTER TABLE ${ohdsiSchema}.heracles_analysis ADD CONSTRAINT pk_heracles_analysis PRIMARY KEY (analysis_id); -ALTER TABLE ${ohdsiSchema}.PENELOPE_LAERTES_UNIVERSE ADD CONSTRAINT pk_penelope_lae_uni PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.plp ADD CONSTRAINT pk_plp PRIMARY KEY (PLP_ID); - - -ALTER TABLE ${ohdsiSchema}.cohort_features ADD (id NUMBER(19)); -CREATE SEQUENCE cohort_features_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.cohort_features_bir - BEFORE INSERT ON ${ohdsiSchema}.cohort_features - FOR EACH ROW - BEGIN - SELECT cohort_features_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.cohort_features SET id = cohort_features_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.cohort_features ADD CONSTRAINT pk_cohort_features PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.cohort_features_analysis_ref ADD (id NUMBER(19)); -CREATE SEQUENCE cohort_feat_anlys_ref_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.cohort_feat_anlys_ref_bir - BEFORE INSERT ON ${ohdsiSchema}.cohort_features_analysis_ref - FOR EACH ROW - BEGIN - SELECT cohort_feat_anlys_ref_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.cohort_features_analysis_ref SET id = cohort_feat_anlys_ref_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.cohort_features_analysis_ref ADD CONSTRAINT pk_coh_features_an_ref PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.cohort_features_dist ADD (id NUMBER(19)); -CREATE SEQUENCE cohort_features_dist_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.cohort_features_dist_bir - BEFORE INSERT ON ${ohdsiSchema}.cohort_features_dist - FOR EACH ROW - BEGIN - SELECT cohort_features_dist_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.cohort_features_dist SET id = cohort_features_dist_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.cohort_features_dist ADD CONSTRAINT pk_coh_features_dist PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.cohort_features_ref ADD (id NUMBER(19)); -CREATE SEQUENCE cohort_features_ref_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.cohort_features_ref_bir - BEFORE INSERT ON ${ohdsiSchema}.cohort_features_ref - FOR EACH ROW - BEGIN - SELECT cohort_features_ref_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.cohort_features_ref SET id = cohort_features_ref_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.cohort_features_ref ADD CONSTRAINT pk_coh_features_ref PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.heracles_heel_results ADD (id NUMBER(19)); -CREATE SEQUENCE heracles_heel_results_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.heracles_heel_results_bir - BEFORE INSERT ON ${ohdsiSchema}.heracles_heel_results - FOR EACH ROW - BEGIN - SELECT heracles_heel_results_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.heracles_heel_results SET id = heracles_heel_results_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.heracles_heel_results ADD CONSTRAINT pk_heracles_heel_res PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.heracles_results ADD (id NUMBER(19)); -CREATE SEQUENCE heracles_results_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.heracles_results_bir - BEFORE INSERT ON ${ohdsiSchema}.heracles_results - FOR EACH ROW - BEGIN - SELECT heracles_results_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.heracles_results SET id = heracles_results_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.heracles_results ADD CONSTRAINT pk_heracles_res PRIMARY KEY (id); - - -ALTER TABLE ${ohdsiSchema}.heracles_results_dist ADD (id NUMBER(19)); -CREATE SEQUENCE heracles_results_dist_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.heracles_results_dist_bir - BEFORE INSERT ON ${ohdsiSchema}.heracles_results_dist - FOR EACH ROW - BEGIN - SELECT heracles_results_dist_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.heracles_results_dist SET id = heracles_results_dist_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.heracles_results_dist ADD CONSTRAINT pk_heracles_res_dist PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.ir_analysis_dist ADD (id NUMBER(19)); -CREATE SEQUENCE ir_analysis_dist_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.ir_analysis_dist_bir - BEFORE INSERT ON ${ohdsiSchema}.ir_analysis_dist - FOR EACH ROW - BEGIN - SELECT ir_analysis_dist_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.ir_analysis_dist SET id = ir_analysis_dist_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.ir_analysis_dist ADD CONSTRAINT pk_ir_analysis_dist PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.ir_analysis_result ADD (id NUMBER(19)); -CREATE SEQUENCE ir_analysis_result_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.ir_analysis_result_bir - BEFORE INSERT ON ${ohdsiSchema}.ir_analysis_result - FOR EACH ROW - BEGIN - SELECT ir_analysis_result_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.ir_analysis_result SET id = ir_analysis_result_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.ir_analysis_result ADD CONSTRAINT pk_ir_analysis_res PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.ir_analysis_strata_stats ADD (id NUMBER(19)); -CREATE SEQUENCE ir_anls_strat_stat_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.ir_analysis_strata_stats_bir - BEFORE INSERT ON ${ohdsiSchema}.ir_analysis_strata_stats - FOR EACH ROW - BEGIN - SELECT ir_anls_strat_stat_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.ir_analysis_strata_stats SET id = ir_anls_strat_stat_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.ir_analysis_strata_stats ADD CONSTRAINT pk_ir_an_strata_stats PRIMARY KEY (id); - - -ALTER TABLE ${ohdsiSchema}.ir_strata ADD (id NUMBER(19)); -CREATE SEQUENCE ir_strata_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.ir_strata_bir - BEFORE INSERT ON ${ohdsiSchema}.ir_strata - FOR EACH ROW - BEGIN - SELECT ir_strata_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.ir_strata SET id = ir_strata_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.ir_strata ADD CONSTRAINT pk_ir_strata PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot ADD (id NUMBER(19)); -CREATE SEQUENCE penelope_lae_uni_p_pk_seq START WITH 1 NOCYCLE; -CREATE OR REPLACE TRIGGER ${ohdsiSchema}.penelope_lae_uni_p_bir - BEFORE INSERT ON ${ohdsiSchema}.penelope_laertes_uni_pivot - FOR EACH ROW - BEGIN - SELECT penelope_lae_uni_p_pk_seq.nextval INTO :new.id FROM dual; - END; -/ -UPDATE ${ohdsiSchema}.penelope_laertes_uni_pivot SET id = penelope_lae_uni_p_pk_seq.nextval; -ALTER TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot ADD CONSTRAINT pk_penelope_lae_uni_piv PRIMARY KEY (id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20181119162154__cc_strata.sql b/src/main/resources/db/migration/oracle/V2.7.0.20181119162154__cc_strata.sql deleted file mode 100644 index c5431ec800..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20181119162154__cc_strata.sql +++ /dev/null @@ -1,29 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cc_strata_seq; - -CREATE TABLE ${ohdsiSchema}.cc_strata( - id NUMBER(19) NOT NULL, - cohort_characterization_id NUMBER(19) NOT NULL, - name VARCHAR(255) NOT NULL, - expression CLOB, - CONSTRAINT pk_cc_strata_id PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.cc_strata - ADD CONSTRAINT fk_cc_strata_cc FOREIGN KEY (cohort_characterization_id) - REFERENCES ${ohdsiSchema}.cohort_characterization(id); - -CREATE SEQUENCE ${ohdsiSchema}.cc_strata_conceptset_seq; - -CREATE TABLE ${ohdsiSchema}.cc_strata_conceptset( - id NUMBER(19) NOT NULL, - cohort_characterization_id NUMBER(19) NOT NULL, - expression CLOB, - CONSTRAINT pk_cc_strata_conceptset_id PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.cc_strata_conceptset - ADD CONSTRAINT fk_cc_strata_conceptset_cc FOREIGN KEY (cohort_characterization_id) - REFERENCES ${ohdsiSchema}.cohort_characterization(id); - -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD stratified_by VARCHAR(255); -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD strata_only CHAR(1) DEFAULT '0'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190116183005__default_stat_type.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190116183005__default_stat_type.sql deleted file mode 100644 index ea5b6a62c8..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190116183005__default_stat_type.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis - MODIFY stat_type DEFAULT 'PREVALENCE'; - -UPDATE ${ohdsiSchema}.fe_analysis -SET stat_type = 'PREVALENCE' -WHERE stat_type IS NULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190125113000__fe-analysis-created-modified.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190125113000__fe-analysis-created-modified.sql deleted file mode 100644 index 956341dc6b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190125113000__fe-analysis-created-modified.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_fac_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD created_date TIMESTAMP WITH TIME ZONE; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_fac_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD modified_date TIMESTAMP WITH TIME ZONE; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql deleted file mode 100644 index e245135b75..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql +++ /dev/null @@ -1,23 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis MODIFY (stat_type NOT NULL); - -MERGE INTO ${ohdsiSchema}.fe_analysis_criteria fac -USING -( - SELECT fc.id, - CASE WHEN fc.criteria_type IS NULL THEN - CASE - WHEN fa.stat_type = 'PREVALENCE' THEN 'CRITERIA_GROUP' - WHEN fa.stat_type = 'DISTRIBUTION' THEN - CASE WHEN expression LIKE '{"Criteria":%' - THEN 'WINDOWED_CRITERIA' - ELSE 'DEMOGRAPHIC_CRITERIA' - END - END - ELSE - fc.criteria_type - END as criteria_type - FROM ${ohdsiSchema}.fe_analysis_criteria fc - JOIN ${ohdsiSchema}.fe_analysis fa ON fa.id = fc.fe_analysis_id -) data ON (fac.id = data.id) -WHEN MATCHED THEN UPDATE -SET fac.criteria_type = data.criteria_type; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190128134827__create_absent_sequences.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190128134827__create_absent_sequences.sql deleted file mode 100644 index 2d34d3038e..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190128134827__create_absent_sequences.sql +++ /dev/null @@ -1,24 +0,0 @@ --- analysis_execution --- sequence already exists - --- cca -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.cca_execution_sequence START WITH '; - SELECT nvl2(max(cca_id), max(cca_id) + 1, 1) INTO val FROM ${ohdsiSchema}.cca; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- heracles_visualization_data -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.heracles_vis_data_sequence START WITH '; - SELECT nvl2(max(id), max(id) + 1, 1) INTO val FROM ${ohdsiSchema}.heracles_visualization_data; - EXECUTE IMMEDIATE stmt || val; -END; -/ \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190129073000__fe-analysis-drop-constraints.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190129073000__fe-analysis-drop-constraints.sql deleted file mode 100644 index 623ce47e27..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190129073000__fe-analysis-drop-constraints.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP CONSTRAINT FK_fac_su_cid; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP CONSTRAINT FK_fac_su_mid; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql deleted file mode 100644 index b72ee1890c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN created_by_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN created_date; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN modified_by_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN modified_date; - -ALTER TABLE ${ohdsiSchema}.fe_analysis ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_fa_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.fe_analysis ADD created_date TIMESTAMP WITH TIME ZONE; -ALTER TABLE ${ohdsiSchema}.fe_analysis ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_fa_su_mid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.fe_analysis ADD modified_date TIMESTAMP WITH TIME ZONE; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql deleted file mode 100644 index aa78164dc1..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql +++ /dev/null @@ -1 +0,0 @@ -CREATE INDEX BJEP_JOB_STRING_IDX ON ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS (JOB_EXECUTION_ID,STRING_VAL); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql deleted file mode 100644 index 849ab38f85..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql +++ /dev/null @@ -1,31 +0,0 @@ --- cohort characterizations permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(value, ':post', ':delete'), - 'Cancel Generation of Cohort Characterization with ID = ' || REPLACE(REPLACE(value, 'cohort-characterization:'), ':generation:*:post') - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - WHERE sp.VALUE like 'cohort-characterization:%:generation:*:post' AND NOT sp.value = 'cohort-characterization:*:generation:*:post'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - select srp.role_id, spc.id as permission_id from ${ohdsiSchema}.SEC_PERMISSION sp - join ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - join ${ohdsiSchema}.SEC_PERMISSION spc ON replace(replace(sp.value, 'cohort-characterization:'),':generation:*:post') = replace(replace(spc.value, 'cohort-characterization:'),':generation:*:delete') - and spc.value like 'cohort-characterization:%:generation:*:delete' - where sp.VALUE like 'cohort-characterization:%:generation:*:post'; - --- pathways permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(value, ':post', ':delete'), - 'Cancel Generation of Pathway Analysis with ID = ' || REPLACE(REPLACE(value, 'pathway-analysis:'), ':generation:*:post') -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID -WHERE sp.VALUE like 'pathway-analysis:%:generation:*:post' AND NOT sp.value = 'pathway-analysis:*:generation:*:post'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - select srp.role_id, spc.id as permission_id from ${ohdsiSchema}.SEC_PERMISSION sp - join ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - join ${ohdsiSchema}.SEC_PERMISSION spc ON replace(replace(sp.value, 'pathway-analysis:'),':generation:*:post') = replace(replace(spc.value, 'pathway-analysis:'),':generation:*:delete') - and spc.value like 'pathway-analysis:%:generation:*:delete' - where sp.VALUE like 'pathway-analysis:%:generation:*:post'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190204183006__ir-cancel-job-permission.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190204183006__ir-cancel-job-permission.sql deleted file mode 100644 index 8e3f8a6bcd..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190204183006__ir-cancel-job-permission.sql +++ /dev/null @@ -1,10 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:execute:*:delete', 'Cancel IR analysis execution'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:*:execute:*:delete' - ) - AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql deleted file mode 100644 index 2594a8495a..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql +++ /dev/null @@ -1,23 +0,0 @@ --- cc copy permissions - -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION(id, value, description) - VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:post', ''); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:post' - ) AND sr.name IN ('Atlas users'); - --- pathway copy permissions - -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION(id, value, description) -VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:post', ''); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'pathway-analysis:*:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190208164736__analysis_execution-add-job_id.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190208164736__analysis_execution-add-job_id.sql deleted file mode 100644 index f293a85189..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190208164736__analysis_execution-add-job_id.sql +++ /dev/null @@ -1,15 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD job_execution_id NUMBER(19); -ALTER TABLE ${ohdsiSchema}.analysis_execution DROP COLUMN analysis_type; - -ALTER TABLE ${ohdsiSchema}.analysis_execution MODIFY ANALYSIS_ID DEFAULT NULL NULL; - -DROP TRIGGER ${ohdsiSchema}.ANALYSIS_EXECUTION_BIR; - -alter table ${ohdsiSchema}.analysis_execution drop column analysis_id; -alter table ${ohdsiSchema}.analysis_execution drop column duration; -alter table ${ohdsiSchema}.analysis_execution drop column executed; -alter table ${ohdsiSchema}.analysis_execution drop column sec_user_id; -alter table ${ohdsiSchema}.analysis_execution drop column source_id; -alter table ${ohdsiSchema}.analysis_execution drop column update_password; - -alter table ${ohdsiSchema}.analysis_execution rename to ee_analysis_status; diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql deleted file mode 100644 index b3434479e1..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql +++ /dev/null @@ -1,25 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:generation:*:post', 'Execute Prediction Generation Job' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:generation:get', 'View Prediction Generations' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:generation:*:result:get', 'View Prediction Generation Results' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value in ('prediction:*:generation:*:post', 'prediction:*:generation:get', 'prediction:generation:*:result:get') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:generation:*:post', 'Execute Estimation Generation Job' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:generation:get', 'View Estimation Generations' FROM dual; -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:generation:*:result:get', 'View Estimation Generation Results' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp.value in ('estimation:*:generation:*:post', 'estimation:*:generation:get', 'estimation:generation:*:result:get') - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190211182000__permissions-fixes.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190211182000__permissions-fixes.sql deleted file mode 100644 index bd298cf8fc..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190211182000__permissions-fixes.sql +++ /dev/null @@ -1,67 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:*:get' val FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:included-concepts:count:post' FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:resolveConceptSetExpression:post' FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:lookup:identifiers:post' FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:lookup:identifiers:ancestors:post' FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:lookup:mapped:post' FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:compare:post' FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:optimize:post' FROM DUAL - UNION ALL - SELECT 'cdmresults:%s:*:get' FROM DUAL - UNION ALL - SELECT 'cdmresults:%s:*:*:get' FROM DUAL - UNION ALL - SELECT 'cdmresults:%s:conceptRecordCount:post' FROM DUAL - UNION ALL - SELECT 'cohortresults:%s:*:*:get' FROM DUAL - UNION ALL - SELECT 'cohortresults:%s:*:*:*:get' FROM DUAL - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'conceptset:*:expression:get', 'Resolve concept set expression'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'conceptset:*:generationinfo:get', 'Get generation info for concept set'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:*:check:get', 'Get cohort definition design checks'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'sqlrender:translate:post' , 'Translate SQL'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:info' , 'Get IR info'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'job:type:*:name:*:get' , 'Get IR info'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'conceptset:*:expression:get', - 'conceptset:*:generationinfo:get', - 'cohortdefinition:*:check:get', - 'sqlrender:translate:post', - 'ir:*:info', - 'job:type:*:name:*:get' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190212154939__analysis_execution_files.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190212154939__analysis_execution_files.sql deleted file mode 100644 index 780f0e245b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190212154939__analysis_execution_files.sql +++ /dev/null @@ -1,95 +0,0 @@ -DECLARE v_col_exist NUMBER; -BEGIN - SELECT count(*) INTO v_col_exist FROM all_tab_cols WHERE - UPPER(column_name) = 'MEDIA_TYPE' - AND UPPER(table_name) = 'OUTPUT_FILES' AND owner = '${ohdsiSchema}'; - IF (v_col_exist = 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.output_files ADD media_type VARCHAR2(255)'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM all_constraints WHERE - UPPER(constraint_name) = 'FK_SIF_CCA_EXECUTION' AND UPPER(owner) = UPPER('${ohdsiSchema}'); - IF (v_exists > 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.output_files DROP CONSTRAINT fk_sif_cca_execution'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM ALL_TAB_COLS WHERE - UPPER(table_name) = 'OUTPUT_FILES' AND UPPER(column_name) = 'CCA_EXECUTION_ID' - AND UPPER(owner) = UPPER('${ohdsiSchema}'); - IF (v_exists > 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.output_files DROP COLUMN cca_execution_id'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM all_constraints WHERE - UPPER(constraint_name) = 'FK_SOF_CCA_EXECUTION' AND UPPER(owner) = UPPER('${ohdsiSchema}'); - IF (v_exists > 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.input_files DROP CONSTRAINT fk_sof_cca_execution'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM ALL_TAB_COLS WHERE - UPPER(table_name) = 'INPUT_FILES' AND UPPER(column_name) = 'CCA_EXECUTION_ID' - AND UPPER(owner) = UPPER('${ohdsiSchema}'); - IF (v_exists > 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.input_files DROP COLUMN cca_execution_id'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM ALL_TAB_COLS WHERE - UPPER(table_name) = 'OUTPUT_FILES' AND UPPER(column_name) = 'EXECUTION_ID' - AND UPPER(owner) = UPPER('${ohdsiSchema}'); - IF (v_exists = 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.output_files ADD execution_id NUMBER(10)'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM ALL_TAB_COLS WHERE - UPPER(table_name) = 'INPUT_FILES' AND UPPER(column_name) = 'EXECUTION_ID' - AND UPPER(owner) = UPPER('${ohdsiSchema}'); - IF (v_exists = 0) THEN - EXECUTE IMMEDIATE 'ALTER TABLE ${ohdsiSchema}.input_files ADD execution_id NUMBER(10)'; - END IF; -END; -/ - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM all_sequences WHERE - UPPER(sequence_name) = 'OUTPUT_FILE_SEQ' AND UPPER(sequence_owner) = UPPER('${ohdsiSchema}'); - IF (v_exists = 0) THEN - EXECUTE IMMEDIATE 'CREATE SEQUENCE ${ohdsiSchema}.output_file_seq'; - END IF; -END; -/ - - -DECLARE v_exists NUMBER; -BEGIN - SELECT COUNT(*) INTO v_exists FROM all_sequences WHERE - UPPER(sequence_name) = 'INPUT_FILE_SEQ' AND UPPER(sequence_owner) = UPPER('${ohdsiSchema}'); - IF (v_exists = 0) THEN - EXECUTE IMMEDIATE 'CREATE SEQUENCE ${ohdsiSchema}.input_file_seq'; - END IF; -END; -/ \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.201902130900__source-sequences.sql b/src/main/resources/db/migration/oracle/V2.7.0.201902130900__source-sequences.sql deleted file mode 100644 index 50914466cd..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.201902130900__source-sequences.sql +++ /dev/null @@ -1,21 +0,0 @@ --- Source sequence -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.source_sequence START WITH '; - SELECT nvl2(max(source_id), max(source_id) + 1, 1) INTO val FROM ${ohdsiSchema}.source; - EXECUTE IMMEDIATE stmt || val; -END; -/ - --- Source_daimon sequence -DECLARE - val INTEGER; - stmt VARCHAR2(255); -BEGIN - stmt := 'CREATE SEQUENCE ${ohdsiSchema}.source_daimon_sequence START WITH '; - SELECT nvl2(max(source_daimon_id), max(source_daimon_id) + 1, 1) INTO val FROM ${ohdsiSchema}.source_daimon; - EXECUTE IMMEDIATE stmt || val; -END; -/ \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190213161124__add-fk-to-source-daimon.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190213161124__add-fk-to-source-daimon.sql deleted file mode 100644 index 54780f4872..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190213161124__add-fk-to-source-daimon.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.SOURCE_DAIMON - ADD CONSTRAINT FK_source_daimon_source_id FOREIGN KEY (SOURCE_ID) REFERENCES ${ohdsiSchema}.SOURCE(SOURCE_ID); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190214110000__permissions-fixes-2.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190214110000__permissions-fixes-2.sql deleted file mode 100644 index ec9a950f1b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190214110000__permissions-fixes-2.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:design:get', 'Get cohort characterization design'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:design:get', 'Get cohort characterization design list'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:design:get', - 'cohort-characterization:design:get' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190214145000__permissions-fixes-3.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190214145000__permissions-fixes-3.sql deleted file mode 100644 index 5b22240cc9..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190214145000__permissions-fixes-3.sql +++ /dev/null @@ -1,31 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:concept:*:get' val FROM DUAL - UNION ALL - SELECT 'vocabulary:%s:concept:*:related:get' FROM DUAL - UNION ALL - SELECT 'cohortdefinition:*:cancel:%s:get' FROM DUAL - UNION ALL - SELECT 'featureextraction:query:prevalence:*:%s:get' FROM DUAL - UNION ALL - SELECT 'featureextraction:query:distributions:*:%s:get' FROM DUAL - UNION ALL - SELECT 'featureextraction:explore:prevalence:*:%s:*:get' FROM DUAL - UNION ALL - SELECT 'featureextraction:generate:%s:*:get' FROM DUAL - UNION ALL - SELECT 'featureextraction:generatesql:%s:*:get' FROM DUAL - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190215113000__permissions-fixes-4.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190215113000__permissions-fixes-4.sql deleted file mode 100644 index 4bbcabc01b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190215113000__permissions-fixes-4.sql +++ /dev/null @@ -1,28 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:search:post' val FROM DUAL - ) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:*:check:post', 'Fix cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohortdefinition:*:check:post' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql deleted file mode 100644 index 142b740668..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql +++ /dev/null @@ -1,41 +0,0 @@ -DELETE -FROM ${ohdsiSchema}.sec_role_permission -WHERE permission_id IN (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value NOT IN ('user:me:get')) -AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'public'); - -DELETE -FROM ${ohdsiSchema}.sec_role_permission -WHERE permission_id IN (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value IN ('ir:*:execute:*:get', 'ir:*:execute:*:delete', '*:person:*:get')) -AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - REPLACE(CAST(new_perms.val AS VARCHAR2(255)), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:execute:%s:get' val FROM DUAL - UNION ALL - SELECT 'ir:*:execute:%s:delete' FROM DUAL - UNION ALL - SELECT '%s:person:*:get' FROM DUAL - ) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get' AND sp.value <> 'cohortdefinition:*:generate:*:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; - --- Allow Atlas users to see list of sources -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'configuration:edit:ui' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql deleted file mode 100644 index 7f68d1e73b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql +++ /dev/null @@ -1,17 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR2(255)), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:lookup:sourcecodes:post' val FROM DUAL - ) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190222154724__permission-fixes-conceptsets.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190222154724__permission-fixes-conceptsets.sql deleted file mode 100644 index 32aefbfea8..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190222154724__permission-fixes-conceptsets.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'conceptset:*:export:get', 'Export ConceptSet'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:export:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190225165203__plp_gen_view.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190225165203__plp_gen_view.sql deleted file mode 100644 index 39cde43beb..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190225165203__plp_gen_view.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(plp_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) prediction_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190225165752__estimation_gen_view.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190225165752__estimation_gen_view.sql deleted file mode 100644 index 870d30ddec..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190225165752__estimation_gen_view.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(estimation_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) estimation_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql deleted file mode 100644 index d32f2bdfd2..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:*:export:conceptset:get', 'Export ConceptSet'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:export:conceptset:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql deleted file mode 100644 index 9a968851cd..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:explore:prevalence:*:*:*:get', 'Explore covariate in Cohort Characterization'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:generation:*:explore:prevalence:*:*:*:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190301130000__cc-unique-stratas.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190301130000__cc-unique-stratas.sql deleted file mode 100644 index 19e0b8dbaa..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190301130000__cc-unique-stratas.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cc_strata ADD CONSTRAINT cc_strata_name_uq UNIQUE (cohort_characterization_id, name); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304084500__plp-ple-import.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304084500__plp-ple-import.sql deleted file mode 100644 index 02ea14114b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304084500__plp-ple-import.sql +++ /dev/null @@ -1,13 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:import:post', 'Import PLP analyses'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:import:post', 'Import PLE analyses'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'prediction:import:post', - 'estimation:import:post' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304131519__standardize-permissions-cc.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304131519__standardize-permissions-cc.sql deleted file mode 100644 index dd441c587d..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304131519__standardize-permissions-cc.sql +++ /dev/null @@ -1,27 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where - value like 'cohort-characterization:%:generation:*:post' or - value like 'cohort-characterization:%:generation:*:delete' - ); -delete from ${ohdsiSchema}.sec_permission where - value like 'cohort-characterization:%:generation:*:post' or - value like 'cohort-characterization:%:generation:*:delete'; - -alter table ${ohdsiSchema}.sec_permission add for_role_id int; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( - SELECT 'cohort-characterization:*:generation:%s:post' val FROM dual UNION ALL - SELECT 'cohort-characterization:*:generation:%s:delete' val FROM dual -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id - FROM ${ohdsiSchema}.sec_permission sp - WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304160255__standardize-permissions-pathways.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304160255__standardize-permissions-pathways.sql deleted file mode 100644 index bc6fe0c1eb..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304160255__standardize-permissions-pathways.sql +++ /dev/null @@ -1,27 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where - value like 'pathway-analysis:%:generation:*:post' or - value like 'pathway-analysis:%:generation:*:delete' - ); -delete from ${ohdsiSchema}.sec_permission where - value like 'pathway-analysis:%:generation:*:post' or - value like 'pathway-analysis:%:generation:*:delete'; - -alter table ${ohdsiSchema}.sec_permission add for_role_id int; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( -SELECT 'pathway-analysis:*:generation:%s:post' val FROM dual UNION ALL -SELECT 'pathway-analysis:*:generation:%s:delete' val FROM dual -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304162609__standardize-permissions-ir.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304162609__standardize-permissions-ir.sql deleted file mode 100644 index f50496d0ef..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304162609__standardize-permissions-ir.sql +++ /dev/null @@ -1,44 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('ir:*:delete')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('ir:*:info')); - -delete from ${ohdsiSchema}.sec_permission where - value in ('ir:*:info'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) - values - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:info:get', 'Get IR info'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:*:info:get' - ) - AND sr.name IN ('Atlas users'); - - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value like 'ir:%:report:*:get'); -delete from ${ohdsiSchema}.sec_permission where value like 'ir:%:report:*:get'; - -alter table ${ohdsiSchema}.sec_permission add for_role_id int; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:report:%s:get' val FROM dual - ) new_perms - WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id - FROM ${ohdsiSchema}.sec_permission sp - WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304213000__standardize-permissions-cohorts.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304213000__standardize-permissions-cohorts.sql deleted file mode 100644 index e8f6361f99..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304213000__standardize-permissions-cohorts.sql +++ /dev/null @@ -1,10 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('cohortdefinition:*:put', 'cohortdefinition:*:delete')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('cohortdefinition:delete')); - --- Dummy permission: there is no such endpoint -delete from ${ohdsiSchema}.sec_permission where - value in ('cohortdefinition:delete'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql deleted file mode 100644 index b3103c7982..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql +++ /dev/null @@ -1,3 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('conceptset:*:delete', 'conceptset:*:put', 'conceptset:*:items:put')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190304220500__role-moderator.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190304220500__role-moderator.sql deleted file mode 100644 index 0c6eef6824..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190304220500__role-moderator.sql +++ /dev/null @@ -1,53 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role(id, name, system_role) VALUES - (${ohdsiSchema}.sec_role_sequence.nextval, 'Moderator', 1); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:put', 'Edit any Cohort Characterization'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:delete', 'Delete any Cohort Characterization'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:put', 'Edit any Pathways analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:delete', 'Delete any Pathways analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:put', 'Edit any IR analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:info:*:delete', 'Delete any IR analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:put', 'Edit any Estimation analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:delete', 'Delete any Estimation analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:put', 'Edit any Prediction analysis'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values (${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:delete', 'Delete any Prediction analysis'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - -- All Concept Sets edit and delete - 'conceptset:*:delete', 'conceptset:*:put', 'conceptset:*:items:put', - -- All Cohort Definitions edit and delete - 'cohortdefinition:*:put', 'cohortdefinition:*:delete', - -- All CC edit and delete - 'cohort-characterization:*:put', 'cohort-characterization:*:delete', - -- All Pathways edit and delete - 'pathway-analysis:*:put', 'pathway-analysis:*:delete', - -- All IRs edit and delete - 'ir:*:put', 'ir:*:delete', 'ir:*:info:*:delete', - -- All Estimation analyses edit and delete - 'estimation:*:put', 'estimation:*:delete', - -- All Prediction analyses edit and delete - 'prediction:*:put', 'prediction:*:delete' -) AND sr.name IN ('Moderator'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190305123620__ir-executioninfo-permissions.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190305123620__ir-executioninfo-permissions.sql deleted file mode 100644 index 886fe12055..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190305123620__ir-executioninfo-permissions.sql +++ /dev/null @@ -1,17 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( - SELECT 'ir:*:info:%s:get' val FROM dual -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190306094500__sources-endpoint-permission.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190306094500__sources-endpoint-permission.sql deleted file mode 100644 index a6b0fd9b35..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190306094500__sources-endpoint-permission.sql +++ /dev/null @@ -1,6 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, permission_id, role_id) -SELECT - ${ohdsiSchema}.sec_role_permission_sequence.nextval, - (select id from ${ohdsiSchema}.sec_permission where value in ('source:*:get')) permission_id, - (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'public') role_id -FROM DUAL; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql deleted file mode 100644 index 029c6d2237..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:sql:post', 'Generate SQL from Incidence Rates expression'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'ir:sql:post' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190311182048__fix_vocab_search_permissions.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190311182048__fix_vocab_search_permissions.sql deleted file mode 100644 index f6b2a8d595..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190311182048__fix_vocab_search_permissions.sql +++ /dev/null @@ -1,23 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission - where permission_id in (select id from ${ohdsiSchema}.sec_permission where value = 'vocabulary:*:search:*:get'); - -delete from ${ohdsiSchema}.sec_permission - where value = 'vocabulary:*:search:*:get'; - -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -insert into ${ohdsiSchema}.sec_permission(id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( - SELECT 'vocabulary:%s:search:*:get' val FROM dual -) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190312164953__fix_permission_id_seq_value.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190312164953__fix_permission_id_seq_value.sql deleted file mode 100644 index 858ca0909c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190312164953__fix_permission_id_seq_value.sql +++ /dev/null @@ -1,13 +0,0 @@ --- Updates sec_permission_id_seq to maximum identity + 1 -DECLARE maxid NUMBER(10); - last_num NUMBER; - inc_by NUMBER; -BEGIN - SELECT (max(id) + 1) INTO maxid FROM ${ohdsiSchema}.SEC_PERMISSION; - SELECT last_number, increment_by INTO last_num, inc_by FROM all_sequences WHERE sequence_owner = UPPER('${ohdsiSchema}') - AND sequence_name = 'SEC_PERMISSION_ID_SEQ'; - EXECUTE IMMEDIATE 'ALTER SEQUENCE ${ohdsiSchema}.SEC_PERMISSION_ID_SEQ INCREMENT BY ' || (maxid - last_num); - EXECUTE IMMEDIATE 'SELECT ${ohdsiSchema}.SEC_PERMISSION_ID_SEQ.NEXTVAL FROM DUAL'; - EXECUTE IMMEDIATE 'ALTER SEQUENCE ${ohdsiSchema}.SEC_PERMISSION_ID_SEQ INCREMENT BY ' || inc_by; -END; -/ \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190313161353__fix_permission_heracles.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190313161353__fix_permission_heracles.sql deleted file mode 100644 index ec94d33510..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190313161353__fix_permission_heracles.sql +++ /dev/null @@ -1,19 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD role_id_tmp INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description, role_id_tmp) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), REPLACE(new_perms.descr, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'cohortresults:%s:*:healthcareutilization:*:*:get' val, 'Get cohort results baseline on period for Source with SourceKey = %s' descr FROM DUAL - UNION ALL - SELECT 'cohortresults:%s:*:healthcareutilization:*:*:*:get', 'Get cohort results baseline on occurrence for Source with SourceKey = %s' FROM DUAL - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.role_id_tmp, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.role_id_tmp IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN role_id_tmp; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql deleted file mode 100644 index b8f551124b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql +++ /dev/null @@ -1,12 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.ir_execution RENAME COLUMN status TO int_status; - -ALTER TABLE ${ohdsiSchema}.ir_execution ADD status VARCHAR(128); - -UPDATE ${ohdsiSchema}.ir_execution SET status = CASE int_status - WHEN -1 THEN 'ERROR' - WHEN 0 THEN 'PENDING' - WHEN 1 THEN 'RUNNING' - WHEN 2 THEN 'COMPLETE' - END; - -ALTER TABLE ${ohdsiSchema}.ir_execution DROP COLUMN int_status; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql b/src/main/resources/db/migration/oracle/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql deleted file mode 100644 index b20c8da04f..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql +++ /dev/null @@ -1,23 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission - ADD role_id_tmp INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description, role_id_tmp) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', '')) value, - REPLACE(CAST(new_perms.descr AS VARCHAR(255)), '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', '')) description, srp.role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:report:%s:get' val, 'Get IR generation report with SourceKey = %s' descr FROM dual - - ) new_perms - WHERE sp.value LIKE 'source:%:access' - AND NOT EXISTS(SELECT tsp.id FROM ${ohdsiSchema}.sec_permission tsp JOIN ${ohdsiSchema}.sec_role_permission tsrp ON tsrp.permission_id = tsp.id - AND tsp.value = value); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT (${ohdsiSchema}.sec_role_permission_sequence.nextval), sp.role_id_tmp, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.role_id_tmp IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission - DROP COLUMN role_id_tmp; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.1.20190405124500__split_output_files.sql b/src/main/resources/db/migration/oracle/V2.7.1.20190405124500__split_output_files.sql deleted file mode 100644 index 8d47727b37..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.1.20190405124500__split_output_files.sql +++ /dev/null @@ -1,15 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.output_file_contents ( - output_file_id NUMBER(19), - file_contents BLOB, - CONSTRAINT output_file_contents_pkey PRIMARY KEY (output_file_id) -); - -ALTER TABLE ${ohdsiSchema}.output_file_contents - ADD CONSTRAINT fk_ofc_of_id FOREIGN KEY (output_file_id) - REFERENCES ${ohdsiSchema}.output_files (id) ON DELETE CASCADE; - -INSERT INTO ${ohdsiSchema}.output_file_contents (output_file_id, file_contents) -SELECT id, file_contents -FROM ${ohdsiSchema}.output_files; - -ALTER TABLE ${ohdsiSchema}.output_files DROP COLUMN file_contents; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.2.20190429174506__run-as_permission.sql b/src/main/resources/db/migration/oracle/V2.7.2.20190429174506__run-as_permission.sql deleted file mode 100644 index 2bbb83c6bd..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.2.20190429174506__run-as_permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'user:runas:post', 'Sign in as another user' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value = 'user:runas:post') sp - CROSS JOIN (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'admin' AND system_role = 1) sr; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.2.20190528153600__fix-ir-report-perms.sql b/src/main/resources/db/migration/oracle/V2.7.2.20190528153600__fix-ir-report-perms.sql deleted file mode 100644 index aa4ec1a211..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.2.20190528153600__fix-ir-report-perms.sql +++ /dev/null @@ -1,17 +0,0 @@ -alter table ${ohdsiSchema}.sec_permission add for_role_id int; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:%s:info:*:delete' val FROM dual - ) new_perms - WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id - FROM ${ohdsiSchema}.sec_permission sp - WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.4.20190905163100__cache-clear-permission.sql b/src/main/resources/db/migration/oracle/V2.7.4.20190905163100__cache-clear-permission.sql deleted file mode 100644 index 22abd4fe4b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.4.20190905163100__cache-clear-permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cache:clear:get', 'Clear middle-tier caches' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value = 'cache:clear:get') sp - CROSS JOIN (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'admin' AND system_role = 1) sr; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.7.8.20200728164800__add_conceptset_permission.sql b/src/main/resources/db/migration/oracle/V2.7.8.20200728164800__add_conceptset_permission.sql deleted file mode 100644 index 934901cdcc..0000000000 --- a/src/main/resources/db/migration/oracle/V2.7.8.20200728164800__add_conceptset_permission.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'conceptset:*:expression:*:get', 'Resolve concept set expression with data source'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:expression:*:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190319114500__delete_design_column_from_views.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190319114500__delete_design_column_from_views.sql deleted file mode 100644 index 51fa3df528..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190319114500__delete_design_column_from_views.sql +++ /dev/null @@ -1,88 +0,0 @@ -DROP VIEW ${ohdsiSchema}.cc_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as - SELECT job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(cc_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) cc_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ORDER BY start_time DESC; - -DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(estimation_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) estimation_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; - -DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as -SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(pa_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) pathway_analysis_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -ORDER BY start_time DESC; - -DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(plp_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) prediction_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190326152000__fix-role-perms.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190326152000__fix-role-perms.sql deleted file mode 100644 index b6ed772467..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190326152000__fix-role-perms.sql +++ /dev/null @@ -1,3 +0,0 @@ -UPDATE ${ohdsiSchema}.sec_permission -SET value = REPLACE(value, ':post', ':put') -WHERE value LIKE 'role:%:post'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190326180601__add-cc-download-permission.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190326180601__add-cc-download-permission.sql deleted file mode 100644 index 7d9b45d0e0..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190326180601__add-cc-download-permission.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:download:get', 'Download Cohort Characterization package'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:download:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190405140828__cc_generation_export_all.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190405140828__cc_generation_export_all.sql deleted file mode 100644 index 9e4f082ddc..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190405140828__cc_generation_export_all.sql +++ /dev/null @@ -1,18 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:result:export:post', 'Export all cohort characterization generation results' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:result:count:get', 'Get total count of results for this generation' FROM dual; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:generation:*:result:export:post', - 'cohort-characterization:generation:*:result:count:get' -) -AND sr.name IN ('Atlas users'); - -UPDATE ${ohdsiSchema}.sec_permission -SET value = 'cohort-characterization:generation:*:result:post' -WHERE VALUE = 'cohort-characterization:generation:*:result:get' diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190414180601__add-entity-exists-permission.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190414180601__add-entity-exists-permission.sql deleted file mode 100644 index 5b6c6bef17..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190414180601__add-entity-exists-permission.sql +++ /dev/null @@ -1,41 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'conceptset:*:exists:get', 'Check name uniqueness of concept set'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:*:exists:get', 'Check name uniqueness of cohort definition'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:*:exists:get', 'Check name uniqueness of pathway analysis'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:*:exists:get', 'Check name uniqueness of cohort characterization'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'feature-analysis:*:exists:get', 'Check name uniqueness of feature analysis'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:exists:get', 'Check name uniqueness of incidence rate'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:*:exists:get', 'Check name uniqueness of prediction'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:*:exists:get', 'Check name uniqueness of estimation'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:exists:get' -AND sr.name IN ('concept set creator', 'Moderator'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'cohortdefinition:*:exists:get' -AND sr.name IN ('cohort creator', 'Moderator'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'pathway-analysis:*:exists:get', - 'cohort-characterization:*:exists:get', - 'feature-analysis:*:exists:get', - 'ir:*:exists:get', - 'prediction:*:exists:get', - 'estimation:*:exists:get' -) -AND sr.name IN ('Atlas users', 'Moderator'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql deleted file mode 100644 index 291d6e0085..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.pathway_analysis ADD min_segment_length INTEGER; diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql deleted file mode 100644 index 0ae2910f5c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:exists:get' -AND sr.name = 'Atlas users'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'cohortdefinition:*:exists:get' -AND sr.name = 'Atlas users'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql deleted file mode 100644 index 13af85fbca..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql +++ /dev/null @@ -1,555 +0,0 @@ --- Alter Concept Set table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_cs_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT concept_set_name FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT concept_set_name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.concept_set - SET concept_set_name = concept_set_name || ' (' || j || ')' - WHERE concept_set_id = (SELECT concept_set_id - FROM ${ohdsiSchema}.concept_set - WHERE concept_set_name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - - constraint_title := 'uq_cs_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'CONCEPT_SET'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.CONCEPT_SET ADD CONSTRAINT ' || constraint_title ||' UNIQUE (concept_set_name)'); - END IF; -END; -/ - -begin - rename_cs_names; -end; -/ - - --- Alter Cohort Definition table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_cd_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.cohort_definition - SET name = name || ' (' || j || ')' - WHERE id = (SELECT id - FROM ${ohdsiSchema}.cohort_definition - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_cd_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'COHORT_DEFINITION'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.COHORT_DEFINITION ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_cd_names; -end; -/ - - --- Alter Cohort Characterization table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_cc_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.cohort_characterization - SET name = name || ' (' || j || ')' - WHERE id = (SELECT id - FROM ${ohdsiSchema}.cohort_characterization - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_cc_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'COHORT_CHARACTERIZATION'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.COHORT_CHARACTERIZATION ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_cc_names; -end; -/ - --- Alter FeAnalysis table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_fe_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.fe_analysis - SET name = name || ' (' || j || ')' - WHERE id = (SELECT id - FROM ${ohdsiSchema}.fe_analysis - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_fe_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'FE_ANALYSIS'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.FE_ANALYSIS ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_fe_names; -end; -/ - --- Alter Pathway Analysis table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_pathway_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.pathway_analysis - SET name = name || ' (' || j || ')' - WHERE id = (SELECT id - FROM ${ohdsiSchema}.pathway_analysis - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_pw_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'PATHWAY_ANALYSIS'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.PATHWAY_ANALYSIS ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_pathway_names; -end; -/ - --- Alter IR Analysis table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_ir_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.ir_analysis - SET name = name || ' (' || j || ')' - WHERE id = (SELECT id - FROM ${ohdsiSchema}.ir_analysis - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_ir_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'IR_ANALYSIS'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.IR_ANALYSIS ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_ir_names; -end; -/ - --- Alter Estimation table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_estimation_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.estimation - SET name = name || ' (' || j || ')' - WHERE estimation_id = (SELECT estimation_id - FROM ${ohdsiSchema}.estimation - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_es_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'ESTIMATION'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.ESTIMATION ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_estimation_names; -end; -/ - --- Alter Prediction table - -CREATE OR REPLACE PROCEDURE ${ohdsiSchema}.rename_prediction_names AS - TYPE NumberArray IS TABLE OF NUMBER; - TYPE CharArray IS TABLE OF VARCHAR(255); - duplicate_names CharArray; - name_repeats NumberArray; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_title VARCHAR(255); - schema_title VARCHAR(255); - all_duplicates INT; - -BEGIN - SELECT COUNT(*) INTO all_duplicates FROM (SELECT name FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1); - - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - SELECT name BULK COLLECT INTO duplicate_names - FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1; - - SELECT COUNT(*) BULK COLLECT INTO name_repeats - FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1; - - amount_of_duplicate_names := duplicate_names.COUNT; - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats(i), 0) - LOOP - UPDATE ${ohdsiSchema}.prediction - SET name = name || ' (' || j || ')' - WHERE prediction_id = (SELECT prediction_id - FROM ${ohdsiSchema}.prediction - WHERE name = duplicate_names(i) - AND ROWNUM = 1); - END LOOP; - END LOOP; - duplicate_names.DELETE(); - name_repeats.DELETE(); - END LOOP; - - constraint_title := 'uq_pd_name'; - schema_title := '${ohdsiSchema}'; - - SELECT COUNT(*) INTO amount_of_constraints - FROM ALL_CONSTRAINTS - WHERE OWNER = '${ohdsiSchema}' - AND CONSTRAINT_NAME = constraint_title - AND TABLE_NAME = 'PREDICTION'; - - IF amount_of_constraints = 0 THEN - EXECUTE IMMEDIATE ('ALTER TABLE ' || schema_title || '.PREDICTION ADD CONSTRAINT ' || constraint_title ||' UNIQUE (name)'); - END IF; -END; -/ - -begin - rename_prediction_names; -end; -/ - -DROP PROCEDURE ${ohdsiSchema}.rename_cs_names; -DROP PROCEDURE ${ohdsiSchema}.rename_cd_names; -DROP PROCEDURE ${ohdsiSchema}.rename_cc_names; -DROP PROCEDURE ${ohdsiSchema}.rename_fe_names; -DROP PROCEDURE ${ohdsiSchema}.rename_pathway_names; -DROP PROCEDURE ${ohdsiSchema}.rename_ir_names; -DROP PROCEDURE ${ohdsiSchema}.rename_estimation_names; -DROP PROCEDURE ${ohdsiSchema}.rename_prediction_names; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190527190601__add_cs_name_copy_permission.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190527190601__add_cs_name_copy_permission.sql deleted file mode 100644 index f886ffde0a..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190527190601__add_cs_name_copy_permission.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'conceptset:*:copy-name:get', 'Get name for copying concept set'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:copy-name:get' -AND sr.name IN ('concept set creator', 'Moderator', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql deleted file mode 100644 index 1a004b4e63..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql +++ /dev/null @@ -1,116 +0,0 @@ -DROP VIEW ${ohdsiSchema}.cc_generation; -DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; -DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; -DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; -DROP VIEW ${ohdsiSchema}.user_import_job_history; - -ALTER TABLE ${ohdsiSchema}.user_import_job ADD (user_roles CLOB); - -CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as - SELECT job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(cc_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) cc_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ORDER BY start_time DESC; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(estimation_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) estimation_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(pa_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) pathway_analysis_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ORDER BY start_time DESC; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(CAST(plp_id_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) prediction_id, - CAST(CAST(source_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - author_param.STRING_VAL as author, - CAST(CAST(user_import_param.string_val AS VARCHAR2(50)) AS NUMBER(10)) user_import_id - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS user_import_param - ON job.JOB_EXECUTION_ID = user_import_param.JOB_EXECUTION_ID AND user_import_param.KEY_NAME = 'user_import_id' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190604111801__ir_import_export_permission.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190604111801__ir_import_export_permission.sql deleted file mode 100644 index feafff289d..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190604111801__ir_import_export_permission.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:design:post', 'Import Incidence Rates design'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:*:design:get', 'Export Incidence Rates design'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:design:post', - 'ir:*:design:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190728224300__ds-common-entity.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190728224300__ds-common-entity.sql deleted file mode 100644 index 9c3e340ea3..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190728224300__ds-common-entity.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_source_cid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.source ADD created_date TIMESTAMP WITH TIME ZONE; -ALTER TABLE ${ohdsiSchema}.source ADD modified_by_id NUMBER(10) NULL CONSTRAINT FK_source_mid REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.source ADD modified_date TIMESTAMP WITH TIME ZONE; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190809215200__daimon-priority.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190809215200__daimon-priority.sql deleted file mode 100644 index bf7bdf498e..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190809215200__daimon-priority.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:daimon:priority:get', 'Get priority of Source Daimons'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'source:daimon:priority:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20190816173000__generation-cache.sql b/src/main/resources/db/migration/oracle/V2.8.0.20190816173000__generation-cache.sql deleted file mode 100644 index e47c43ea19..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20190816173000__generation-cache.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.generation_cache_sequence; - -CREATE TABLE ${ohdsiSchema}.generation_cache ( - id INTEGER, - type VARCHAR(255) NOT NULL, - design_hash VARCHAR(255) NOT NULL, - source_id INTEGER NOT NULL, - result_identifier INTEGER NOT NULL, - result_checksum VARCHAR(255), -- can be null in case of empty result set - created_date DATE NOT NULL, - CONSTRAINT PK_generation_cache PRIMARY KEY (id), - CONSTRAINT FK_gc_source_id_source - FOREIGN KEY (source_id) - REFERENCES ${ohdsiSchema}.source (source_id) -); - -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_result UNIQUE (type, source_id, result_identifier); diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20191203200000__generation-cache-updates.sql b/src/main/resources/db/migration/oracle/V2.8.0.20191203200000__generation-cache-updates.sql deleted file mode 100644 index 30e1f88090..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20191203200000__generation-cache-updates.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.generation_cache DROP CONSTRAINT uq_gc_result; -ALTER TABLE ${ohdsiSchema}.generation_cache DROP COLUMN result_identifier; -ALTER TABLE ${ohdsiSchema}.generation_cache DROP CONSTRAINT uq_gc_hash; -ALTER TABLE ${ohdsiSchema}.generation_cache ADD design_hash_int INTEGER; -UPDATE ${ohdsiSchema}.generation_cache SET design_hash_int = TO_NUMBER(design_hash); -ALTER TABLE ${ohdsiSchema}.generation_cache DROP COLUMN design_hash; -ALTER TABLE ${ohdsiSchema}.generation_cache RENAME COLUMN design_hash_int TO design_hash; -ALTER TABLE ${ohdsiSchema}.generation_cache MODIFY design_hash NOT NULL; -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20191219183702__migrate_feature_extraction_id.sql b/src/main/resources/db/migration/oracle/V2.8.0.20191219183702__migrate_feature_extraction_id.sql deleted file mode 100644 index e3f9835b1c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20191219183702__migrate_feature_extraction_id.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO ${ohdsiSchema}.fe_analysis(id, type, name, domain, descr, value, design, is_locked, stat_type) - values (${ohdsiSchema}.fe_analysis_sequence.nextval, 'PRESET', 'Hospital Frailty Risk Score', 'CONDITION', 'The Hospital Frailty Risk Score score using all conditions prior to the window end.', null, 'Hfrs', 1, 'DISTRIBUTION'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200109100200__cohort_sample_tables.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200109100200__cohort_sample_tables.sql deleted file mode 100644 index ff1972e61f..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200109100200__cohort_sample_tables.sql +++ /dev/null @@ -1,23 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cohort_sample_sequence; - -CREATE TABLE ${ohdsiSchema}.cohort_sample( - id NUMBER(10) PRIMARY KEY, - name VARCHAR(255) NOT NULL, - cohort_definition_id NUMBER(10) NOT NULL, - source_id NUMBER(10) NOT NULL, - "size" NUMBER(9) NOT NULL, - age_min NUMBER(4), - age_max NUMBER(4), - age_mode VARCHAR(24), - gender_concept_ids VARCHAR(255) NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE DEFAULT sysdate NOT NULL, - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - CONSTRAINT fk_cohort_sample_definition_id FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE, - CONSTRAINT fk_cohort_sample_source_id FOREIGN KEY (source_id) - REFERENCES ${ohdsiSchema}.source (source_id) ON DELETE CASCADE -); - -CREATE INDEX idx_cohort_sample_source ON ${ohdsiSchema}.cohort_sample (cohort_definition_id, source_id); diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200109132902__fe_domain_null_fix.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200109132902__fe_domain_null_fix.sql deleted file mode 100644 index 40f6c0dd8e..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200109132902__fe_domain_null_fix.sql +++ /dev/null @@ -1,14 +0,0 @@ -UPDATE ${ohdsiSchema}.fe_analysis -SET domain = 'MEASUREMENT' -WHERE type = 'PRESET' -AND to_char(design) IN ( - 'MeasurementRangeGroupShortTerm', - 'MeasurementRangeGroupLongTerm', - 'MeasurementRangeGroupMediumTerm', - 'MeasurementRangeGroupAnyTimePrior', - 'MeasurementValueLongTerm', - 'MeasurementValueShortTerm', - 'MeasurementValueMediumTerm', - 'MeasurementValueAnyTimePrior' -) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql deleted file mode 100644 index 294fff1b7b..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql +++ /dev/null @@ -1,24 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortsample:*:*:get', 'List cohort samples'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortsample:*:*:*:get', 'Get single cohort samples'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortsample:*:*:*:delete', 'Delete cohort sample'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortsample:*:*:delete', 'Delete all cohort samples of a cohort.'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortsample:*:*:post', 'Create cohort sample'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortsample:*:*:*:refresh:post', 'Refresh cohort sample'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortsample:*:*:get', - 'cohortsample:*:*:*:get', - 'cohortsample:*:*:*:delete', - 'cohortsample:*:*:delete', - 'cohortsample:*:*:post', - 'cohortsample:*:*:*:refresh:post' - ) AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql deleted file mode 100644 index a438d47528..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql +++ /dev/null @@ -1,17 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'source:priorityVocabulary:get', 'Get source with highest priority vocabulary daimon' FROM DUAL -; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:generation:*:result:get', 'Get cohort characterization generation results - 2.7.x compatible' FROM DUAL -; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'source:priorityVocabulary:get', - 'cohort-characterization:generation:*:result:get' -) -AND sr.name IN ('Atlas users', 'Moderator') -; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200130124345__fe_analysis_aggregate.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200130124345__fe_analysis_aggregate.sql deleted file mode 100644 index da2cee585e..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200130124345__fe_analysis_aggregate.sql +++ /dev/null @@ -1,150 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.fe_aggregate_sequence; - -CREATE TABLE ${ohdsiSchema}.fe_analysis_aggregate( - id INTEGER, - name VARCHAR2(255) NOT NULL, - domain VARCHAR2(255), - agg_function VARCHAR2(255), - criteria_columns VARCHAR2(255), - expression CLOB, - join_table VARCHAR2(255), - join_type VARCHAR2(255), - join_condition CLOB, - is_default SMALLINT, - missing_means_zero SMALLINT, - CONSTRAINT pk_fe_aggregate PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD fe_aggregate_id INTEGER; - -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Events count', null, 'COUNT', null, '*', null, null, null, 1, 1); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Distinct start dates', null, 'COUNT', 'START_DATE', 'DISTINCT v.start_date', null, null, null, 0, 1); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Duration', null, null, 'DURATION', 'duration', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Duration (max)', null, 'MAX', 'DURATION', 'duration', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Duration (min)', null, 'MIN', 'DURATION', 'duration', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Duration (average)', null, 'AVG', 'DURATION', 'duration', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number', 'MEASUREMENT', null, 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number (max)', 'MEASUREMENT', 'MAX', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number (min)', 'MEASUREMENT', 'MIN', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number (average)', 'MEASUREMENT', 'AVG', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range high', 'MEASUREMENT', null, 'RANGE_HIGH', 'range_high', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range high (max)', 'MEASUREMENT', 'MAX', 'RANGE_HIGH', 'range_high', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range high (min)', 'MEASUREMENT', 'MIN', 'RANGE_HIGH', 'range_high', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range high (average)', 'MEASUREMENT', 'AVG', 'RANGE_HIGH', 'range_high', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range low', 'MEASUREMENT', null, 'RANGE_LOW', 'range_low', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range low (max)', 'MEASUREMENT', 'MAX', 'RANGE_LOW', 'range_low', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range low (min)', 'MEASUREMENT', 'MIN', 'RANGE_LOW', 'range_low', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Range low (average)', 'MEASUREMENT', 'AVG', 'RANGE_LOW', 'range_low', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Distinct drug concepts per person', 'DRUG', 'COUNT', 'DOMAIN_CONCEPT', 'DISTINCT domain_concept', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Refills', 'DRUG', null, 'REFILLS', 'refills', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Refills (max)', 'DRUG', 'MAX', 'REFILLS', 'refills', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Refills (min)', 'DRUG', 'MIN', 'REFILLS', 'refills', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Refills (average)', 'DRUG', 'AVG', 'REFILLS', 'refills', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity', 'DRUG', null, 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity (max)', 'DRUG', 'MAX', 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity (min)', 'DRUG', 'MIN', 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity (average)', 'DRUG', 'AVG', 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Days supply', 'DRUG', null, 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Days supply (max)', 'DRUG', 'MAX', 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Days supply (min)', 'DRUG', 'MIN', 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Days supply (average)', 'DRUG', 'AVG', 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Drug exposure count', 'DRUG_ERA', null, 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Drug exposure count (max)', 'DRUG_ERA', 'MAX', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Drug exposure count (min)', 'DRUG_ERA', 'MIN', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Drug exposure count (average)', 'DRUG_ERA', 'AVG', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Gap days', 'DRUG_ERA', null, 'GAP_DAYS', 'gap_days', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Gap days (max)', 'DRUG_ERA', 'MAX', 'GAP_DAYS', 'gap_days', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Gap days (min)', 'DRUG_ERA', 'MIN', 'GAP_DAYS', 'gap_days', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Gap days (average)', 'DRUG_ERA', 'AVG', 'GAP_DAYS', 'gap_days', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Condition occurrence count', 'CONDITION_ERA', null, 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Condition occurrence count (max)', 'CONDITION_ERA', 'MAX', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Condition occurrence count (min)', 'CONDITION_ERA', 'MIN', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Condition occurrence count (average)', 'CONDITION_ERA', 'AVG', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number', 'OBSERVATION', null, 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number (max)', 'OBSERVATION', 'MAX', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number (min)', 'OBSERVATION', 'MIN', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Value as number (average)', 'OBSERVATION', 'AVG', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity', 'PROCEDURE', null, 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity (max)', 'PROCEDURE', 'MAX', 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity (min)', 'PROCEDURE', 'MIN', 'QUANTITY', 'quantity', null, null, null, 0, 0); -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(id, name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - (${ohdsiSchema}.fe_aggregate_sequence.nextval, 'Quantity (average)', 'PROCEDURE', 'AVG', 'QUANTITY', 'quantity', null, null, null, 0, 0); - -UPDATE - ${ohdsiSchema}.fe_analysis_criteria -SET - fe_aggregate_id = (SELECT ag.id - FROM - ${ohdsiSchema}.fe_analysis_criteria feac JOIN - ${ohdsiSchema}.fe_analysis fea ON fea.id = feac.fe_analysis_id, - ${ohdsiSchema}.fe_analysis_aggregate ag - WHERE - ag.name = 'Events count' - AND fea.type = 'CRITERIA_SET' - AND fea.stat_type = 'DISTRIBUTION' - ); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - 'feature-analysis:aggregates:get', - 'List available aggregates for Feature Analyses' FROM DUAL; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( -'feature-analysis:aggregates:get' -) AND sr.name IN ('Atlas users'); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD CONSTRAINT fk_criteria_aggregate - FOREIGN KEY (fe_aggregate_id) REFERENCES fe_analysis_aggregate(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200325145111__check_required_params.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200325145111__check_required_params.sql deleted file mode 100644 index e35074b45c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200325145111__check_required_params.sql +++ /dev/null @@ -1,24 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohort-characterization:check:post', 'Run diagnostics for cohort characterization params'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'pathway-analysis:check:post', 'Run diagnostics for pathway params'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'ir:check:post', 'Run diagnostics for incident rates'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'prediction:check:post', 'Run diagnostics for prediction'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'estimation:check:post', 'Run diagnostics for estimation'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:check:post', 'Run diagnostics for cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:check:post', - 'pathway-analysis:check:post', - 'ir:check:post', - 'prediction:check:post', - 'estimation:check:post', - 'cohortdefinition:check:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql deleted file mode 100644 index 9dee857a0c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql +++ /dev/null @@ -1,4 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'ir:*:put' AND sr.name = 'Atlas users'; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200413150815__gis_service_api.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200413150815__gis_service_api.sql deleted file mode 100644 index 95a853f018..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200413150815__gis_service_api.sql +++ /dev/null @@ -1,18 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'gis:cohort:*:bounds:*:get', 'Get gis bounds for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'gis:cohort:*:clusters:*:get', 'Get gis clusters for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'gis:cohort:*:density:*:get', 'Get gis density for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (${ohdsiSchema}.sec_permission_id_seq.nextval, 'gis:person:*:bounds:*:get', 'Get bounds for person'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'gis:cohort:*:bounds:*:get', - 'gis:cohort:*:clusters:*:get', - 'gis:cohort:*:density:*:get', - 'gis:person:*:bounds:*:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200427161830__modify_user_login.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200427161830__modify_user_login.sql deleted file mode 100644 index 3461a1047c..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200427161830__modify_user_login.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user DROP CONSTRAINT sec_user_login_unique; - -ALTER TABLE ${ohdsiSchema}.sec_user MODIFY(login VARCHAR(1024)); - -ALTER TABLE ${ohdsiSchema}.sec_user ADD CONSTRAINT sec_user_login_unique UNIQUE (login); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql deleted file mode 100644 index 65892d979a..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info ADD created_by_id NUMBER(10) NULL CONSTRAINT FK_cohort_def_su_cid REFERENCES ${ohdsiSchema}.sec_user(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200616112935__fe_check_permissions.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200616112935__fe_check_permissions.sql deleted file mode 100644 index ebb8e57c55..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200616112935__fe_check_permissions.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) - VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'feature-analysis:*:copy:get', 'Copy the specified feature analysis'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'feature-analysis:*:copy:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200724121114__daimon-priority-public.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200724121114__daimon-priority-public.sql deleted file mode 100644 index a2b785007d..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200724121114__daimon-priority-public.sql +++ /dev/null @@ -1,6 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'source:daimon:priority:get' - ) AND sr.name IN ('public'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql deleted file mode 100644 index 0a1a25136e..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql +++ /dev/null @@ -1,4 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission srp WHERE - srp.permission_id in (SELECT id FROM ${ohdsiSchema}.sec_permission sp WHERE sp.value = 'ir:*:put') - AND - srp.role_id in (SELECT id FROM ${ohdsiSchema}.sec_role sr WHERE sr.name = 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20200903120903__drop-cohort-features-columns.sql b/src/main/resources/db/migration/oracle/V2.8.0.20200903120903__drop-cohort-features-columns.sql deleted file mode 100644 index 87b72cccae..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20200903120903__drop-cohort-features-columns.sql +++ /dev/null @@ -1,53 +0,0 @@ -alter table ${ohdsiSchema}.cohort_generation_info drop column include_features; - -delete -from - ${ohdsiSchema}.sec_role_permission srp -where - id in ( - select - srp.id - from - ${ohdsiSchema}.sec_role_permission srp - join ${ohdsiSchema}.sec_permission sp on - sp.id = srp.permission_id - where - sp.value like 'featureextraction:query:prevalence:*:%:get' - or sp.value like 'featureextraction:query:distributions:*:%:get' - or sp.value like 'featureextraction:explore:prevalence:*:%:*:get' - or sp.value like 'featureextraction:generatesql:%:*:get' - or sp.value like 'featureextraction:generate:%:*:get'); - -delete -from - ${ohdsiSchema}.sec_permission sp -where - sp.value like 'featureextraction:query:prevalence:*:%:get' - or sp.value like 'featureextraction:query:distributions:*:%:get' - or sp.value like 'featureextraction:explore:prevalence:*:%:*:get' - or sp.value like 'featureextraction:generatesql:%:*:get' - or sp.value like 'featureextraction:generate:%:*:get'; - -drop sequence cohort_features_dist_pk_seq; - -drop sequence cohort_features_pk_seq; - -drop sequence cohort_features_ref_pk_seq; - -drop sequence cohort_feat_anlys_ref_pk_seq; - -drop trigger ${ohdsiSchema}.cohort_features_dist_bir; - -drop trigger ${ohdsiSchema}.cohort_features_bir; - -drop trigger ${ohdsiSchema}.cohort_features_ref_bir; - -drop trigger ${ohdsiSchema}.cohort_feat_anlys_ref_bir; - -drop table ${ohdsiSchema}.cohort_features_dist; - -drop table ${ohdsiSchema}.cohort_features; - -drop table ${ohdsiSchema}.cohort_features_ref; - -drop table ${ohdsiSchema}.cohort_features_analysis_ref; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.202010130001__print_friendly_security.sql b/src/main/resources/db/migration/oracle/V2.8.0.202010130001__print_friendly_security.sql deleted file mode 100644 index 5ab36ae35f..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.202010130001__print_friendly_security.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) - VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:printfriendly:cohort:post', 'Get print-friendly HTML of cohort expression'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) - VALUES (${ohdsiSchema}.sec_permission_id_seq.nextval, 'cohortdefinition:printfriendly:conceptsets:post', 'Get print-friendly HTML of conceptset list'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohortdefinition:printfriendly:cohort:post', - 'cohortdefinition:printfriendly:conceptsets:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql b/src/main/resources/db/migration/oracle/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql deleted file mode 100644 index 5c9c5368ed..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql +++ /dev/null @@ -1,16 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT ${ohdsiSchema}.sec_permission_id_seq.nextval, - REPLACE('vocabulary:%s:concept:*:ancestorAndDescendant:get', '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), - role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT ${ohdsiSchema}.sec_role_permission_sequence.nextval, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; diff --git a/src/main/resources/db/migration/oracle/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql b/src/main/resources/db/migration/oracle/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql deleted file mode 100644 index 3f0ccb1a30..0000000000 --- a/src/main/resources/db/migration/oracle/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql +++ /dev/null @@ -1,9 +0,0 @@ -delete from ${ohdsiSchema}.source_daimon sd1 -where sd1.priority = -1 - and sd1.source_daimon_id < ( - select max(source_daimon_id) - from ${ohdsiSchema}.source_daimon sd2 - where sd1.source_id = sd2.source_id - and sd1.daimon_type = sd2.daimon_type); - -ALTER TABLE ${ohdsiSchema}.source_daimon ADD CONSTRAINT un_source_daimon UNIQUE (source_id,daimon_type); \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/rollback/1.0.0.1__schema-drop_spring_batch.sql b/src/main/resources/db/migration/oracle/rollback/1.0.0.1__schema-drop_spring_batch.sql deleted file mode 100644 index a52d209498..0000000000 --- a/src/main/resources/db/migration/oracle/rollback/1.0.0.1__schema-drop_spring_batch.sql +++ /dev/null @@ -1,10 +0,0 @@ -DROP TABLE BATCH_STEP_EXECUTION_CONTEXT ; -DROP TABLE BATCH_JOB_EXECUTION_CONTEXT ; -DROP TABLE BATCH_STEP_EXECUTION ; -DROP TABLE BATCH_JOB_EXECUTION_PARAMS ; -DROP TABLE BATCH_JOB_EXECUTION ; -DROP TABLE BATCH_JOB_INSTANCE ; - -DROP SEQUENCE BATCH_STEP_EXECUTION_SEQ ; -DROP SEQUENCE BATCH_JOB_EXECUTION_SEQ ; -DROP SEQUENCE BATCH_JOB_SEQ ; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/rollback/1.0.0.2__schema-drop_jpa.sql b/src/main/resources/db/migration/oracle/rollback/1.0.0.2__schema-drop_jpa.sql deleted file mode 100644 index 57787485e3..0000000000 --- a/src/main/resources/db/migration/oracle/rollback/1.0.0.2__schema-drop_jpa.sql +++ /dev/null @@ -1,3 +0,0 @@ -DROP TABLE EXAMPLEAPP_WIDGET; - -DROP SEQUENCE HIBERNATE_SEQUENCE; \ No newline at end of file diff --git a/src/main/resources/db/migration/oracle/rollback/1.0.0.9__schema-drop_shiro.sql b/src/main/resources/db/migration/oracle/rollback/1.0.0.9__schema-drop_shiro.sql deleted file mode 100644 index 34a85b13ad..0000000000 --- a/src/main/resources/db/migration/oracle/rollback/1.0.0.9__schema-drop_shiro.sql +++ /dev/null @@ -1,11 +0,0 @@ -DROP TABLE SEC_ROLE_PERMISSION; -DROP TABLE SEC_USER_ROLE; -DROP TABLE SEC_PERMISSION; -DROP TABLE SEC_ROLE; -DROP TABLE SEC_USER; - -DROP SEQUENCE SEC_ROLE_PERMISSION_SEQUENCE; -DROP SEQUENCE SEC_USER_ROLE_SEQUENCE; -DROP SEQUENCE SEC_PERMISSION_SEQUENCE; -DROP SEQUENCE SEC_ROLE_SEQUENCE; -DROP SEQUENCE SEC_USER_SEQUENCE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/B3.0.0__webapi_baseline.sql b/src/main/resources/db/migration/postgresql/B3.0.0__webapi_baseline.sql new file mode 100644 index 0000000000..697a0e1bb7 --- /dev/null +++ b/src/main/resources/db/migration/postgresql/B3.0.0__webapi_baseline.sql @@ -0,0 +1,2083 @@ +-- WebAPI 3.0.0 Baseline: Complete schema for fresh installations + + +CREATE SEQUENCE ${ohdsiSchema}.achilles_cache_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.achilles_cache ( + id bigint DEFAULT nextval('${ohdsiSchema}.achilles_cache_seq'::regclass) NOT NULL, + source_id integer NOT NULL, + cache_name character varying NOT NULL, + cache text +); + +CREATE SEQUENCE ${ohdsiSchema}.analysis_execution_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.analysis_generation_info ( + job_execution_id integer NOT NULL, + design character varying NOT NULL, + hash_code character varying NOT NULL, + created_by_id integer +); + +CREATE TABLE ${ohdsiSchema}.batch_job_execution ( + job_execution_id bigint NOT NULL, + version bigint, + job_instance_id bigint NOT NULL, + create_time timestamp without time zone NOT NULL, + start_time timestamp without time zone, + end_time timestamp without time zone, + status character varying(10), + exit_code character varying(2500), + exit_message character varying(2500), + last_updated timestamp without time zone, + job_configuration_location character varying(2500) +); + +CREATE TABLE ${ohdsiSchema}.batch_job_execution_context ( + job_execution_id bigint NOT NULL, + short_context character varying(2500) NOT NULL, + serialized_context text +); + +CREATE TABLE ${ohdsiSchema}.batch_job_execution_params ( + job_execution_id bigint NOT NULL, + parameter_name character varying(100) NOT NULL, + parameter_type character varying(100) NOT NULL, + parameter_value character varying(2500), + identifying character(1) NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.batch_job_execution_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.batch_job_instance ( + job_instance_id bigint NOT NULL, + version bigint, + job_name character varying(100) NOT NULL, + job_key character varying(32) NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.batch_job_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.batch_step_execution ( + step_execution_id bigint NOT NULL, + version bigint NOT NULL, + step_name character varying(100) NOT NULL, + job_execution_id bigint NOT NULL, + start_time timestamp without time zone, + end_time timestamp without time zone, + status character varying(10), + commit_count bigint, + read_count bigint, + filter_count bigint, + write_count bigint, + read_skip_count bigint, + write_skip_count bigint, + process_skip_count bigint, + rollback_count bigint, + exit_code character varying(2500), + exit_message character varying(2500), + last_updated timestamp without time zone, + create_time timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.batch_step_execution_context ( + step_execution_id bigint NOT NULL, + short_context character varying(2500) NOT NULL, + serialized_context text +); + +CREATE SEQUENCE ${ohdsiSchema}.batch_step_execution_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.cca ( + cca_id integer NOT NULL, + name character varying(255), + treatment_id integer NOT NULL, + comparator_id integer NOT NULL, + outcome_id integer NOT NULL, + model_type character varying(50) NOT NULL, + time_at_risk_start integer NOT NULL, + time_at_risk_end integer NOT NULL, + add_exposure_days_to_end integer NOT NULL, + minimum_washout_period integer NOT NULL, + minimum_days_at_risk integer NOT NULL, + rm_subjects_in_both_cohorts integer NOT NULL, + rm_prior_outcomes integer NOT NULL, + ps_adjustment integer NOT NULL, + ps_exclusion_id integer NOT NULL, + ps_inclusion_id integer NOT NULL, + ps_demographics integer NOT NULL, + ps_demographics_gender integer NOT NULL, + ps_demographics_race integer NOT NULL, + ps_demographics_ethnicity integer NOT NULL, + ps_demographics_age integer NOT NULL, + ps_demographics_year integer NOT NULL, + ps_demographics_month integer NOT NULL, + ps_trim integer NOT NULL, + ps_trim_fraction double precision NOT NULL, + ps_match integer NOT NULL, + ps_match_max_ratio integer NOT NULL, + ps_strat integer NOT NULL, + ps_strat_num_strata integer NOT NULL, + ps_condition_occ integer NOT NULL, + ps_condition_occ_365d integer NOT NULL, + ps_condition_occ_30d integer NOT NULL, + ps_condition_occ_inpt180d integer NOT NULL, + ps_condition_era integer NOT NULL, + ps_condition_era_ever integer NOT NULL, + ps_condition_era_overlap integer NOT NULL, + ps_condition_group integer NOT NULL, + ps_condition_group_meddra integer NOT NULL, + ps_condition_group_snomed integer NOT NULL, + ps_drug_exposure integer NOT NULL, + ps_drug_exposure_365d integer NOT NULL, + ps_drug_exposure_30d integer NOT NULL, + ps_drug_era integer NOT NULL, + ps_drug_era_365d integer NOT NULL, + ps_drug_era_30d integer NOT NULL, + ps_drug_era_overlap integer NOT NULL, + ps_drug_era_ever integer NOT NULL, + ps_drug_group integer NOT NULL, + ps_procedure_occ integer NOT NULL, + ps_procedure_occ_365d integer NOT NULL, + ps_procedure_occ_30d integer NOT NULL, + ps_procedure_group integer NOT NULL, + ps_observation integer NOT NULL, + ps_observation_365d integer NOT NULL, + ps_observation_30d integer NOT NULL, + ps_observation_count_365d integer NOT NULL, + ps_measurement integer NOT NULL, + ps_measurement_365d integer NOT NULL, + ps_measurement_30d integer NOT NULL, + ps_measurement_count_365d integer NOT NULL, + ps_measurement_below integer NOT NULL, + ps_measurement_above integer NOT NULL, + ps_concept_counts integer NOT NULL, + ps_risk_scores integer NOT NULL, + ps_risk_scores_charlson integer NOT NULL, + ps_risk_scores_dcsi integer NOT NULL, + ps_risk_scores_chads2 integer NOT NULL, + ps_risk_scores_chads2vasc integer NOT NULL, + ps_interaction_year integer NOT NULL, + ps_interaction_month integer NOT NULL, + om_covariates integer NOT NULL, + om_exclusion_id integer NOT NULL, + om_inclusion_id integer NOT NULL, + om_demographics integer NOT NULL, + om_demographics_gender integer NOT NULL, + om_demographics_race integer NOT NULL, + om_demographics_ethnicity integer NOT NULL, + om_demographics_age integer NOT NULL, + om_demographics_year integer NOT NULL, + om_demographics_month integer NOT NULL, + om_trim integer NOT NULL, + om_trim_fraction double precision NOT NULL, + om_match integer NOT NULL, + om_match_max_ratio integer NOT NULL, + om_strat integer NOT NULL, + om_strat_num_strata integer NOT NULL, + om_condition_occ integer NOT NULL, + om_condition_occ_365d integer NOT NULL, + om_condition_occ_30d integer NOT NULL, + om_condition_occ_inpt180d integer NOT NULL, + om_condition_era integer NOT NULL, + om_condition_era_ever integer NOT NULL, + om_condition_era_overlap integer NOT NULL, + om_condition_group integer NOT NULL, + om_condition_group_meddra integer NOT NULL, + om_condition_group_snomed integer NOT NULL, + om_drug_exposure integer NOT NULL, + om_drug_exposure_365d integer NOT NULL, + om_drug_exposure_30d integer NOT NULL, + om_drug_era integer NOT NULL, + om_drug_era_365d integer NOT NULL, + om_drug_era_30d integer NOT NULL, + om_drug_era_overlap integer NOT NULL, + om_drug_era_ever integer NOT NULL, + om_drug_group integer NOT NULL, + om_procedure_occ integer NOT NULL, + om_procedure_occ_365d integer NOT NULL, + om_procedure_occ_30d integer NOT NULL, + om_procedure_group integer NOT NULL, + om_observation integer NOT NULL, + om_observation_365d integer NOT NULL, + om_observation_30d integer NOT NULL, + om_observation_count_365d integer NOT NULL, + om_measurement integer NOT NULL, + om_measurement_365d integer NOT NULL, + om_measurement_30d integer NOT NULL, + om_measurement_count_365d integer NOT NULL, + om_measurement_below integer NOT NULL, + om_measurement_above integer NOT NULL, + om_concept_counts integer NOT NULL, + om_risk_scores integer NOT NULL, + om_risk_scores_charlson integer NOT NULL, + om_risk_scores_dcsi integer NOT NULL, + om_risk_scores_chads2 integer NOT NULL, + om_risk_scores_chads2vasc integer NOT NULL, + om_interaction_year integer NOT NULL, + om_interaction_month integer NOT NULL, + del_covariates_small_count integer NOT NULL, + negative_control_id integer NOT NULL, + created timestamp(3) without time zone NOT NULL, + modified timestamp(3) without time zone NOT NULL, + sec_user_id integer NOT NULL, + created_by_id integer, + modified_by_id integer +); + +CREATE SEQUENCE ${ohdsiSchema}.cca_execution_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.cca_execution ( + cca_execution_id integer DEFAULT nextval('${ohdsiSchema}.cca_execution_sequence'::regclass) NOT NULL, + cca_id integer NOT NULL, + source_id integer NOT NULL, + treatment_id integer NOT NULL, + comparator_id integer NOT NULL, + outcome_id integer NOT NULL, + model_type character varying(50) NOT NULL, + time_at_risk_start integer NOT NULL, + time_at_risk_end integer NOT NULL, + add_exposure_days_to_end integer NOT NULL, + minimum_washout_period integer NOT NULL, + minimum_days_at_risk integer NOT NULL, + rm_subjects_in_both_cohorts integer NOT NULL, + rm_prior_outcomes integer NOT NULL, + ps_adjustment integer NOT NULL, + ps_exclusion_id integer NOT NULL, + ps_inclusion_id integer NOT NULL, + ps_demographics integer NOT NULL, + ps_demographics_gender integer NOT NULL, + ps_demographics_race integer NOT NULL, + ps_demographics_ethnicity integer NOT NULL, + ps_demographics_age integer NOT NULL, + ps_demographics_year integer NOT NULL, + ps_demographics_month integer NOT NULL, + ps_trim integer NOT NULL, + ps_trim_fraction double precision NOT NULL, + ps_match integer NOT NULL, + ps_match_max_ratio integer NOT NULL, + ps_strat integer NOT NULL, + ps_strat_num_strata integer NOT NULL, + ps_condition_occ integer NOT NULL, + ps_condition_occ_365d integer NOT NULL, + ps_condition_occ_30d integer NOT NULL, + ps_condition_occ_inpt180d integer NOT NULL, + ps_condition_era integer NOT NULL, + ps_condition_era_ever integer NOT NULL, + ps_condition_era_overlap integer NOT NULL, + ps_condition_group integer NOT NULL, + ps_condition_group_meddra integer NOT NULL, + ps_condition_group_snomed integer NOT NULL, + ps_drug_exposure integer NOT NULL, + ps_drug_exposure_365d integer NOT NULL, + ps_drug_exposure_30d integer NOT NULL, + ps_drug_era integer NOT NULL, + ps_drug_era_365d integer NOT NULL, + ps_drug_era_30d integer NOT NULL, + ps_drug_era_overlap integer NOT NULL, + ps_drug_era_ever integer NOT NULL, + ps_drug_group integer NOT NULL, + ps_procedure_occ integer NOT NULL, + ps_procedure_occ_365d integer NOT NULL, + ps_procedure_occ_30d integer NOT NULL, + ps_procedure_group integer NOT NULL, + ps_observation integer NOT NULL, + ps_observation_365d integer NOT NULL, + ps_observation_30d integer NOT NULL, + ps_observation_count_365d integer NOT NULL, + ps_measurement integer NOT NULL, + ps_measurement_365d integer NOT NULL, + ps_measurement_30d integer NOT NULL, + ps_measurement_count_365d integer NOT NULL, + ps_measurement_below integer NOT NULL, + ps_measurement_above integer NOT NULL, + ps_concept_counts integer NOT NULL, + ps_risk_scores integer NOT NULL, + ps_risk_scores_charlson integer NOT NULL, + ps_risk_scores_dcsi integer NOT NULL, + ps_risk_scores_chads2 integer NOT NULL, + ps_risk_scores_chads2vasc integer NOT NULL, + ps_interaction_year integer NOT NULL, + ps_interaction_month integer NOT NULL, + om_covariates integer NOT NULL, + om_exclusion_id integer NOT NULL, + om_inclusion_id integer NOT NULL, + om_demographics integer NOT NULL, + om_demographics_gender integer NOT NULL, + om_demographics_race integer NOT NULL, + om_demographics_ethnicity integer NOT NULL, + om_demographics_age integer NOT NULL, + om_demographics_year integer NOT NULL, + om_demographics_month integer NOT NULL, + om_trim integer NOT NULL, + om_trim_fraction double precision NOT NULL, + om_match integer NOT NULL, + om_match_max_ratio integer NOT NULL, + om_strat integer NOT NULL, + om_strat_num_strata integer NOT NULL, + om_condition_occ integer NOT NULL, + om_condition_occ_365d integer NOT NULL, + om_condition_occ_30d integer NOT NULL, + om_condition_occ_inpt180d integer NOT NULL, + om_condition_era integer NOT NULL, + om_condition_era_ever integer NOT NULL, + om_condition_era_overlap integer NOT NULL, + om_condition_group integer NOT NULL, + om_condition_group_meddra integer NOT NULL, + om_condition_group_snomed integer NOT NULL, + om_drug_exposure integer NOT NULL, + om_drug_exposure_365d integer NOT NULL, + om_drug_exposure_30d integer NOT NULL, + om_drug_era integer NOT NULL, + om_drug_era_365d integer NOT NULL, + om_drug_era_30d integer NOT NULL, + om_drug_era_overlap integer NOT NULL, + om_drug_era_ever integer NOT NULL, + om_drug_group integer NOT NULL, + om_procedure_occ integer NOT NULL, + om_procedure_occ_365d integer NOT NULL, + om_procedure_occ_30d integer NOT NULL, + om_procedure_group integer NOT NULL, + om_observation integer NOT NULL, + om_observation_365d integer NOT NULL, + om_observation_30d integer NOT NULL, + om_observation_count_365d integer NOT NULL, + om_measurement integer NOT NULL, + om_measurement_365d integer NOT NULL, + om_measurement_30d integer NOT NULL, + om_measurement_count_365d integer NOT NULL, + om_measurement_below integer NOT NULL, + om_measurement_above integer NOT NULL, + om_concept_counts integer NOT NULL, + om_risk_scores integer NOT NULL, + om_risk_scores_charlson integer NOT NULL, + om_risk_scores_dcsi integer NOT NULL, + om_risk_scores_chads2 integer NOT NULL, + om_risk_scores_chads2vasc integer NOT NULL, + om_interaction_year integer NOT NULL, + om_interaction_month integer NOT NULL, + del_covariates_small_count integer NOT NULL, + negative_control_id integer NOT NULL, + executed timestamp(3) without time zone NOT NULL, + execution_duration integer NOT NULL, + execution_status integer NOT NULL, + sec_user_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cca_execution_ext ( + cca_execution_id integer NOT NULL, + update_password character varying +); + +CREATE SEQUENCE ${ohdsiSchema}.cca_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.cdm_cache_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.cdm_cache ( + id bigint DEFAULT nextval('${ohdsiSchema}.cdm_cache_seq'::regclass) NOT NULL, + concept_id integer NOT NULL, + source_id integer NOT NULL, + record_count bigint, + descendant_record_count bigint, + person_count bigint, + descendant_person_count bigint +); + +CREATE TABLE ${ohdsiSchema}.cohort ( + cohort_definition_id integer NOT NULL, + subject_id bigint NOT NULL, + cohort_start_date date NOT NULL, + cohort_end_date date NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cohort_analysis_gen_info ( + source_id integer NOT NULL, + cohort_id integer NOT NULL, + last_execution timestamp(3) without time zone, + execution_duration integer, + fail_message character varying(2000), + progress integer DEFAULT 0 +); + +CREATE TABLE ${ohdsiSchema}.cohort_analysis_list_xref ( + source_id integer NOT NULL, + cohort_id integer NOT NULL, + analysis_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cohort_concept_map ( + cohort_definition_id integer NOT NULL, + cohort_definition_name character varying(255), + concept_id integer +); + +CREATE TABLE ${ohdsiSchema}.cohort_definition ( + id integer NOT NULL, + name character varying(255) NOT NULL, + description character varying(1000), + expression_type character varying(50), + created_date timestamp(3) without time zone, + modified_date timestamp(3) without time zone, + created_by_id integer, + modified_by_id integer +); + +CREATE TABLE ${ohdsiSchema}.cohort_definition_details ( + id integer NOT NULL, + expression text NOT NULL, + hash_code integer +); + +CREATE SEQUENCE ${ohdsiSchema}.cohort_definition_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.cohort_generation_info ( + id integer NOT NULL, + source_id integer NOT NULL, + start_time timestamp(3) without time zone, + execution_duration integer, + status integer NOT NULL, + is_valid boolean NOT NULL, + fail_message character varying(2000), + person_count bigint, + record_count bigint, + is_canceled boolean DEFAULT false NOT NULL, + created_by_id integer, + is_demographic boolean DEFAULT false NOT NULL, + cc_generate_id integer +); + +CREATE TABLE ${ohdsiSchema}.cohort_inclusion ( + cohort_definition_id integer NOT NULL, + rule_sequence integer NOT NULL, + name character varying(255), + description character varying(1000) +); + +CREATE TABLE ${ohdsiSchema}.cohort_inclusion_result ( + cohort_definition_id integer NOT NULL, + inclusion_rule_mask bigint NOT NULL, + person_count bigint NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cohort_inclusion_stats ( + cohort_definition_id integer NOT NULL, + rule_sequence integer NOT NULL, + person_count bigint NOT NULL, + gain_count bigint NOT NULL, + person_total bigint NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cohort_sample ( + id integer NOT NULL, + name character varying(255) NOT NULL, + cohort_definition_id integer NOT NULL, + source_id integer NOT NULL, + size integer NOT NULL, + age_min smallint, + age_max smallint, + age_mode character varying(24), + gender_concept_ids character varying(255), + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL, + modified_by_id integer, + modified_date timestamp with time zone +); + +CREATE SEQUENCE ${ohdsiSchema}.cohort_sample_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.cohort_study ( + cohort_study_id integer NOT NULL, + cohort_definition_id integer, + study_type integer, + study_name character varying(1000), + study_url character varying(1000) +); + +CREATE SEQUENCE ${ohdsiSchema}.cohort_study_cohort_study_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.cohort_study_cohort_study_id_seq OWNED BY ${ohdsiSchema}.cohort_study.cohort_study_id; + +CREATE TABLE ${ohdsiSchema}.cohort_summary_stats ( + cohort_definition_id integer NOT NULL, + base_count bigint NOT NULL, + final_count bigint NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cohort_tag ( + asset_id integer NOT NULL, + tag_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.cohort_version ( + asset_id bigint NOT NULL, + comment character varying, + description character varying, + version integer DEFAULT 1 NOT NULL, + asset_json character varying NOT NULL, + archived boolean DEFAULT false NOT NULL, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.concept_of_interest ( + id integer NOT NULL, + concept_id integer, + concept_of_interest_id integer +); + +CREATE SEQUENCE ${ohdsiSchema}.concept_of_interest_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.concept_of_interest_id_seq OWNED BY ${ohdsiSchema}.concept_of_interest.id; + +CREATE SEQUENCE ${ohdsiSchema}.concept_set_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.concept_set ( + concept_set_id integer DEFAULT nextval('${ohdsiSchema}.concept_set_sequence'::regclass) NOT NULL, + concept_set_name character varying(255) NOT NULL, + created_date timestamp with time zone, + modified_date timestamp with time zone, + created_by_id integer, + modified_by_id integer, + description character varying(1000) +); + +CREATE SEQUENCE ${ohdsiSchema}.concept_set_annotation_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.concept_set_annotation ( + concept_set_annotation_id integer DEFAULT nextval('${ohdsiSchema}.concept_set_annotation_sequence'::regclass) NOT NULL, + concept_set_id integer NOT NULL, + concept_id integer, + annotation_details character varying, + vocabulary_version character varying, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL, + modified_by_id integer, + modified_date timestamp with time zone, + concept_set_version integer, + copied_from_concept_set_ids character varying(1000) +); + +CREATE TABLE ${ohdsiSchema}.concept_set_generation_info ( + concept_set_id integer NOT NULL, + source_id integer NOT NULL, + generation_type integer NOT NULL, + start_time timestamp without time zone NOT NULL, + execution_duration integer, + status integer NOT NULL, + is_valid boolean NOT NULL, + params text NOT NULL, + is_canceled boolean DEFAULT false NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.concept_set_item_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.concept_set_item ( + concept_set_item_id integer DEFAULT nextval('${ohdsiSchema}.concept_set_item_sequence'::regclass) NOT NULL, + concept_set_id integer NOT NULL, + concept_id integer NOT NULL, + is_excluded integer NOT NULL, + include_descendants integer NOT NULL, + include_mapped integer NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.concept_set_negative_controls ( + id integer DEFAULT nextval('${ohdsiSchema}.negative_controls_sequence'::regclass) NOT NULL, + evidence_job_id bigint NOT NULL, + source_id integer NOT NULL, + concept_set_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.concept_set_tag ( + asset_id integer NOT NULL, + tag_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.concept_set_version ( + asset_id bigint NOT NULL, + comment character varying, + version integer DEFAULT 1 NOT NULL, + asset_json character varying NOT NULL, + archived boolean DEFAULT false NOT NULL, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.drug_hoi_evidence_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.drug_hoi_evidence ( + id integer DEFAULT nextval('${ohdsiSchema}.drug_hoi_evidence_sequence'::regclass) NOT NULL, + drug_hoi_relationship character varying(50), + evidence_type character varying(4000), + supports character varying(1), + evidence_source_code_id integer, + statistic_value numeric, + evidence_linkout character varying(4000), + statistic_type character varying(4000) +); + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.id IS 'primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.drug_hoi_relationship IS 'foreign key to the drug_HOI_relationship id'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.evidence_type IS 'the type of evidence (literature, product label, pharmacovigilance, EHR)'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.supports IS 'Whether or not the relationship of evidence is to refute the assertion'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.evidence_source_code_id IS 'a code indicating the actual source of evidence (e.g., PubMed, US SPLs, EU SPC, VigiBase, etc)'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.statistic_value IS 'For literature-like (e.g., PubMed abstracts, product labeling) sources this holds the count of the number of items of the evidence type present in the evidence base from that source (several rules are used to derive the counts, see documentation on the knowledge-base wiki). From signal detection sources, the result of applying the algorithm indicated in the evidence_type column is shown.'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.evidence_linkout IS 'For literature-like (e.g., PubMed abstracts, product labeling), this holds a URL that will resolve to a query against the RDF endpoint for all resources used to generate the evidence_count. For signal detection sources, this holds a link to metadata on the algorithm and how it was applied to arrive at the statistical value.'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_evidence.statistic_type IS 'For literature-like (e.g., PubMed abstracts, product labeling), and other count based methods this holds COUNT. For signal detection sources, this holds a string indicating the type of the result value (e.g., AERS_EBGM, AERS_EB05)'; + +CREATE TABLE ${ohdsiSchema}.drug_hoi_relationship ( + id character varying(50) NOT NULL, + drug integer, + rxnorm_drug character varying(4000), + hoi integer, + snomed_hoi character varying(4000) +); + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_relationship.drug IS 'OMOP/IMEDS Concept ID for the drug'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_relationship.rxnorm_drug IS 'RxNorm Preferred Term of the Drug'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_relationship.hoi IS 'OMOP/IMEDS Concept ID for the Health Outcome of Interest'; + +COMMENT ON COLUMN ${ohdsiSchema}.drug_hoi_relationship.snomed_hoi IS 'SNOMED preferred term of the Health Outcome of Interest'; + +CREATE TABLE ${ohdsiSchema}.drug_labels ( + drug_label_id bigint NOT NULL, + search_name character varying(255), + ingredient_concept_id bigint, + ingredient_concept_name character varying(255), + setid character varying(255), + date timestamp(3) without time zone, + cohort_id integer, + image_url character varying(255) +); + +CREATE TABLE ${ohdsiSchema}.ee_analysis_status ( + id integer DEFAULT nextval('${ohdsiSchema}.analysis_execution_sequence'::regclass) NOT NULL, + executionstatus character varying, + job_execution_id bigint +); + +CREATE SEQUENCE ${ohdsiSchema}.evidence_sources_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.evidence_sources ( + id integer DEFAULT nextval('${ohdsiSchema}.evidence_sources_sequence'::regclass) NOT NULL, + title character varying(4000), + description character varying(4000), + contributer character varying(4000), + creator character varying(4000), + creation_date date NOT NULL, + rights character varying(4000), + source character varying(4000), + coverage_start_date date, + coverage_end_date date +); + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.title IS 'a short name for the evidence source. Same as http://purl.org/dc/elements/1.1/title'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.description IS 'Description of the evidence source. Same as http://purl.org/dc/elements/1.1/description'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.contributer IS 'Same as http://purl.org/dc/elements/1.1/contributor'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.creator IS 'Same as http://purl.org/dc/elements/1.1/creator'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.creation_date IS 'Date that the source was created. For example, if the source was created in 2010 but added to the knowledge base in 2014, the creation date would be 2010'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.rights IS 'Same as http://purl.org/dc/elements/1.1/rights'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.source IS 'The source from which this data was derived. Same as http://purl.org/dc/elements/1.1/source'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.coverage_start_date IS 'The start date of coverage for the resource. Data can be trusted on or after this date and up to and including the coverage_end_date'; + +COMMENT ON COLUMN ${ohdsiSchema}.evidence_sources.coverage_end_date IS 'The date of coverage for the resource. Data can be trusted on or after the coverage_start_date date and up to and including this date'; + +CREATE TABLE ${ohdsiSchema}.exampleapp_widget ( + id bigint NOT NULL, + name character varying(50) +); + +CREATE SEQUENCE ${ohdsiSchema}.fe_aggregate_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.fe_conceptset_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.fe_analysis_conceptset ( + id bigint DEFAULT nextval('${ohdsiSchema}.fe_conceptset_sequence'::regclass) NOT NULL, + fe_analysis_id integer NOT NULL, + expression character varying +); + +CREATE TABLE ${ohdsiSchema}.feas_study_generation_info ( + study_id integer NOT NULL, + source_id integer NOT NULL, + start_time timestamp(3) without time zone, + execution_duration integer, + status integer NOT NULL, + is_valid boolean NOT NULL, + is_canceled boolean DEFAULT false NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.feas_study_inclusion_stats ( + study_id integer NOT NULL, + rule_sequence integer NOT NULL, + name character varying(255) NOT NULL, + person_count bigint NOT NULL, + gain_count bigint NOT NULL, + person_total bigint NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.feas_study_index_stats ( + study_id integer NOT NULL, + person_count bigint NOT NULL, + match_count bigint NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.feas_study_result ( + study_id integer NOT NULL, + inclusion_rule_mask bigint NOT NULL, + person_count bigint NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.feasibility_inclusion ( + study_id integer NOT NULL, + sequence integer NOT NULL, + name character varying(255), + description character varying(1000), + expression text +); + +CREATE TABLE ${ohdsiSchema}.feasibility_study ( + id integer NOT NULL, + name character varying(255) NOT NULL, + description character varying(1000), + index_def_id integer, + result_def_id integer, + created_date timestamp(3) without time zone, + modified_date timestamp(3) without time zone, + created_by_id integer, + modified_by_id integer +); + +CREATE SEQUENCE ${ohdsiSchema}.feasibility_study_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.generation_cache_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.generation_cache ( + id integer DEFAULT nextval('${ohdsiSchema}.generation_cache_sequence'::regclass) NOT NULL, + type character varying NOT NULL, + design_hash integer NOT NULL, + source_id integer NOT NULL, + result_checksum character varying, + created_date date DEFAULT now() NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.heracles_analysis ( + analysis_id integer NOT NULL, + analysis_name character varying(255), + stratum_1_name character varying(255), + stratum_2_name character varying(255), + stratum_3_name character varying(255), + stratum_4_name character varying(255), + stratum_5_name character varying(255), + analysis_type character varying(255) +); + +CREATE TABLE ${ohdsiSchema}.heracles_heel_results ( + cohort_definition_id integer, + analysis_id integer, + heracles_heel_warning character varying(255), + id integer NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.heracles_heel_results_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.heracles_heel_results_id_seq OWNED BY ${ohdsiSchema}.heracles_heel_results.id; + +CREATE TABLE ${ohdsiSchema}.heracles_results ( + cohort_definition_id integer, + analysis_id integer, + stratum_1 character varying(255), + stratum_2 character varying(255), + stratum_3 character varying(255), + stratum_4 character varying(255), + stratum_5 character varying(255), + count_value bigint, + last_update_time timestamp without time zone DEFAULT now(), + id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.heracles_results_dist ( + cohort_definition_id integer, + analysis_id integer, + stratum_1 character varying(255), + stratum_2 character varying(255), + stratum_3 character varying(255), + stratum_4 character varying(255), + stratum_5 character varying(255), + count_value bigint, + min_value double precision, + max_value double precision, + avg_value double precision, + stdev_value double precision, + median_value double precision, + p10_value double precision, + p25_value double precision, + p75_value double precision, + p90_value double precision, + last_update_time timestamp without time zone DEFAULT now(), + id integer NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.heracles_results_dist_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.heracles_results_dist_id_seq OWNED BY ${ohdsiSchema}.heracles_results_dist.id; + +CREATE SEQUENCE ${ohdsiSchema}.heracles_results_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.heracles_results_id_seq OWNED BY ${ohdsiSchema}.heracles_results.id; + +CREATE SEQUENCE ${ohdsiSchema}.heracles_vis_data_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.heracles_visualization_data ( + id integer DEFAULT nextval('${ohdsiSchema}.heracles_vis_data_sequence'::regclass) NOT NULL, + cohort_definition_id integer NOT NULL, + source_id integer NOT NULL, + visualization_key character varying(300) NOT NULL, + drilldown_id integer, + data text NOT NULL, + end_time timestamp(3) without time zone NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.heracles_viz_data_sequence + START WITH 0 + INCREMENT BY 1 + MINVALUE 0 + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.hibernate_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.ir_analysis_dist ( + analysis_id integer NOT NULL, + target_id integer NOT NULL, + outcome_id integer NOT NULL, + strata_sequence integer, + dist_type integer NOT NULL, + total bigint NOT NULL, + avg_value double precision NOT NULL, + std_dev double precision NOT NULL, + min_value integer NOT NULL, + p10_value integer NOT NULL, + p25_value integer NOT NULL, + median_value integer NOT NULL, + p75_value integer NOT NULL, + p90_value integer NOT NULL, + max_value integer, + id integer NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.ir_analysis_dist_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.ir_analysis_dist_id_seq OWNED BY ${ohdsiSchema}.ir_analysis_dist.id; + +CREATE TABLE ${ohdsiSchema}.ir_version ( + asset_id bigint NOT NULL, + comment character varying, + description character varying, + version integer DEFAULT 1 NOT NULL, + asset_json character varying NOT NULL, + archived boolean DEFAULT false NOT NULL, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.laertes_summary_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.laertes_summary ( + id integer DEFAULT nextval('${ohdsiSchema}.laertes_summary_sequence'::regclass) NOT NULL, + report_order integer, + report_name character varying(4000), + ingredient_id integer, + ingredient character varying(4000), + clinical_drug_id integer, + clinical_drug character varying(4000), + hoi_id integer, + hoi character varying(4000), + medline_ct_count integer, + medline_case_count integer, + medline_other_count integer, + splicer_count integer, + eu_spc_count integer, + semmeddb_ct_count integer, + semmeddb_case_count integer, + semmeddb_neg_ct_count integer, + semmeddb_neg_case_count integer, + aers_report_count integer, + prr numeric, + ctd_chemical_disease_count integer, + semmeddb_other_count integer, + semmeddb_neg_other_count integer +); + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.id IS 'primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.report_order IS 'there are several reports in this summary, this is an identifier for each report'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.report_name IS 'there are several reports in this summary, this is a name of the report'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.ingredient_id IS 'a drug ingredient CONCEPT_ID'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.ingredient IS 'a drug ingredient name'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.clinical_drug_id IS 'if a clinical drug exists, the clinical drug CONCEPT_ID'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.clinical_drug IS 'if a clinical drug exists, the clinical drug name'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.hoi_id IS 'the HOI CONCEPT_ID, this is at the SNOMED level'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.hoi IS 'the HOI name, this is at the SNOMED level'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.splicer_count IS 'counts of SPLs that mention specific drugs and hois'; + +COMMENT ON COLUMN ${ohdsiSchema}.laertes_summary.eu_spc_count IS 'counts of SPCs that mention specific drugs and hois'; + +CREATE TABLE ${ohdsiSchema}.output_file_contents ( + output_file_id integer NOT NULL, + file_contents bytea +); + +CREATE TABLE ${ohdsiSchema}.pathway_version ( + asset_id bigint NOT NULL, + comment character varying, + version integer DEFAULT 1 NOT NULL, + asset_json character varying NOT NULL, + archived boolean DEFAULT false NOT NULL, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot ( + condition_concept_id integer, + condition_concept_name character varying(255), + ingredient_concept_id integer, + ingredient_concept_name character varying(255), + medline_ct integer, + medline_case integer, + medline_other integer, + semmeddb_ct_t integer, + semmeddb_case_t integer, + semmeddb_other_t integer, + semmeddb_ct_f integer, + semmeddb_case_f integer, + semmeddb_other_f integer, + eu_spc integer, + spl_adr integer, + aers integer, + aers_prr numeric, + aers_prr_original numeric, + id integer NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.penelope_laertes_uni_pivot_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE ${ohdsiSchema}.penelope_laertes_uni_pivot_id_seq OWNED BY ${ohdsiSchema}.penelope_laertes_uni_pivot.id; + +CREATE TABLE ${ohdsiSchema}.penelope_laertes_universe ( + id bigint NOT NULL, + condition_concept_id integer, + condition_concept_name character varying(255), + ingredient_concept_id integer, + ingredient_concept_name character varying(255), + evidence_type character varying(255), + supports character(1), + statistic_value numeric, + evidence_linkouts text +); + +CREATE TABLE ${ohdsiSchema}.plp ( + plp_id integer NOT NULL, + name character varying(255), + treatment_id integer NOT NULL, + outcome_id integer NOT NULL, + model_type character varying(255) NOT NULL, + time_at_risk_start integer NOT NULL, + time_at_risk_end integer NOT NULL, + add_exposure_days_to_end integer NOT NULL, + minimum_washout_period integer NOT NULL, + minimum_days_at_risk integer NOT NULL, + require_time_at_risk integer NOT NULL, + minimum_time_at_risk integer NOT NULL, + sample integer NOT NULL, + sample_size integer NOT NULL, + first_exposure_only integer NOT NULL, + include_all_outcomes integer NOT NULL, + rm_prior_outcomes integer NOT NULL, + prior_outcome_lookback integer NOT NULL, + test_split integer NOT NULL, + test_fraction character varying(255), + n_fold character varying(255), + mo_alpha character varying(255), + mo_class_weight character varying(255), + mo_index_folder character varying(255), + mo_k character varying(255), + mo_learn_rate character varying(255), + mo_learning_rate character varying(255), + mo_max_depth character varying(255), + mo_min_impurity_split character varying(255), + mo_min_rows character varying(255), + mo_min_samples_leaf character varying(255), + mo_min_samples_split character varying(255), + mo_mtries character varying(255), + mo_nestimators character varying(255), + mo_nthread character varying(255), + mo_ntrees character varying(255), + mo_plot character varying(255), + mo_seed character varying(255), + mo_size character varying(255), + mo_variance character varying(255), + mo_var_imp character varying(255), + cv_exclusion_id integer NOT NULL, + cv_inclusion_id integer NOT NULL, + cv_demographics integer NOT NULL, + cv_demographics_gender integer NOT NULL, + cv_demographics_race integer NOT NULL, + cv_demographics_ethnicity integer NOT NULL, + cv_demographics_age integer NOT NULL, + cv_demographics_year integer NOT NULL, + cv_demographics_month integer NOT NULL, + cv_condition_occ integer NOT NULL, + cv_condition_occ_365d integer NOT NULL, + cv_condition_occ_30d integer NOT NULL, + cv_condition_occ_inpt180d integer NOT NULL, + cv_condition_era integer NOT NULL, + cv_condition_era_ever integer NOT NULL, + cv_condition_era_overlap integer NOT NULL, + cv_condition_group integer NOT NULL, + cv_condition_group_meddra integer NOT NULL, + cv_condition_group_snomed integer NOT NULL, + cv_drug_exposure integer NOT NULL, + cv_drug_exposure_365d integer NOT NULL, + cv_drug_exposure_30d integer NOT NULL, + cv_drug_era integer NOT NULL, + cv_drug_era_365d integer NOT NULL, + cv_drug_era_30d integer NOT NULL, + cv_drug_era_overlap integer NOT NULL, + cv_drug_era_ever integer NOT NULL, + cv_drug_group integer NOT NULL, + cv_procedure_occ integer NOT NULL, + cv_procedure_occ_365d integer NOT NULL, + cv_procedure_occ_30d integer NOT NULL, + cv_procedure_group integer NOT NULL, + cv_observation integer NOT NULL, + cv_observation_365d integer NOT NULL, + cv_observation_30d integer NOT NULL, + cv_observation_count_365d integer NOT NULL, + cv_measurement integer NOT NULL, + cv_measurement_365d integer NOT NULL, + cv_measurement_30d integer NOT NULL, + cv_measurement_count_365d integer NOT NULL, + cv_measurement_below integer NOT NULL, + cv_measurement_above integer NOT NULL, + cv_concept_counts integer NOT NULL, + cv_risk_scores integer NOT NULL, + cv_risk_scores_charlson integer NOT NULL, + cv_risk_scores_dcsi integer NOT NULL, + cv_risk_scores_chads2 integer NOT NULL, + cv_risk_scores_chads2vasc integer NOT NULL, + cv_interaction_year integer NOT NULL, + cv_interaction_month integer NOT NULL, + del_covariates_small_count integer NOT NULL, + created timestamp(3) without time zone NOT NULL, + modified timestamp(3) without time zone, + created_by_id integer, + modified_by_id integer +); + +CREATE SEQUENCE ${ohdsiSchema}.plp_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.reusable_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.reusable ( + id integer DEFAULT nextval('${ohdsiSchema}.reusable_seq'::regclass) NOT NULL, + name character varying NOT NULL, + description character varying, + data text NOT NULL, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL, + modified_by_id integer, + modified_date timestamp with time zone +); + +CREATE TABLE ${ohdsiSchema}.reusable_tag ( + asset_id integer NOT NULL, + tag_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.reusable_version ( + asset_id bigint NOT NULL, + comment character varying, + description character varying, + version integer DEFAULT 1 NOT NULL, + asset_json character varying NOT NULL, + archived boolean DEFAULT false NOT NULL, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL +); + +-- NOTE: schema_version table removed - Flyway manages this table automatically + +CREATE SEQUENCE ${ohdsiSchema}.sec_permission_sequence + START WITH 1000 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.sec_permission ( + id integer DEFAULT nextval('${ohdsiSchema}.sec_permission_sequence'::regclass) NOT NULL, + value character varying(255) NOT NULL, + description character varying(255) +); + +COMMENT ON COLUMN ${ohdsiSchema}.sec_permission.id IS 'Primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_permission.value IS 'Permission'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_permission.description IS 'Desctiption of permission'; + +CREATE SEQUENCE ${ohdsiSchema}.sec_permission_id_seq + START WITH 500 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.sec_role_sequence + START WITH 1000 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.sec_role ( + id integer DEFAULT nextval('${ohdsiSchema}.sec_role_sequence'::regclass) NOT NULL, + name character varying(255), + system_role boolean DEFAULT false NOT NULL +); + +COMMENT ON COLUMN ${ohdsiSchema}.sec_role.id IS 'primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_role.name IS 'Role name'; + +CREATE SEQUENCE ${ohdsiSchema}.sec_role_group_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.sec_role_group ( + id integer DEFAULT nextval('${ohdsiSchema}.sec_role_group_seq'::regclass) NOT NULL, + provider character varying NOT NULL, + group_dn character varying NOT NULL, + group_name character varying, + role_id integer NOT NULL, + job_id bigint +); + +CREATE SEQUENCE ${ohdsiSchema}.sec_role_permission_sequence + START WITH 1000 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.sec_role_permission ( + id integer DEFAULT nextval('${ohdsiSchema}.sec_role_permission_sequence'::regclass) NOT NULL, + role_id integer NOT NULL, + permission_id integer NOT NULL, + status character varying(255) +); + +COMMENT ON COLUMN ${ohdsiSchema}.sec_role_permission.id IS 'Primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_role_permission.role_id IS 'Foreign key to SEC_ROLE'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_role_permission.permission_id IS 'Foreign key to SEC_PERMISSION'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_role_permission.status IS 'Status of relation between role and permission'; + +CREATE SEQUENCE ${ohdsiSchema}.sec_user_sequence + START WITH 1000 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.sec_user ( + id integer DEFAULT nextval('${ohdsiSchema}.sec_user_sequence'::regclass) NOT NULL, + login character varying(1024), + name character varying(100), + last_viewed_notifications_time timestamp with time zone, + origin character varying(32) DEFAULT 'SYSTEM'::character varying NOT NULL +); + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user.id IS 'primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user.login IS 'Login'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user.name IS 'Displayed name for user'; + +CREATE SEQUENCE ${ohdsiSchema}.sec_user_role_sequence + START WITH 1000 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.sec_user_role ( + id integer DEFAULT nextval('${ohdsiSchema}.sec_user_role_sequence'::regclass) NOT NULL, + user_id integer NOT NULL, + role_id integer NOT NULL, + status character varying(255), + origin character varying(32) DEFAULT 'SYSTEM'::character varying NOT NULL +); + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user_role.id IS 'Primary key'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user_role.user_id IS 'Foreign key to SEC_USER'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user_role.role_id IS 'Foreign key to SEC_ROLE'; + +COMMENT ON COLUMN ${ohdsiSchema}.sec_user_role.status IS 'Status of relation between user and role'; + +CREATE SEQUENCE ${ohdsiSchema}.source_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.source ( + source_id integer DEFAULT nextval('${ohdsiSchema}.source_sequence'::regclass) NOT NULL, + source_name character varying(255) NOT NULL, + source_key character varying(50) NOT NULL, + source_connection character varying(8000) NOT NULL, + source_dialect character varying(255) NOT NULL, + username character varying(255), + password character varying(255), + krb_auth_method character varying DEFAULT 'PASSWORD'::character varying NOT NULL, + keytab_name character varying, + krb_keytab bytea, + krb_admin_server character varying, + deleted_date timestamp without time zone, + created_by_id integer, + created_date date, + modified_by_id integer, + modified_date date, + is_cache_enabled boolean DEFAULT false NOT NULL, + check_connection boolean DEFAULT true NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.source_daimon_sequence + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.source_daimon ( + source_daimon_id integer DEFAULT nextval('${ohdsiSchema}.source_daimon_sequence'::regclass) NOT NULL, + source_id integer NOT NULL, + daimon_type integer NOT NULL, + table_qualifier character varying(255) NOT NULL, + priority integer NOT NULL +); + +CREATE SEQUENCE ${ohdsiSchema}.tag_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.tag ( + id integer DEFAULT nextval('${ohdsiSchema}.tag_seq'::regclass) NOT NULL, + name character varying NOT NULL, + type integer DEFAULT 0 NOT NULL, + count integer DEFAULT 0 NOT NULL, + show_group boolean DEFAULT false NOT NULL, + icon character varying, + color character varying, + multi_selection boolean DEFAULT false NOT NULL, + permission_protected boolean DEFAULT false NOT NULL, + mandatory boolean DEFAULT false NOT NULL, + allow_custom boolean DEFAULT false NOT NULL, + description character varying, + created_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL, + modified_by_id integer, + modified_date timestamp with time zone +); + +CREATE TABLE ${ohdsiSchema}.tag_group ( + tag_id integer NOT NULL, + group_id integer NOT NULL +); + +CREATE TABLE ${ohdsiSchema}.tool ( + id bigint NOT NULL, + name character varying(255) NOT NULL, + url character varying(1000) NOT NULL, + description character varying(1000), + is_enabled boolean, + created_by_id integer, + modified_by_id integer, + created_date timestamp with time zone DEFAULT now() NOT NULL, + modified_date timestamp with time zone +); + +CREATE SEQUENCE ${ohdsiSchema}.tool_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE SEQUENCE ${ohdsiSchema}.user_import_job_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +CREATE TABLE ${ohdsiSchema}.user_import_job ( + id bigint DEFAULT nextval('${ohdsiSchema}.user_import_job_seq'::regclass) NOT NULL, + is_enabled boolean DEFAULT false NOT NULL, + start_date timestamp with time zone, + frequency character varying NOT NULL, + recurring_times integer NOT NULL, + recurring_until_date timestamp with time zone, + cron character varying NOT NULL, + last_executed_at timestamp with time zone, + executed_times integer DEFAULT 0 NOT NULL, + is_closed boolean DEFAULT false NOT NULL, + provider_type character varying NOT NULL, + preserve_roles boolean DEFAULT true NOT NULL, + user_roles character varying +); + +CREATE TABLE ${ohdsiSchema}.user_import_job_weekdays ( + user_import_job_id bigint NOT NULL, + day_of_week character varying NOT NULL +); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_study ALTER COLUMN cohort_study_id SET DEFAULT nextval('${ohdsiSchema}.cohort_study_cohort_study_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_of_interest ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.concept_of_interest_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_heel_results ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.heracles_heel_results_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_results ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.heracles_results_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_results_dist ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.heracles_results_dist_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.ir_analysis_dist ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.ir_analysis_dist_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.penelope_laertes_uni_pivot ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.penelope_laertes_uni_pivot_id_seq'::regclass); + +ALTER TABLE ONLY ${ohdsiSchema}.achilles_cache + ADD CONSTRAINT achilles_cache_pk PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.ee_analysis_status + ADD CONSTRAINT analysis_execution_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.analysis_generation_info + ADD CONSTRAINT analysis_generation_info_pkey PRIMARY KEY (job_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_execution_context + ADD CONSTRAINT batch_job_execution_context_pkey PRIMARY KEY (job_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_execution + ADD CONSTRAINT batch_job_execution_pkey PRIMARY KEY (job_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_instance + ADD CONSTRAINT batch_job_instance_pkey PRIMARY KEY (job_instance_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_step_execution_context + ADD CONSTRAINT batch_step_execution_context_pkey PRIMARY KEY (step_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_step_execution + ADD CONSTRAINT batch_step_execution_pkey PRIMARY KEY (step_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cca_execution_ext + ADD CONSTRAINT cca_execution_ext_pkey PRIMARY KEY (cca_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cca_execution + ADD CONSTRAINT cca_execution_pk PRIMARY KEY (cca_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cdm_cache + ADD CONSTRAINT cdm_cache_pk PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.cdm_cache + ADD CONSTRAINT cdm_cache_un UNIQUE (concept_id, source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_analysis_gen_info + ADD CONSTRAINT cohort_analysis_gen_info_pkey PRIMARY KEY (source_id, cohort_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_analysis_list_xref + ADD CONSTRAINT cohort_analysis_list_xref_pkey PRIMARY KEY (source_id, cohort_id, analysis_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_concept_map + ADD CONSTRAINT cohort_concept_map_pkey PRIMARY KEY (cohort_definition_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_inclusion + ADD CONSTRAINT cohort_inclusion_pkey PRIMARY KEY (cohort_definition_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_inclusion_result + ADD CONSTRAINT cohort_inclusion_result_pkey PRIMARY KEY (cohort_definition_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_inclusion_stats + ADD CONSTRAINT cohort_inclusion_stats_pkey PRIMARY KEY (cohort_definition_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort + ADD CONSTRAINT cohort_pkey PRIMARY KEY (cohort_definition_id, subject_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_sample + ADD CONSTRAINT cohort_sample_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_summary_stats + ADD CONSTRAINT cohort_summary_stats_pkey PRIMARY KEY (cohort_definition_id); + +ALTER TABLE ONLY ${ohdsiSchema}.exampleapp_widget + ADD CONSTRAINT exampleapp_widget_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.feas_study_inclusion_stats + ADD CONSTRAINT feas_study_inclusion_stats_pkey PRIMARY KEY (study_id); + +ALTER TABLE ONLY ${ohdsiSchema}.feas_study_index_stats + ADD CONSTRAINT feas_study_index_stats_pkey PRIMARY KEY (study_id); + +ALTER TABLE ONLY ${ohdsiSchema}.feas_study_result + ADD CONSTRAINT feas_study_result_pkey PRIMARY KEY (study_id); + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_inclusion + ADD CONSTRAINT feasibility_inclusion_pkey PRIMARY KEY (study_id, sequence); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_analysis + ADD CONSTRAINT heracles_analysis_pkey PRIMARY KEY (analysis_id); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_heel_results + ADD CONSTRAINT heracles_heel_results_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_results_dist + ADD CONSTRAINT heracles_results_dist_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_results + ADD CONSTRAINT heracles_results_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.ir_analysis_dist + ADD CONSTRAINT ir_analysis_dist_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_instance + ADD CONSTRAINT job_inst_un UNIQUE (job_name, job_key); + +ALTER TABLE ONLY ${ohdsiSchema}.output_file_contents + ADD CONSTRAINT output_file_contents_pkey PRIMARY KEY (output_file_id); + +ALTER TABLE ONLY ${ohdsiSchema}.penelope_laertes_uni_pivot + ADD CONSTRAINT penelope_laertes_uni_pivot_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.penelope_laertes_universe + ADD CONSTRAINT penelope_laertes_universe_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_permission + ADD CONSTRAINT permission_unique UNIQUE (value); + +ALTER TABLE ONLY ${ohdsiSchema}.cca + ADD CONSTRAINT pk_cca_cca_id PRIMARY KEY (cca_id); + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_study + ADD CONSTRAINT pk_clinical_trial_protocol PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_definition + ADD CONSTRAINT pk_cohort_definition PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_definition_details + ADD CONSTRAINT pk_cohort_definition_details PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_generation_info + ADD CONSTRAINT pk_cohort_generation_info PRIMARY KEY (id, source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_study + ADD CONSTRAINT pk_cohort_study PRIMARY KEY (cohort_study_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_tag + ADD CONSTRAINT pk_cohort_tags_id PRIMARY KEY (asset_id, tag_id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_version + ADD CONSTRAINT pk_cohort_version_id PRIMARY KEY (asset_id, version); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_of_interest + ADD CONSTRAINT pk_concept_of_interest PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set + ADD CONSTRAINT pk_concept_set PRIMARY KEY (concept_set_id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_annotation + ADD CONSTRAINT pk_concept_set_annotation_id PRIMARY KEY (concept_set_annotation_id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_generation_info + ADD CONSTRAINT pk_concept_set_generation_info PRIMARY KEY (concept_set_id, source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_item + ADD CONSTRAINT pk_concept_set_item PRIMARY KEY (concept_set_item_id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_negative_controls + ADD CONSTRAINT pk_concept_set_nc PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_tag + ADD CONSTRAINT pk_concept_set_tags_id PRIMARY KEY (asset_id, tag_id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_version + ADD CONSTRAINT pk_concept_set_version_id PRIMARY KEY (asset_id, version); + +ALTER TABLE ONLY ${ohdsiSchema}.drug_hoi_evidence + ADD CONSTRAINT pk_drug_hoi_evidence PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.drug_hoi_relationship + ADD CONSTRAINT pk_drug_hoi_relationship PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.drug_labels + ADD CONSTRAINT pk_drug_labels PRIMARY KEY (drug_label_id); + +ALTER TABLE ONLY ${ohdsiSchema}.evidence_sources + ADD CONSTRAINT pk_evidence_sources PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.fe_analysis_conceptset + ADD CONSTRAINT pk_fe_conceptset_id PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.feas_study_generation_info + ADD CONSTRAINT pk_feas_study_generation_info PRIMARY KEY (study_id, source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.generation_cache + ADD CONSTRAINT pk_generation_cache PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.heracles_visualization_data + ADD CONSTRAINT pk_heracles_viz_data PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.ir_version + ADD CONSTRAINT pk_ir_version_id PRIMARY KEY (asset_id, version); + +ALTER TABLE ONLY ${ohdsiSchema}.laertes_summary + ADD CONSTRAINT pk_laertes_summary PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.pathway_version + ADD CONSTRAINT pk_pathway_version_id PRIMARY KEY (asset_id, version); + +ALTER TABLE ONLY ${ohdsiSchema}.plp + ADD CONSTRAINT pk_plp_plp_id PRIMARY KEY (plp_id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable + ADD CONSTRAINT pk_reusable_id PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable_tag + ADD CONSTRAINT pk_reusable_tag_id PRIMARY KEY (asset_id, tag_id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable_version + ADD CONSTRAINT pk_reusable_version_id PRIMARY KEY (asset_id, version); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_permission + ADD CONSTRAINT pk_sec_permission PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role + ADD CONSTRAINT pk_sec_role PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_permission + ADD CONSTRAINT pk_sec_role_permission PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_user + ADD CONSTRAINT pk_sec_user PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_user_role + ADD CONSTRAINT pk_sec_user_role PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.source + ADD CONSTRAINT pk_source PRIMARY KEY (source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.source_daimon + ADD CONSTRAINT pk_source_daimon PRIMARY KEY (source_daimon_id); + +ALTER TABLE ONLY ${ohdsiSchema}.tag + ADD CONSTRAINT pk_tags_id PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.tool + ADD CONSTRAINT pk_tool PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.user_import_job + ADD CONSTRAINT pk_user_import_job PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.user_import_job_weekdays + ADD CONSTRAINT pk_user_import_job_weekdays PRIMARY KEY (user_import_job_id, day_of_week); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_permission + ADD CONSTRAINT role_permission_unique UNIQUE (role_id, permission_id); + +-- NOTE: schema_version constraint removed - Flyway manages this table automatically + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_group + ADD CONSTRAINT sec_role_group_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role + ADD CONSTRAINT sec_role_name_uq UNIQUE (name, system_role); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_user + ADD CONSTRAINT sec_user_login_unique UNIQUE (login); + +ALTER TABLE ONLY ${ohdsiSchema}.source + ADD CONSTRAINT source_key_unique UNIQUE (source_key); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_group + ADD CONSTRAINT uc_provider_group_role UNIQUE (provider, group_dn, role_id, job_id); + +ALTER TABLE ONLY ${ohdsiSchema}.source_daimon + ADD CONSTRAINT un_source_daimon UNIQUE (source_id, daimon_type); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_definition + ADD CONSTRAINT uq_cd_name UNIQUE (name); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set + ADD CONSTRAINT uq_cs_name UNIQUE (concept_set_name); + +ALTER TABLE ONLY ${ohdsiSchema}.generation_cache + ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); + +CREATE UNIQUE INDEX achilles_cache_source_id_idx ON ${ohdsiSchema}.achilles_cache USING btree (source_id, cache_name); + +CREATE INDEX bjep_job_exec_params_idx ON ${ohdsiSchema}.batch_job_execution_params USING btree (job_execution_id); + +CREATE INDEX cdm_cache_concept_id_idx ON ${ohdsiSchema}.cdm_cache USING btree (concept_id, source_id); + +CREATE INDEX cohort_tags_cohort_id_idx ON ${ohdsiSchema}.cohort_tag USING btree (asset_id); + +CREATE INDEX cohort_tags_tag_id_idx ON ${ohdsiSchema}.cohort_tag USING btree (tag_id); + +CREATE INDEX cohort_version_asset_idx ON ${ohdsiSchema}.cohort_version USING btree (asset_id); + +CREATE INDEX concept_set_tags_concept_id_idx ON ${ohdsiSchema}.concept_set_tag USING btree (asset_id); + +CREATE INDEX concept_set_tags_tag_id_idx ON ${ohdsiSchema}.concept_set_tag USING btree (tag_id); + +CREATE INDEX concept_set_version_asset_idx ON ${ohdsiSchema}.concept_set_version USING btree (asset_id); + +CREATE INDEX heracles_viz_data_idx ON ${ohdsiSchema}.heracles_visualization_data USING btree (cohort_definition_id, source_id, visualization_key); + +CREATE UNIQUE INDEX heracles_viz_data_unq_idx ON ${ohdsiSchema}.heracles_visualization_data USING btree (cohort_definition_id, source_id, visualization_key, drilldown_id); + +CREATE INDEX hh_idx_cohort_id_analysis_id ON ${ohdsiSchema}.heracles_heel_results USING btree (cohort_definition_id, analysis_id); + +CREATE INDEX hr_idx_cohort_def_id ON ${ohdsiSchema}.heracles_results USING btree (cohort_definition_id); + +CREATE INDEX hr_idx_cohort_def_id_dt ON ${ohdsiSchema}.heracles_results USING btree (cohort_definition_id, last_update_time); + +CREATE INDEX hr_idx_cohort_id_analysis_id ON ${ohdsiSchema}.heracles_results USING btree (cohort_definition_id, analysis_id); + +CREATE INDEX hr_idx_cohort_id_first_res ON ${ohdsiSchema}.heracles_results USING btree (cohort_definition_id, analysis_id, count_value, stratum_1); + +CREATE INDEX hrd_idx_cohort_def_id ON ${ohdsiSchema}.heracles_results_dist USING btree (cohort_definition_id); + +CREATE INDEX hrd_idx_cohort_def_id_dt ON ${ohdsiSchema}.heracles_results_dist USING btree (cohort_definition_id, last_update_time); + +CREATE INDEX hrd_idx_cohort_id_analysis_id ON ${ohdsiSchema}.heracles_results_dist USING btree (cohort_definition_id, analysis_id); + +CREATE INDEX hrd_idx_cohort_id_first_res ON ${ohdsiSchema}.heracles_results_dist USING btree (cohort_definition_id, analysis_id, count_value, stratum_1); + +CREATE INDEX idx_cohort_sample_source ON ${ohdsiSchema}.cohort_sample USING btree (cohort_definition_id, source_id); + +CREATE INDEX idx_penelope_laertes_uni_pivot ON ${ohdsiSchema}.penelope_laertes_uni_pivot USING btree (ingredient_concept_id, condition_concept_id); + +ALTER TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot CLUSTER ON idx_penelope_laertes_uni_pivot; + +CREATE INDEX ir_version_asset_idx ON ${ohdsiSchema}.ir_version USING btree (asset_id); + +CREATE INDEX pathway_version_asset_idx ON ${ohdsiSchema}.pathway_version USING btree (asset_id); + +CREATE UNIQUE INDEX reusable_name_idx ON ${ohdsiSchema}.reusable USING btree (lower((name)::text)); + +CREATE INDEX reusable_tag_reusableidx ON ${ohdsiSchema}.reusable_tag USING btree (asset_id); + +CREATE INDEX reusable_tag_tag_id_idx ON ${ohdsiSchema}.reusable_tag USING btree (tag_id); + +CREATE INDEX reusable_version_asset_idx ON ${ohdsiSchema}.reusable_version USING btree (asset_id); + +-- NOTE: schema_version index removed - Flyway manages this table automatically + +CREATE UNIQUE INDEX tags_name_idx ON ${ohdsiSchema}.tag USING btree (lower((name)::text)); + +ALTER TABLE ONLY ${ohdsiSchema}.achilles_cache + ADD CONSTRAINT achilles_cache_fk FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source(source_id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cca + ADD CONSTRAINT cca_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cca + ADD CONSTRAINT cca_modified_by_id_fkey FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cdm_cache + ADD CONSTRAINT cdm_cache_fk FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source(source_id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_definition + ADD CONSTRAINT cohort_definition_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_definition + ADD CONSTRAINT cohort_definition_modified_by_id_fkey FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_generation_info + ADD CONSTRAINT cohort_generation_info_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_tag + ADD CONSTRAINT cohort_tags_fk_definitions FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_definition(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_tag + ADD CONSTRAINT cohort_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tag(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set + ADD CONSTRAINT concept_set_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set + ADD CONSTRAINT concept_set_modified_by_id_fkey FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_tag + ADD CONSTRAINT concept_set_tags_fk_sets FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.concept_set(concept_set_id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_tag + ADD CONSTRAINT concept_set_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tag(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_study + ADD CONSTRAINT feasibility_study_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_study + ADD CONSTRAINT feasibility_study_modified_by_id_fkey FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_analysis_gen_info + ADD CONSTRAINT fk_cagi_cohort_id FOREIGN KEY (cohort_id) REFERENCES ${ohdsiSchema}.cohort_definition(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_analysis_list_xref + ADD CONSTRAINT fk_calx_source_id FOREIGN KEY (source_id, cohort_id) REFERENCES ${ohdsiSchema}.cohort_analysis_gen_info(source_id, cohort_id); + +ALTER TABLE ONLY ${ohdsiSchema}.analysis_generation_info + ADD CONSTRAINT fk_cgi_sec_user FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_definition_details + ADD CONSTRAINT fk_cohort_definition_details_cohort_definition FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.cohort_definition(id); + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_generation_info + ADD CONSTRAINT fk_cohort_generation_info_cohort_definition FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.cohort_definition(id) ON UPDATE CASCADE ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_sample + ADD CONSTRAINT fk_cohort_sample_definition_id FOREIGN KEY (cohort_definition_id) REFERENCES ${ohdsiSchema}.cohort_definition(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_sample + ADD CONSTRAINT fk_cohort_sample_source_id FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source(source_id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_version + ADD CONSTRAINT fk_cohort_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_definition(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.cohort_version + ADD CONSTRAINT fk_cohort_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_annotation + ADD CONSTRAINT fk_concept_set FOREIGN KEY (concept_set_id) REFERENCES ${ohdsiSchema}.concept_set(concept_set_id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_generation_info + ADD CONSTRAINT fk_concept_set_generation_info_concept_set FOREIGN KEY (concept_set_id) REFERENCES ${ohdsiSchema}.concept_set(concept_set_id) ON UPDATE CASCADE ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_version + ADD CONSTRAINT fk_concept_set_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.concept_set(concept_set_id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.concept_set_version + ADD CONSTRAINT fk_concept_set_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.drug_hoi_evidence + ADD CONSTRAINT fk_drug_hoi_relationship FOREIGN KEY (drug_hoi_relationship) REFERENCES ${ohdsiSchema}.drug_hoi_relationship(id); + +ALTER TABLE ONLY ${ohdsiSchema}.drug_hoi_evidence + ADD CONSTRAINT fk_evidence_sources FOREIGN KEY (evidence_source_code_id) REFERENCES ${ohdsiSchema}.evidence_sources(id); + +ALTER TABLE ONLY ${ohdsiSchema}.feas_study_generation_info + ADD CONSTRAINT fk_feas_study_generation_info_feasibility_study FOREIGN KEY (study_id) REFERENCES ${ohdsiSchema}.feasibility_study(id); + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_inclusion + ADD CONSTRAINT fk_feasibility_inclusion_feasibility_study FOREIGN KEY (study_id) REFERENCES ${ohdsiSchema}.feasibility_study(id); + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_study + ADD CONSTRAINT fk_feasibility_study_cohort_definition_index FOREIGN KEY (index_def_id) REFERENCES ${ohdsiSchema}.cohort_definition(id); + +ALTER TABLE ONLY ${ohdsiSchema}.feasibility_study + ADD CONSTRAINT fk_feasibility_study_cohort_definition_result FOREIGN KEY (result_def_id) REFERENCES ${ohdsiSchema}.cohort_definition(id); + +ALTER TABLE ONLY ${ohdsiSchema}.generation_cache + ADD CONSTRAINT fk_gc_source_id_source FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source(source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.ir_version + ADD CONSTRAINT fk_ir_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.pathway_version + ADD CONSTRAINT fk_pathway_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable + ADD CONSTRAINT fk_reusable_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable + ADD CONSTRAINT fk_reusable_sec_user_updater FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable_version + ADD CONSTRAINT fk_reusable_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.reusable(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.reusable_version + ADD CONSTRAINT fk_reusable_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_group + ADD CONSTRAINT fk_role_group_job FOREIGN KEY (job_id) REFERENCES ${ohdsiSchema}.user_import_job(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_permission + ADD CONSTRAINT fk_role_permission_to_permission FOREIGN KEY (permission_id) REFERENCES ${ohdsiSchema}.sec_permission(id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_role_permission + ADD CONSTRAINT fk_role_permission_to_role FOREIGN KEY (role_id) REFERENCES ${ohdsiSchema}.sec_role(id); + +ALTER TABLE ONLY ${ohdsiSchema}.source_daimon + ADD CONSTRAINT fk_source_daimon_source_id FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source(source_id); + +ALTER TABLE ONLY ${ohdsiSchema}.tag + ADD CONSTRAINT fk_tags_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.tag + ADD CONSTRAINT fk_tags_sec_user_updater FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.tool + ADD CONSTRAINT fk_tool_ser_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.tool + ADD CONSTRAINT fk_tool_ser_user_updater FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_user_role + ADD CONSTRAINT fk_user_role_to_role FOREIGN KEY (role_id) REFERENCES ${ohdsiSchema}.sec_role(id); + +ALTER TABLE ONLY ${ohdsiSchema}.sec_user_role + ADD CONSTRAINT fk_user_role_to_user FOREIGN KEY (user_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_execution_context + ADD CONSTRAINT job_exec_ctx_fk FOREIGN KEY (job_execution_id) REFERENCES ${ohdsiSchema}.batch_job_execution(job_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_execution_params + ADD CONSTRAINT job_exec_params_fk FOREIGN KEY (job_execution_id) REFERENCES ${ohdsiSchema}.batch_job_execution(job_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_step_execution + ADD CONSTRAINT job_exec_step_fk FOREIGN KEY (job_execution_id) REFERENCES ${ohdsiSchema}.batch_job_execution(job_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_job_execution + ADD CONSTRAINT job_inst_exec_fk FOREIGN KEY (job_instance_id) REFERENCES ${ohdsiSchema}.batch_job_instance(job_instance_id); + +ALTER TABLE ONLY ${ohdsiSchema}.plp + ADD CONSTRAINT plp_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.plp + ADD CONSTRAINT plp_modified_by_id_fkey FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.reusable_tag + ADD CONSTRAINT reusable_tag_fk_reusable FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.reusable(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.reusable_tag + ADD CONSTRAINT reusable_tag_fk_tag FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tag(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.source + ADD CONSTRAINT source_created_by_id_fkey FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.source + ADD CONSTRAINT source_modified_by_id_fkey FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); + +ALTER TABLE ONLY ${ohdsiSchema}.batch_step_execution_context + ADD CONSTRAINT step_exec_ctx_fk FOREIGN KEY (step_execution_id) REFERENCES ${ohdsiSchema}.batch_step_execution(step_execution_id); + +ALTER TABLE ONLY ${ohdsiSchema}.tag_group + ADD CONSTRAINT tag_groups_group_fk FOREIGN KEY (group_id) REFERENCES ${ohdsiSchema}.tag(id) ON DELETE CASCADE; + +ALTER TABLE ONLY ${ohdsiSchema}.tag_group + ADD CONSTRAINT tag_groups_tag_fk FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tag(id) ON DELETE CASCADE; + + diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql b/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql deleted file mode 100644 index c0a2d83830..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.1__schema-create_spring_batch.sql +++ /dev/null @@ -1,79 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE ( - JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY , - VERSION BIGINT , - JOB_NAME VARCHAR(100) NOT NULL, - JOB_KEY VARCHAR(32) NOT NULL, - constraint JOB_INST_UN unique (JOB_NAME, JOB_KEY) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( - JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , - VERSION BIGINT , - JOB_INSTANCE_ID BIGINT NOT NULL, - CREATE_TIME TIMESTAMP NOT NULL, - START_TIME TIMESTAMP DEFAULT NULL , - END_TIME TIMESTAMP DEFAULT NULL , - STATUS VARCHAR(10) , - EXIT_CODE VARCHAR(2500) , - EXIT_MESSAGE VARCHAR(2500) , - LAST_UPDATED TIMESTAMP, - JOB_CONFIGURATION_LOCATION VARCHAR(2500) NULL, - constraint JOB_INST_EXEC_FK foreign key (JOB_INSTANCE_ID) - references BATCH_JOB_INSTANCE(JOB_INSTANCE_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( - JOB_EXECUTION_ID BIGINT NOT NULL , - TYPE_CD VARCHAR(6) NOT NULL , - KEY_NAME VARCHAR(100) NOT NULL , - STRING_VAL VARCHAR(250) , - DATE_VAL TIMESTAMP DEFAULT NULL , - LONG_VAL BIGINT , - DOUBLE_VAL DOUBLE PRECISION , - IDENTIFYING CHAR(1) NOT NULL , - constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID) - references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( - STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , - VERSION BIGINT NOT NULL, - STEP_NAME VARCHAR(100) NOT NULL, - JOB_EXECUTION_ID BIGINT NOT NULL, - START_TIME TIMESTAMP NOT NULL , - END_TIME TIMESTAMP DEFAULT NULL , - STATUS VARCHAR(10) , - COMMIT_COUNT BIGINT , - READ_COUNT BIGINT , - FILTER_COUNT BIGINT , - WRITE_COUNT BIGINT , - READ_SKIP_COUNT BIGINT , - WRITE_SKIP_COUNT BIGINT , - PROCESS_SKIP_COUNT BIGINT , - ROLLBACK_COUNT BIGINT , - EXIT_CODE VARCHAR(2500) , - EXIT_MESSAGE VARCHAR(2500) , - LAST_UPDATED TIMESTAMP, - constraint JOB_EXEC_STEP_FK foreign key (JOB_EXECUTION_ID) - references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( - STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, - SHORT_CONTEXT VARCHAR(2500) NOT NULL, - SERIALIZED_CONTEXT TEXT , - constraint STEP_EXEC_CTX_FK foreign key (STEP_EXECUTION_ID) - references BATCH_STEP_EXECUTION(STEP_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( - JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, - SHORT_CONTEXT VARCHAR(2500) NOT NULL, - SERIALIZED_CONTEXT TEXT , - constraint JOB_EXEC_CTX_FK foreign key (JOB_EXECUTION_ID) - references BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE SEQUENCE ${ohdsiSchema}.BATCH_STEP_EXECUTION_SEQ MAXVALUE 9223372036854775807 NO CYCLE; -CREATE SEQUENCE ${ohdsiSchema}.BATCH_JOB_EXECUTION_SEQ MAXVALUE 9223372036854775807 NO CYCLE; -CREATE SEQUENCE ${ohdsiSchema}.BATCH_JOB_SEQ MAXVALUE 9223372036854775807 NO CYCLE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.2__schema-create_jpa.sql b/src/main/resources/db/migration/postgresql/V1.0.0.2__schema-create_jpa.sql deleted file mode 100644 index 643e3fc93c..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.2__schema-create_jpa.sql +++ /dev/null @@ -1,7 +0,0 @@ ---Needed for JPA/hibernate -CREATE SEQUENCE ${ohdsiSchema}.HIBERNATE_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; ---Example -CREATE TABLE ${ohdsiSchema}.EXAMPLEAPP_WIDGET ( - ID BIGINT NOT NULL PRIMARY KEY , - NAME VARCHAR(50) -); diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.3.1__cohort_generation.sql b/src/main/resources/db/migration/postgresql/V1.0.0.3.1__cohort_generation.sql deleted file mode 100644 index f3a94a91a6..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.3.1__cohort_generation.sql +++ /dev/null @@ -1,23 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - DROP CONSTRAINT FK_cohort_definition_details_cohort_definition -; - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - ADD CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY (id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) - ON DELETE CASCADE -; - -CREATE TABLE ${ohdsiSchema}.cohort_generation_info( - id int NOT NULL, - start_time Timestamp(3) NOT NULL, - execution_duration int NULL, - status int NOT NULL, - is_valid Boolean NOT NULL, - CONSTRAINT PK_cohort_generation_info PRIMARY KEY (id), - CONSTRAINT FK_cohort_generation_info_cohort_definition FOREIGN KEY(id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) - ON UPDATE CASCADE - ON DELETE CASCADE -); diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.3.2__alter_foreign_keys.sql b/src/main/resources/db/migration/postgresql/V1.0.0.3.2__alter_foreign_keys.sql deleted file mode 100644 index 2ffb3ae09e..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.3.2__alter_foreign_keys.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - DROP CONSTRAINT FK_cohort_definition_details_cohort_definition -; - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - ADD CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY (id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.3__cohort_definition_persistence.sql b/src/main/resources/db/migration/postgresql/V1.0.0.3__cohort_definition_persistence.sql deleted file mode 100644 index 35cb863443..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.3__cohort_definition_persistence.sql +++ /dev/null @@ -1,21 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_definition( - id int NOT NULL, - name varchar(255) NOT NULL, - description varchar(1000) NULL, - expression_type varchar(50) NULL, - created_by varchar(255) NULL, - created_date Timestamp(3) NULL, - modified_by varchar(255) NULL, - modified_date Timestamp(3) NULL, - CONSTRAINT PK_cohort_definition PRIMARY KEY (id) -); - -CREATE TABLE ${ohdsiSchema}.cohort_definition_details( - id int, - expression Text NOT NULL, - CONSTRAINT PK_cohort_definition_details PRIMARY KEY (id), - CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY (id) - REFERENCES ${ohdsiSchema}.cohort_definition(id) -); - diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.4.1__heracles_heel.sql b/src/main/resources/db/migration/postgresql/V1.0.0.4.1__heracles_heel.sql deleted file mode 100644 index b97721ce53..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.4.1__heracles_heel.sql +++ /dev/null @@ -1,6 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.HERACLES_HEEL_results -( -cohort_definition_id int, -analysis_id INT, -HERACLES_HEEL_warning VARCHAR(255) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.4.2__measurement_types.sql b/src/main/resources/db/migration/postgresql/V1.0.0.4.2__measurement_types.sql deleted file mode 100644 index 0a74530db9..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.4.2__measurement_types.sql +++ /dev/null @@ -1,19 +0,0 @@ - -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1300,'Number of persons with at least one measurement occurrence, by measurement_concept_id','measurement_concept_id',null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1301,'Number of measurement occurrence records, by measurement_concept_id','measurement_concept_id',null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1302,'Number of persons by measurement occurrence start month, by measurement_concept_id','measurement_concept_id','calendar month',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1303,'Number of distinct measurement occurrence concepts per person',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1304,'Number of persons with at least one measurement occurrence, by measurement_concept_id by calendar year by gender by age decile','measurement_concept_id','calendar year','gender_concept_id','age decile',null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1305,'Number of measurement occurrence records, by measurement_concept_id by measurement_type_concept_id','measurement_concept_id','measurement_type_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1306,'Distribution of age by measurement_concept_id','measurement_concept_id','gender_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1307,'Number of measurement occurrence records, by measurement_concept_id and unit_concept_id','measurement_concept_id','unit_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1309,'Number of measurement records with invalid person_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1310,'Number of measurement records outside valid measurement period',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1312,'Number of measurement records with invalid provider_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1313,'Number of measurement records with invalid visit_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1314,'Number of measurement records with no value (numeric, string, or concept)',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1315,'Distribution of numeric values, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1316,'Distribution of low range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1317,'Distribution of high range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1318,'Number of measurement records below/within/above normal range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1320,'Number of measurement records by measurement start month','calendar month',null,null,null,null,'MEASUREMENT'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.4.3__heracles_index.sql b/src/main/resources/db/migration/postgresql/V1.0.0.4.3__heracles_index.sql deleted file mode 100644 index 989c424a73..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.4.3__heracles_index.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE INDEX HRD_IDX_COHORT_DEF_ID - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id); -CREATE INDEX HRD_IDX_COHORT_ID_ANALYSIS_ID - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, analysis_id); -CREATE INDEX HRD_IDX_COHORT_DEF_ID_DT - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, last_update_time); -CREATE INDEX HRD_IDX_COHORT_ID_FIRST_RES - ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, analysis_id, count_value, stratum_1); - -CREATE INDEX HR_IDX_COHORT_DEF_ID - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id); -CREATE INDEX HR_IDX_COHORT_ID_ANALYSIS_ID - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, analysis_id); -CREATE INDEX HR_IDX_COHORT_DEF_ID_DT - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, last_update_time); -CREATE INDEX HR_IDX_COHORT_ID_FIRST_RES - ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, analysis_id, count_value, stratum_1); - -CREATE INDEX HH_IDX_COHORT_ID_ANALYSIS_ID -ON ${ohdsiSchema}.HERACLES_HEEL_RESULTS (cohort_definition_id, analysis_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.4__cohort_analysis_results.sql b/src/main/resources/db/migration/postgresql/V1.0.0.4__cohort_analysis_results.sql deleted file mode 100644 index 466b867dc3..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.4__cohort_analysis_results.sql +++ /dev/null @@ -1,228 +0,0 @@ - -create table ${ohdsiSchema}.COHORT -( - COHORT_DEFINITION_ID int NOT NULL, - SUBJECT_ID bigint NOT NULL, - cohort_start_date date NOT NULL, - cohort_end_date date NOT NULL -); - -create table ${ohdsiSchema}.heracles_analysis -( - analysis_id int, - analysis_name varchar(255), - stratum_1_name varchar(255), - stratum_2_name varchar(255), - stratum_3_name varchar(255), - stratum_4_name varchar(255), - stratum_5_name varchar(255), - analysis_type varchar(255) -); - -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (0,'Source name',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1,'Number of persons',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (2,'Number of persons by gender','gender_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (3,'Number of persons by year of birth','year_of_birth',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (4,'Number of persons by race','race_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (5,'Number of persons by ethnicity','ethnicity_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (7,'Number of persons with invalid provider_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (8,'Number of persons with invalid location_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (9,'Number of persons with invalid care_site_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (101,'Number of persons by age, with age at first observation period','age',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (102,'Number of persons by gender by age, with age at first observation period','gender_concept_id','age',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (103,'Distribution of age at first observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (104,'Distribution of age at first observation period by gender','gender_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (105,'Length of observation (days) of first observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (106,'Length of observation (days) of first observation period by gender','gender_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (107,'Length of observation (days) of first observation period by age decile','age decile',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (108,'Number of persons by length of observation period, in 30d increments','Observation period length 30d increments',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (109,'Number of persons with continuous observation in each year','calendar year',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (110,'Number of persons with continuous observation in each month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (111,'Number of persons by observation period start month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (112,'Number of persons by observation period end month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (113,'Number of persons by number of observation periods','number of observation periods',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (114,'Number of persons with observation period before year-of-birth',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (115,'Number of persons with observation period end < observation period start',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (116,'Number of persons with at least one day of observation in each year by gender and age decile','calendar year','gender_concept_id','age decile',null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (117,'Number of persons with at least one day of observation in each month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (200,'Number of persons with at least one visit occurrence, by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (201,'Number of visit occurrence records, by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (202,'Number of persons by visit occurrence start month, by visit_concept_id','visit_concept_id','calendar month',null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (203,'Number of distinct visit occurrence concepts per person',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (204,'Number of persons with at least one visit occurrence, by visit_concept_id by calendar year by gender by age decile','visit_concept_id','calendar year','gender_concept_id','age decile',null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (206,'Distribution of age by visit_concept_id','visit_concept_id','gender_concept_id',null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (207,'Number of visit records with invalid person_id',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (208,'Number of visit records outside valid observation period',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (209,'Number of visit records with end date < start date',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (210,'Number of visit records with invalid care_site_id',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (211,'Distribution of length of stay by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (220,'Number of visit occurrence records by visit occurrence start month','calendar month',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (400,'Number of persons with at least one condition occurrence, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (401,'Number of condition occurrence records, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (402,'Number of persons by condition occurrence start month, by condition_concept_id','condition_concept_id','calendar month',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (403,'Number of distinct condition occurrence concepts per person',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (404,'Number of persons with at least one condition occurrence, by condition_concept_id by calendar year by gender by age decile','condition_concept_id','calendar year','gender_concept_id','age decile',null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (405,'Number of condition occurrence records, by condition_concept_id by condition_type_concept_id','condition_concept_id','condition_type_concept_id',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (406,'Distribution of age by condition_concept_id','condition_concept_id','gender_concept_id',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (409,'Number of condition occurrence records with invalid person_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (410,'Number of condition occurrence records outside valid observation period',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (411,'Number of condition occurrence records with end date < start date',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (412,'Number of condition occurrence records with invalid provider_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (413,'Number of condition occurrence records with invalid visit_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (420,'Number of condition occurrence records by condition occurrence start month','calendar month',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (500,'Number of persons with death, by cause_of_death_concept_id','cause_of_death_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (501,'Number of records of death, by cause_of_death_concept_id','cause_of_death_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (502,'Number of persons by death month','calendar month',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (504,'Number of persons with a death, by calendar year by gender by age decile','calendar year','gender_concept_id','age decile',null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (505,'Number of death records, by death_type_concept_id','death_type_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (506,'Distribution of age at death by gender','gender_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (509,'Number of death records with invalid person_id',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (510,'Number of death records outside valid observation period',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (511,'Distribution of time from death to last condition',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (512,'Distribution of time from death to last drug',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (513,'Distribution of time from death to last visit',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (514,'Distribution of time from death to last procedure',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (515,'Distribution of time from death to last observation',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (600,'Number of persons with at least one procedure occurrence, by procedure_concept_id','procedure_concept_id',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (601,'Number of procedure occurrence records, by procedure_concept_id','procedure_concept_id',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (602,'Number of persons by procedure occurrence start month, by procedure_concept_id','procedure_concept_id','calendar month',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (603,'Number of distinct procedure occurrence concepts per person',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (604,'Number of persons with at least one procedure occurrence, by procedure_concept_id by calendar year by gender by age decile','procedure_concept_id','calendar year','gender_concept_id','age decile',null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (605,'Number of procedure occurrence records, by procedure_concept_id by procedure_type_concept_id','procedure_concept_id','procedure_type_concept_id',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (606,'Distribution of age by procedure_concept_id','procedure_concept_id','gender_concept_id',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (609,'Number of procedure occurrence records with invalid person_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (610,'Number of procedure occurrence records outside valid observation period',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (612,'Number of procedure occurrence records with invalid provider_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (613,'Number of procedure occurrence records with invalid visit_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (620,'Number of procedure occurrence records by procedure occurrence start month','calendar month',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (700,'Number of persons with at least one drug exposure, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (701,'Number of drug exposure records, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (702,'Number of persons by drug exposure start month, by drug_concept_id','drug_concept_id','calendar month',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (703,'Number of distinct drug exposure concepts per person',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (704,'Number of persons with at least one drug exposure, by drug_concept_id by calendar year by gender by age decile','drug_concept_id','calendar year','gender_concept_id','age decile',null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (705,'Number of drug exposure records, by drug_concept_id by drug_type_concept_id','drug_concept_id','drug_type_concept_id',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (706,'Distribution of age by drug_concept_id','drug_concept_id','gender_concept_id',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (709,'Number of drug exposure records with invalid person_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (710,'Number of drug exposure records outside valid observation period',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (711,'Number of drug exposure records with end date < start date',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (712,'Number of drug exposure records with invalid provider_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (713,'Number of drug exposure records with invalid visit_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (715,'Distribution of days_supply by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (716,'Distribution of refills by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (717,'Distribution of quantity by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (720,'Number of drug exposure records by drug exposure start month','calendar month',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (800,'Number of persons with at least one observation occurrence, by observation_concept_id','observation_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (801,'Number of observation occurrence records, by observation_concept_id','observation_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (802,'Number of persons by observation occurrence start month, by observation_concept_id','observation_concept_id','calendar month',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (803,'Number of distinct observation occurrence concepts per person',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (804,'Number of persons with at least one observation occurrence, by observation_concept_id by calendar year by gender by age decile','observation_concept_id','calendar year','gender_concept_id','age decile',null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (805,'Number of observation occurrence records, by observation_concept_id by observation_type_concept_id','observation_concept_id','observation_type_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (806,'Distribution of age by observation_concept_id','observation_concept_id','gender_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (807,'Number of observation occurrence records, by observation_concept_id and unit_concept_id','observation_concept_id','unit_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (809,'Number of observation records with invalid person_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (810,'Number of observation records outside valid observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (812,'Number of observation records with invalid provider_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (813,'Number of observation records with invalid visit_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (814,'Number of observation records with no value (numeric, string, or concept)',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (815,'Distribution of numeric values, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (816,'Distribution of low range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (817,'Distribution of high range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (818,'Number of observation records below/within/above normal range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (820,'Number of observation records by observation start month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (900,'Number of persons with at least one drug era, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (901,'Number of drug era records, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (902,'Number of persons by drug era start month, by drug_concept_id','drug_concept_id','calendar month',null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (903,'Number of distinct drug era concepts per person',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (904,'Number of persons with at least one drug era, by drug_concept_id by calendar year by gender by age decile','drug_concept_id','calendar year','gender_concept_id','age decile',null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (906,'Distribution of age by drug_concept_id','drug_concept_id','gender_concept_id',null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (907,'Distribution of drug era length, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (908,'Number of drug eras without valid person',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (909,'Number of drug eras outside valid observation period',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (910,'Number of drug eras with end date < start date',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (920,'Number of drug era records by drug era start month','calendar month',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1000,'Number of persons with at least one condition era, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1001,'Number of condition era records, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1002,'Number of persons by condition era start month, by condition_concept_id','condition_concept_id','calendar month',null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1003,'Number of distinct condition era concepts per person',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1004,'Number of persons with at least one condition era, by condition_concept_id by calendar year by gender by age decile','condition_concept_id','calendar year','gender_concept_id','age decile',null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1006,'Distribution of age by condition_concept_id','condition_concept_id','gender_concept_id',null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1007,'Distribution of condition era length, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1008,'Number of condition eras without valid person',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1009,'Number of condition eras outside valid observation period',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1010,'Number of condition eras with end date < start date',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1020,'Number of condition era records by condition era start month','calendar month',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1100,'Number of persons by location 3-digit zip','3-digit zip',null,null,null,null,'LOCATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1101,'Number of persons by location state','state',null,null,null,null,'LOCATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1200,'Number of persons by place of service','place_of_service_concept_id',null,null,null,null,'CARE_SITE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1201,'Number of visits by place of service','place_of_service_concept_id',null,null,null,null,'CARE_SITE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1700,'Number of records by cohort_definition_id','cohort_definition_id',null,null,null,null,'COHORT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1701,'Number of records with cohort end date < cohort start date',null,null,null,null,null,'COHORT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1800,'Number of persons by age, with age at cohort start','age',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1801,'Distribution of age at cohort start',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1802,'Distribution of age at cohort start by gender','gender_concept_id',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1803,'Distribution of age at cohort start by cohort start year','calendar year',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1804,'Number of persons by duration from cohort start to cohort end, in 30d increments','Cohort period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1805,'Number of persons by duration from observation start to cohort start, in 30d increments','Baseline period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1806,'Number of persons by duration from cohort start to observation end, in 30d increments','Follow-up period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1807,'Number of persons by duration from cohort end to observation end, in 30d increments','Post-cohort period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1808,'Distribution of duration (days) from cohort start to cohort end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1809,'Distribution of duration (days) from cohort start to cohort end, by gender','gender_concept_id',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1810,'Distribution of duration (days) from cohort start to cohort end, by age decile','age decile',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1811,'Distribution of duration (days) from observation start to cohort start',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1812,'Distribution of duration (days) from cohort start to observation end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1813,'Distribution of duration (days) from cohort end to observation end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1814,'Number of persons by cohort start year by gender by age decile','calendar year','gender_concept_id','age decile',null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1815,'Number of persons by cohort start month','calendar month',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1816,'Number of persons by number of cohort periods','number of cohort periods',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1820,'Number of persons by duration from cohort start to first occurrence of condition occurrence, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1821,'Number of events by duration from cohort start to all occurrences of condition occurrence, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1830,'Number of persons by duration from cohort start to first occurrence of procedure occurrence, by procedure_concept_id','procedure_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1831,'Number of events by duration from cohort start to all occurrences of procedure occurrence, by procedure_concept_id','procedure_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1840,'Number of persons by duration from cohort start to first occurrence of drug exposure, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1841,'Number of events by duration from cohort start to all occurrences of drug exposure, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1850,'Number of persons by duration from cohort start to first occurrence of observation, by observation_concept_id','observation_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1851,'Number of events by duration from cohort start to all occurrences of observation, by observation_concept_id','observation_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1860,'Number of persons by duration from cohort start to first occurrence of condition era, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1861,'Number of events by duration from cohort start to all occurrences of condition era, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1870,'Number of persons by duration from cohort start to first occurrence of drug era, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1871,'Number of events by duration from cohort start to all occurrences of drug era, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); - -create table ${ohdsiSchema}.heracles_results -( - cohort_definition_id int, - analysis_id int, - stratum_1 varchar(255), - stratum_2 varchar(255), - stratum_3 varchar(255), - stratum_4 varchar(255), - stratum_5 varchar(255), - count_value bigint, - last_update_time timestamp DEFAULT (now()) -); - - -create table ${ohdsiSchema}.heracles_results_dist -( - cohort_definition_id int, - analysis_id int, - stratum_1 varchar(255), - stratum_2 varchar(255), - stratum_3 varchar(255), - stratum_4 varchar(255), - stratum_5 varchar(255), - count_value bigint, - min_value float, - max_value float, - avg_value float, - stdev_value float, - median_value float, - p10_value float, - p25_value float, - p75_value float, - p90_value float, - last_update_time timestamp DEFAULT (now()) -); - - - - diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.5.1__alter_foreign_keys.sql b/src/main/resources/db/migration/postgresql/V1.0.0.5.1__alter_foreign_keys.sql deleted file mode 100644 index 23bdf04c13..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.5.1__alter_foreign_keys.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion - DROP CONSTRAINT FK_feasibility_inclusion_feasibility_study -; - -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion - ADD CONSTRAINT FK_feasibility_inclusion_feasibility_study - FOREIGN KEY(study_id) - REFERENCES ${ohdsiSchema}.feasibility_study (id) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.5__feasability_tables.sql b/src/main/resources/db/migration/postgresql/V1.0.0.5__feasability_tables.sql deleted file mode 100644 index a7f97f1e85..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.5__feasability_tables.sql +++ /dev/null @@ -1,62 +0,0 @@ -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.feas_study_generation_info( - study_id int NOT NULL, - start_time Timestamp(3) NULL, - execution_duration int NULL, - status int NOT NULL, - is_valid Boolean NOT NULL, - CONSTRAINT PK_feas_study_generation_info PRIMARY KEY (study_id) -); - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.feasibility_study( - id int NOT NULL, - name varchar(255) NOT NULL, - description varchar(1000) NULL, - index_def_id int NULL, - result_def_id int NULL, - generate_info_id int NULL, - created_by varchar(255) NULL, - created_date Timestamp(3) NULL, - modified_by varchar(255) NULL, - modified_date Timestamp(3) NULL, - CONSTRAINT PK_clinical_trial_protocol PRIMARY KEY (id), - CONSTRAINT FK_feasibility_study_cohort_definition_index FOREIGN KEY(index_def_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_feasibility_study_cohort_definition_result FOREIGN KEY(result_def_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_feasibility_study_feas_study_generation_info FOREIGN KEY(generate_info_id) - REFERENCES ${ohdsiSchema}.feas_study_generation_info (study_id) -); - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.feasibility_inclusion( - study_id int NOT NULL, - sequence int NOT NULL, - name varchar(255) NULL, - description varchar(1000) NULL, - expression Text NULL, - CONSTRAINT FK_feasibility_inclusion_feasibility_study FOREIGN KEY(study_id) - REFERENCES ${ohdsiSchema}.feasibility_study (id) - ON DELETE CASCADE -); - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.feas_study_result( - study_id int NOT NULL, - inclusion_rule_mask bigint NOT NULL, - person_count bigint NOT NULL -); - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.feas_study_index_stats( - study_id int NOT NULL, - person_count bigint NOT NULL, - match_count bigint NOT NULL -); - - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.feas_study_inclusion_stats( - study_id int NOT NULL, - rule_sequence int NOT NULL, - name varchar(255) NOT NULL, - person_count bigint NOT NULL, - gain_count bigint NOT NULL, - person_total bigint NOT NULL -); - diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.6.1__schema-create_laertes.sql b/src/main/resources/db/migration/postgresql/V1.0.0.6.1__schema-create_laertes.sql deleted file mode 100644 index ef39d24ac2..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.6.1__schema-create_laertes.sql +++ /dev/null @@ -1,121 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Postgresql script - -DROP TABLE IF EXISTS ${ohdsiSchema}.DRUG_HOI_EVIDENCE; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE'), - DRUG_HOI_RELATIONSHIP VARCHAR(50), - EVIDENCE_TYPE VARCHAR(4000), - MODALITY VARCHAR(1), - EVIDENCE_SOURCE_CODE_ID INTEGER, - STATISTIC_VALUE NUMERIC NOT NULL, - EVIDENCE_LINKOUT VARCHAR(4000), - STATISTIC_TYPE VARCHAR(4000) -); -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.DRUG_HOI_RELATIONSHIP IS 'foreign key to the drug_HOI_relationship id'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.EVIDENCE_TYPE IS 'the type of evidence (literature, product label, pharmacovigilance, EHR)'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.MODALITY IS 'Whether or not the relationship of evidence is to refute the assertion'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.EVIDENCE_SOURCE_CODE_ID IS 'a code indicating the actual source of evidence (e.g., PubMed, US SPLs, EU SPC, VigiBase, etc)'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.STATISTIC_VALUE IS 'For literature-like (e.g., PubMed abstracts, product labeling) sources this holds the count of the number of items of the evidence type present in the evidence base from that source (several rules are used to derive the counts, see documentation on the knowledge-base wiki). From signal detection sources, the result of applying the algorithm indicated in the evidence_type column is shown.'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.EVIDENCE_LINKOUT IS 'For literature-like (e.g., PubMed abstracts, product labeling), this holds a URL that will resolve to a query against the RDF endpoint for all resources used to generate the evidence_count. For signal detection sources, this holds a link to metadata on the algorithm and how it was applied to arrive at the statistical value.'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_EVIDENCE.STATISTIC_TYPE IS 'For literature-like (e.g., PubMed abstracts, product labeling), and other count based methods this holds COUNT. For signal detection sources, this holds a string indicating the type of the result value (e.g., AERS_EBGM, AERS_EB05)'; - -DROP TABLE IF EXISTS ${ohdsiSchema}.EVIDENCE_SOURCES; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE'), - TITLE VARCHAR(4000), - DESCRIPTION VARCHAR(4000), - CONTRIBUTER VARCHAR(4000), - CREATOR VARCHAR(4000), - CREATION_DATE DATE NOT NULL, - RIGHTS VARCHAR(4000), - SOURCE VARCHAR(4000) -); -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.TITLE IS 'a short name for the evidence source. Same as http://purl.org/dc/elements/1.1/title'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.DESCRIPTION IS 'Description of the evidence source. Same as http://purl.org/dc/elements/1.1/description'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.CONTRIBUTER IS 'Same as http://purl.org/dc/elements/1.1/contributor'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.CREATOR IS 'Same as http://purl.org/dc/elements/1.1/creator'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.CREATION_DATE IS 'Date that the source was created. For example, if the source was created in 2010 but added to the knowledge base in 2014, the creation date would be 2010'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.RIGHTS IS 'Same as http://purl.org/dc/elements/1.1/rights'; -COMMENT ON COLUMN ${ohdsiSchema}.EVIDENCE_SOURCES.SOURCE IS 'The source from which this data was derived. Same as http://purl.org/dc/elements/1.1/source'; - -DROP TABLE IF EXISTS ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP; -CREATE TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP ( - ID VARCHAR(50), - DRUG INTEGER, - RXNORM_DRUG VARCHAR(4000), - HOI INTEGER, - SNOMED_HOI VARCHAR(4000) -); -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.DRUG IS 'OMOP/IMEDS Concept ID for the drug'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.RXNORM_DRUG IS 'RxNorm Preferred Term of the Drug'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.HOI IS 'OMOP/IMEDS Concept ID for the Health Outcome of Interest'; -COMMENT ON COLUMN ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP.SNOMED_HOI IS 'SNOMED preferred term of the Health Outcome of Interest'; - -DROP TABLE IF EXISTS ${ohdsiSchema}.LAERTES_SUMMARY; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.LAERTES_SUMMARY ( - ID INTEGER NOT NULL DEFAULT NEXTVAL('LAERTES_SUMMARY_SEQUENCE'), - REPORT_ORDER INTEGER, - REPORT_NAME VARCHAR(4000), - INGREDIENT_ID INTEGER, - INGREDIENT VARCHAR(4000), - CLINICAL_DRUG_ID INTEGER, - CLINICAL_DRUG VARCHAR(4000), - HOI_ID INTEGER, - HOI VARCHAR(4000), - CT_COUNT INTEGER, - CASE_COUNT INTEGER, - OTHER_COUNT INTEGER, - SPLICER_COUNT INTEGER, - EU_SPC_COUNT INTEGER, - SEMMEDDB_CT_COUNT INTEGER, - SEMMEDDB_CASE_COUNT INTEGER, - SEMMEDDB_NEG_CT_COUNT INTEGER, - SEMMEDDB_NEG_CASE_COUNT INTEGER, - EB05 NUMERIC, - EBGM NUMERIC, - AERS_REPORT_COUNT INTEGER -); -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.REPORT_ORDER IS 'there are several reports in this summary, this is an identifier for each report'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.REPORT_NAME IS 'there are several reports in this summary, this is a name of the report'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.INGREDIENT_ID IS 'a drug ingredient CONCEPT_ID'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.INGREDIENT IS 'a drug ingredient name'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CLINICAL_DRUG_ID IS 'if a clinical drug exists, the clinical drug CONCEPT_ID'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CLINICAL_DRUG IS 'if a clinical drug exists, the clinical drug name'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.HOI_ID IS 'the HOI CONCEPT_ID, this is at the SNOMED level'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.HOI IS 'the HOI name, this is at the SNOMED level'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CT_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CASE_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.OTHER_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SPLICER_COUNT IS 'counts of SPLs that mention specific drugs and hois'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.EU_SPC_COUNT IS 'counts of SPCs that mention specific drugs and hois'; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_CT_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_CASE_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_NEG_CT_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_NEG_CASE_COUNT IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.EB05 IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.EBGM IS ''; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.AERS_REPORT_COUNT IS ''; - --- add EVIDENCE_SOURCES table constraints -ALTER TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ADD CONSTRAINT PK_EVIDENCE_SOURCES PRIMARY KEY (ID); - --- add DRUG_HOI_RELATIONSHIP table constraints -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP ADD CONSTRAINT PK_DRUG_HOI_RELATIONSHIP PRIMARY KEY (ID); - --- add LAERTES_SUMMARY table constraints -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD CONSTRAINT PK_LAERTES_SUMMARY PRIMARY KEY (ID); - --- add DRUG_HOI_EVIDENCE table constraints -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT FK_DRUG_HOI_RELATIONSHIP FOREIGN KEY (DRUG_HOI_RELATIONSHIP) REFERENCES ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP(ID); -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT FK_EVIDENCE_SOURCES FOREIGN KEY (EVIDENCE_SOURCE_CODE_ID) REFERENCES ${ohdsiSchema}.EVIDENCE_SOURCES(ID); -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT PK_DRUG_HOI_EVIDENCE PRIMARY KEY (ID); diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.6.2__schema-create_laertes.sql b/src/main/resources/db/migration/postgresql/V1.0.0.6.2__schema-create_laertes.sql deleted file mode 100644 index 0e186e5a5a..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.6.2__schema-create_laertes.sql +++ /dev/null @@ -1,13 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Postgresql script - -ALTER TABLE EVIDENCE_SOURCES ADD coverage_start_date date; -ALTER TABLE EVIDENCE_SOURCES ADD coverage_end_date date; -COMMENT ON COLUMN evidence_sources.coverage_start_date IS 'The start date of coverage for the resource. Data can be trusted on or after this date and up to and including the coverage_end_date'; -COMMENT ON COLUMN evidence_sources.coverage_end_date IS 'The date of coverage for the resource. Data can be trusted on or after the coverage_start_date date and up to and including this date'; - - -ALTER TABLE LAERTES_SUMMARY DROP eb05; -ALTER TABLE LAERTES_SUMMARY DROP ebgm; -ALTER TABLE LAERTES_SUMMARY ADD prr numeric; diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.6.3__schema-create_laertes.sql b/src/main/resources/db/migration/postgresql/V1.0.0.6.3__schema-create_laertes.sql deleted file mode 100644 index b5a0da94fa..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.6.3__schema-create_laertes.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Postgresql script - -ALTER TABLE DRUG_HOI_EVIDENCE ALTER statistic_value DROP NOT NULL; diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.6.4__schema-create_laertes.sql b/src/main/resources/db/migration/postgresql/V1.0.0.6.4__schema-create_laertes.sql deleted file mode 100644 index 5a17e5af6a..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.6.4__schema-create_laertes.sql +++ /dev/null @@ -1,20 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014 - 2016 --- Postgresql script - -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE RENAME MODALITY TO SUPPORTS; - -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY RENAME CT_COUNT TO MEDLINE_CT_COUNT; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY RENAME CASE_COUNT TO MEDLINE_CASE_COUNT; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY RENAME OTHER_COUNT TO MEDLINE_OTHER_COUNT; - -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD CTD_CHEMICAL_DISEASE_COUNT INTEGER; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.CTD_CHEMICAL_DISEASE_COUNT IS ''; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD SEMMEDDB_OTHER_COUNT INTEGER; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_OTHER_COUNT IS ''; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD SEMMEDDB_NEG_OTHER_COUNT INTEGER; -COMMENT ON COLUMN ${ohdsiSchema}.LAERTES_SUMMARY.SEMMEDDB_NEG_OTHER_COUNT IS ''; - - - - diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.6.5__schema-create_penelope_laertes.sql b/src/main/resources/db/migration/postgresql/V1.0.0.6.5__schema-create_penelope_laertes.sql deleted file mode 100644 index 8814907cbf..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.6.5__schema-create_penelope_laertes.sql +++ /dev/null @@ -1,39 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.penelope_laertes_universe -( - id bigint, - condition_concept_id integer, - condition_concept_name character varying(255), - ingredient_concept_id integer, - ingredient_concept_name character varying(255), - evidence_type character varying(255), - supports character(1), - statistic_value numeric, - evidence_linkouts text -); - -CREATE TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot( - condition_concept_id integer, - condition_concept_name character varying(255), - ingredient_concept_id integer, - ingredient_concept_name character varying(255), - medline_ct integer, - medline_case integer, - medline_other integer, - semmeddb_ct_t integer, - semmeddb_case_t integer, - semmeddb_other_t integer, - semmeddb_ct_f integer, - semmeddb_case_f integer, - semmeddb_other_f integer, - eu_spc integer, - spl_adr integer, - aers integer, - aers_prr numeric, - aers_prr_original numeric -); - -CREATE INDEX idx_penelope_laertes_uni_pivot - ON penelope_laertes_uni_pivot - USING btree - (ingredient_concept_id, condition_concept_id); -ALTER TABLE penelope_laertes_uni_pivot CLUSTER ON idx_penelope_laertes_uni_pivot; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.7.0__sources.sql.sql b/src/main/resources/db/migration/postgresql/V1.0.0.7.0__sources.sql.sql deleted file mode 100644 index d4154f74c5..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.7.0__sources.sql.sql +++ /dev/null @@ -1,17 +0,0 @@ -CREATE TABLE source ( - SOURCE_ID int NOT NULL, - SOURCE_NAME VARCHAR (255) NOT NULL, - SOURCE_KEY VARCHAR (50) NOT NULL, - SOURCE_CONNECTION VARCHAR (8000) NOT NULL, - SOURCE_DIALECT VARCHAR (255) NOT NULL, - CONSTRAINT PK_source PRIMARY KEY (source_id) -); - -CREATE TABLE source_daimon ( - source_daimon_id int NOT NULL, - source_id int NOT NULL, - daimon_type int NOT NULL, - table_qualifier VARCHAR (255) NOT NULL, - priority int NOT NULL, - CONSTRAINT PK_source_daimon PRIMARY KEY (source_daimon_id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.7.1__cohort_multihomed_support.sql b/src/main/resources/db/migration/postgresql/V1.0.0.7.1__cohort_multihomed_support.sql deleted file mode 100644 index e6a4d01a53..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.7.1__cohort_multihomed_support.sql +++ /dev/null @@ -1,31 +0,0 @@ -ALTER TABLE cohort_generation_info DROP CONSTRAINT FK_cohort_generation_info_cohort_definition; - -CREATE TABLE tmp_ms_xx_cohort_generation_info ( - id INT NOT NULL, - source_id INT NOT NULL, - start_time Timestamp(3) NULL, - execution_duration INT NULL, - status INT NOT NULL, - is_valid Boolean NOT NULL, - CONSTRAINT tmp_ms_xx_constraint_PK_cohort_generation_info PRIMARY KEY (id, source_id) -); - -INSERT INTO tmp_ms_xx_cohort_generation_info (id, source_id, start_time, execution_duration, status, is_valid) -SELECT id, - 1, - start_time, - execution_duration, - status, - is_valid -FROM cohort_generation_info; - -DROP TABLE cohort_generation_info; - -ALTER TABLE tmp_ms_xx_cohort_generation_info RENAME TO cohort_generation_info; - -ALTER INDEX tmp_ms_xx_constraint_PK_cohort_generation_info RENAME TO PK_cohort_generation_info; - -ALTER TABLE cohort_generation_info - ADD CONSTRAINT FK_cohort_generation_info_cohort_definition - FOREIGN KEY (id) REFERENCES cohort_definition (id) - ON DELETE CASCADE ON UPDATE CASCADE; diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.7.2__feasability_multihomed_support.sql.sql b/src/main/resources/db/migration/postgresql/V1.0.0.7.2__feasability_multihomed_support.sql.sql deleted file mode 100644 index b0b71f5979..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.7.2__feasability_multihomed_support.sql.sql +++ /dev/null @@ -1,31 +0,0 @@ -ALTER TABLE feasibility_study DROP CONSTRAINT FK_feasibility_study_feas_study_generation_info; - -CREATE TABLE tmp_ms_xx_feas_study_generation_info ( - study_id INT NOT NULL, - source_id INT NOT NULL, - start_time Timestamp(3) NULL, - execution_duration INT NULL, - status INT NOT NULL, - is_valid Boolean NOT NULL, - CONSTRAINT tmp_ms_xx_constraint_PK_feas_study_generation_info PRIMARY KEY (study_id,source_id) -); - -INSERT INTO tmp_ms_xx_feas_study_generation_info (study_id, source_id, start_time, execution_duration, status, is_valid) -SELECT study_id, - 1, - start_time, - execution_duration, - status, - is_valid -FROM feas_study_generation_info; - -DROP TABLE feas_study_generation_info; - -ALTER TABLE tmp_ms_xx_feas_study_generation_info RENAME TO feas_study_generation_info; - -ALTER INDEX tmp_ms_xx_constraint_PK_feas_study_generation_info RENAME TO PK_feas_study_generation_info; - -ALTER TABLE feasibility_study DROP COLUMN generate_info_id; - -ALTER TABLE feas_study_generation_info - ADD CONSTRAINT FK_feas_study_generation_info_feasibility_study FOREIGN KEY (study_id) REFERENCES feasibility_study (id); diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.8__heracles_data.sql b/src/main/resources/db/migration/postgresql/V1.0.0.8__heracles_data.sql deleted file mode 100644 index 9f7f57a6cf..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.8__heracles_data.sql +++ /dev/null @@ -1,15 +0,0 @@ -CREATE SEQUENCE HERACLES_VIZ_DATA_SEQUENCE START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 NO CYCLE; - -CREATE TABLE HERACLES_VISUALIZATION_DATA ( - id integer NOT NULL , - cohort_definition_id integer NOT NULL , - source_id integer NOT NULL, - visualization_key VARCHAR(300) NOT NULL, - drilldown_id integer, - data TEXT NOT NULL, - end_time Timestamp(3) NOT NULL, - CONSTRAINT PK_heracles_viz_data PRIMARY KEY (id) -); - -CREATE UNIQUE INDEX HERACLES_VIZ_DATA_UNQ_IDX ON HERACLES_VISUALIZATION_DATA (COHORT_DEFINITION_ID, SOURCE_ID, VISUALIZATION_KEY, DRILLDOWN_ID); -CREATE INDEX HERACLES_VIZ_DATA_IDX ON HERACLES_VISUALIZATION_DATA (COHORT_DEFINITION_ID, SOURCE_ID, VISUALIZATION_KEY); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.9.1__shiro_security-initial_values.sql b/src/main/resources/db/migration/postgresql/V1.0.0.9.1__shiro_security-initial_values.sql deleted file mode 100644 index bdcb4776e2..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.9.1__shiro_security-initial_values.sql +++ /dev/null @@ -1,69 +0,0 @@ - --- roles --- - -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (1, 'public'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (2, 'admin'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (3, 'concept set creator'); ---INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (4, 'concept set reader'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (5, 'cohort creator'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (6, 'cohort reader'); - --- permissions --- - --- admin -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (200, 'configuration:edit:ui', 'Access to ''Configuration'' page'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (201, 'user:get', 'Get list of users'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (202, 'permission:get', 'Get list of permissions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (203, 'role:post', 'Create role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (204, 'role:get', 'Get list of roles'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (205, 'role:*:get', 'Get role by ID'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (206, 'role:*:permissions:get', 'Get list of role''s permissions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (207, 'role:*:users:get', 'Get list of role''s users'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (208, 'role:*:users:*:put', 'Add users to role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (209, 'role:*:users:*:delete', 'Remove users from role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (210, 'role:1:permissions:*:put', 'Add permissions to public role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (211, 'role:1:permissions:*:delete', 'Remove permissions from public role'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 200); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 201); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 202); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 203); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 204); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 205); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 206); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 207); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 208); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 209); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 210); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 211); - --- concept set creator -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (30, 'conceptset:post', 'Create Concept Set'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (3, 30); - --- cohort creator -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (50, 'cohortdefinition:post', 'Save new Cohort Definition'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (51, 'job:execution:get', 'Get list of jobs'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (52, 'cohortdefinition:*:copy:get', 'Copy the specified cohort definition'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 50); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 51); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 52); - --- cohort reader -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (60, 'cohortdefinition:get', 'Get list of Cohort Definitions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (61, 'cohortdefinition:*:get', 'Get Cohort Definition by ID'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (62, 'cohortdefinition:*:info:get', ''); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (63, '*:vocabulary:lookup:identifiers:post', 'Perform a lookup of an array of concept identifiers returning the matching concepts with their detailed properties.'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (64, 'cohortdefinition:sql:post', 'Generate SQL from Cohort expression'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (65, '*:cohortresults:*:breakdown:get', 'Get breakdown with counts about people in cohort'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 60); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 61); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 62); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 63); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 64); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 65); diff --git a/src/main/resources/db/migration/postgresql/V1.0.0.9__shiro_security.sql b/src/main/resources/db/migration/postgresql/V1.0.0.9__shiro_security.sql deleted file mode 100644 index 99831abd2e..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.0.9__shiro_security.sql +++ /dev/null @@ -1,80 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.SEC_USER_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_USER( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.SEC_USER_SEQUENCE'), - LOGIN VARCHAR(50), - PASSWORD VARCHAR(255), - SALT VARCHAR(255), - NAME VARCHAR(100) -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.LOGIN IS 'Login'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.PASSWORD IS 'Password'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.SALT IS 'Salt for password encoding'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER.NAME IS 'Displayed name for user'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_ROLE_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_ROLE ( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.SEC_ROLE_SEQUENCE'), - NAME VARCHAR(255) -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE.ID IS 'primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE.NAME IS 'Role name'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_USER_ROLE_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_USER_ROLE( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.SEC_USER_ROLE_SEQUENCE'), - USER_ID INTEGER NOT NULL, - ROLE_ID INTEGER NOT NULL, - STATUS VARCHAR(255) NULL -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.ID IS 'Primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.USER_ID IS 'Foreign key to SEC_USER'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.ROLE_ID IS 'Foreign key to SEC_ROLE'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_USER_ROLE.STATUS IS 'Status of relation between user and role'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_PERMISSION_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_PERMISSION( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.SEC_PERMISSION_SEQUENCE'), - VALUE VARCHAR(255) NOT NULL, - DESCRIPTION VARCHAR(255) NULL -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_PERMISSION.ID IS 'Primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_PERMISSION.VALUE IS 'Permission'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_PERMISSION.DESCRIPTION IS 'Desctiption of permission'; - -CREATE SEQUENCE ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ( - ID INTEGER NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE'), - ROLE_ID INTEGER NOT NULL, - PERMISSION_ID INTEGER NOT NULL, - STATUS VARCHAR(255) NULL -); - -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.ID IS 'Primary key'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.ROLE_ID IS 'Foreign key to SEC_ROLE'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.PERMISSION_ID IS 'Foreign key to SEC_PERMISSION'; -COMMENT ON COLUMN ${ohdsiSchema}.SEC_ROLE_PERMISSION.STATUS IS 'Status of relation between role and permission'; - - --- add SEC_USER table constraints -ALTER TABLE ${ohdsiSchema}.SEC_USER ADD CONSTRAINT PK_SEC_USER PRIMARY KEY (ID); - --- add SEC_ROLE table constraints -ALTER TABLE ${ohdsiSchema}.SEC_ROLE ADD CONSTRAINT PK_SEC_ROLE PRIMARY KEY (ID); - --- add SEC_PERMISSION table constraints -ALTER TABLE ${ohdsiSchema}.SEC_PERMISSION ADD CONSTRAINT PK_SEC_PERMISSION PRIMARY KEY (ID); - --- add SEC_USER_ROLE table constraints -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT PK_SEC_USER_ROLE PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT FK_USER_ROLE_TO_USER FOREIGN KEY (USER_ID) REFERENCES ${ohdsiSchema}.SEC_USER(ID); -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT FK_USER_ROLE_TO_ROLE FOREIGN KEY (ROLE_ID) REFERENCES ${ohdsiSchema}.SEC_ROLE(ID); - --- add SEC_ROLE_PERMISSION table constraints -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT PK_SEC_ROLE_PERMISSION PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT FK_ROLE_PERMISSION_TO_ROLE FOREIGN KEY (ROLE_ID) REFERENCES ${ohdsiSchema}.SEC_ROLE(ID); -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT FK_ROLE_PERMISSION_TO_PERMISSION FOREIGN KEY (PERMISSION_ID) REFERENCES ${ohdsiSchema}.SEC_PERMISSION(ID); diff --git a/src/main/resources/db/migration/postgresql/V1.0.1.0__conceptsets.sql b/src/main/resources/db/migration/postgresql/V1.0.1.0__conceptsets.sql deleted file mode 100644 index ee24f0e956..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.1.0__conceptsets.sql +++ /dev/null @@ -1,19 +0,0 @@ -DROP TABLE IF EXISTS ${ohdsiSchema}.concept_set; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.concept_set_sequence; -CREATE SEQUENCE ${ohdsiSchema}.concept_set_sequence MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.concept_set ( - concept_set_id INTEGER NOT NULL DEFAULT NEXTVAL('concept_set_sequence'), - concept_set_name VARCHAR(255) NOT NULL -); - -DROP TABLE IF EXISTS ${ohdsiSchema}.concept_set_item; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.concept_set_item_sequence; -CREATE SEQUENCE ${ohdsiSchema}.concept_set_item_sequence MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.concept_set_item ( - concept_set_item_id INTEGER NOT NULL DEFAULT NEXTVAL('concept_set_item_sequence'), - concept_set_id INTEGER NOT NULL, - concept_id INTEGER NOT NULL, - is_excluded INTEGER NOT NULL, - include_descendants INTEGER NOT NULL, - include_mapped INTEGER NOT NULL -); diff --git a/src/main/resources/db/migration/postgresql/V1.0.1.1.1__penelope_data.sql b/src/main/resources/db/migration/postgresql/V1.0.1.1.1__penelope_data.sql deleted file mode 100644 index 295d22edc5..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.1.1.1__penelope_data.sql +++ /dev/null @@ -1,4635 +0,0 @@ -SET datestyle TO 'MDY'; - -/* COHORT_STUDY */ -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (1, 296, 1, 'Treatment Pathways in Chronic Disease', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:treatment_pathways_in_chronic_disease'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (2, 296, 1, 'Early Treatment Pathways in Chronic Disease', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:treatment_pathways_in_chronic_disease_12_mos'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (3, 296, 1, 'Drug Utilization in Childre', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:drugs_in_peds'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (4, 293, 1, 'Drug Utilization in Childre', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:drugs_in_peds'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (5, 293, 2, 'Population-level estimation of comparative risks of Celecoxib versus non-selective NSAIDs', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:celecoxib_vs_nsnsaids'); -INSERT INTO COHORT_STUDY (cohort_study_id, cohort_definition_id, study_type, study_name, study_URL) VALUES (6, 293, 3, 'Predicting outcomes for new users of celecoxib', 'http://www.ohdsi.org/web/wiki/doku.php?id=research:celecoxib_prediction_models'); - -/* CONCEPT_OF_INTEREST */ -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (1, 4329847, 4185932) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (2, 4329847, 77670) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (3, 192671, 4247120) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (4, 192671, 201340) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (5, 192671, 4266809) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (6, 192359, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (7, 197320, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (8, 432791, 43021226) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (9, 319835, 316139) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (10, 319835, 4024552) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (11, 316139, 4024552) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (12, 312327, 4329847) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (13, 312327, 4185932) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (14, 197508, 200680) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (15, 4290333, 4174977) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (16, 4170143, 4085100) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (17, 378253, 318736) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (18, 4283893, 4138403) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (19, 312327, 321318) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (20, 4329847, 321318) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (21, 312327, 77670) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (22, 73153, 200680) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (23, 4181583, 257011) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (24, 194984, 137977) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (25, 137977, 194984) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (26, 4245975, 194984) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (27, 312327, 321318) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (28, 312327, 77670) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (29, 319835, 433595) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (30, 319835, 321319) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (31, 4181583, 4085100) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (32, 4283893, 4138403) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (33, 316139, 433595) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (34, 316139, 321319) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (35, 4181583, 254761) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (36, 437312, 192671) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (37, 381316, 381591) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (38, 4030518, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (39, 198124, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (40, 4220631, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (41, 4152839, 4242411) -; -INSERT INTO CONCEPT_OF_INTEREST (id, concept_id, concept_of_interest_id) VALUES (42, 4148381, 441202) -; - -/* DRUG_LABELS */ -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1, 'A+D DIAPER RASH (Topical)', '916662', 'dimethicone', '297e62e4-5282-4733-b3f7-f63a16e8ddee', '7/26/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2, 'Abacavir (Oral Pill)', '1736971', 'abacavir', '73ce0bc5-43e2-c57f-0a6a-bdaf9fbaa3c2', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3, 'Abacavir/Dolutegravir/lamiVUDine (Oral Pill)', '1736971', 'abacavir', '2997739a-aa91-42aa-a206-a70e2db7b84f', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4, 'Abacavir/lamiVUDine (Oral Pill)', '1736971', 'abacavir', '080e3423-5962-4465-8e78-cd8793699336', '9/1/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(5, 'Abacavir/lamiVUDine/Zidovudine (Oral Pill)', '1736971', 'abacavir', '3354e50f-4dc5-413f-b5ae-87353ab8913d', '4/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(6, 'ABELCET (Injectable)', '19056402', 'amphotericin B liposomal', '5587db37-f21a-4a39-a319-e1077032ced9', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(7, 'ABILIFY (Oral Pill)', '757688', 'aripiprazole', '630f15ee-b839-46d5-9e89-06af3d47e8f5', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(8, 'AbobotulinumtoxinA (Injectable)', '40165377', 'abobotulinumtoxinA', '71313a04-1349-4c26-b840-a39e4a3ddaed', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(9, 'ABREVA (Topical)', '980955', 'docosanol', 'c39b38a7-dcdd-4c32-8f35-b565c4d3cec6', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(10, 'Absidia ramosa extract (Injectable)', '40227558', 'Absidia ramosa extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(11, 'ABSORBINE (Transdermal)', '901656', 'Menthol', '4c80d544-ecb7-4994-bbc0-698970f85549', '5/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(12, 'ABSORBINE JR. (Topical)', '901656', 'Menthol', 'e9e83221-84c5-49a7-9733-a9ccd97a43dd', '1/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(13, 'ABSORICA (Oral Pill)', '984232', 'Isotretinoin', '8d54aab5-3349-4a41-8533-0a566fd7bbaa', '8/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(14, 'ABSTRAL (Sublingual)', '1154029', 'Fentanyl', '4906457e-30ad-4da7-b3ac-bb9e6651a670', '1/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(15, 'Acacia longifolia pollen extract (Injectable)', '40170299', 'Acacia longifolia pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(16, 'Acamprosate (Oral Pill)', '19043959', 'acamprosate', 'fe6f754f-62b4-4c86-805d-221332409516', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(17, 'ACANYA (Topical)', '918172', 'Benzoyl Peroxide', '3dcd2c96-72b1-4a9f-b65c-08198d63b7df', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(18, 'Acarbose (Oral Pill)', '1529331', 'Acarbose', '656769ee-e292-4950-83df-a38e6b1a9d6e', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(19, 'ACCOLATE (Oral Pill)', '1111706', 'zafirlukast', '4bf90772-58d5-456d-ad1c-fc448cc5a231', '8/6/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(20, 'ACCUPRIL (Oral Pill)', '1331235', 'quinapril', 'a2de05b9-d1aa-4fbb-a9a3-6918cc306f78', '4/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(21, 'Acebutolol (Oral Pill)', '1319998', 'Acebutolol', '7eee95bf-0452-4d6e-9712-33403768695a', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(22, 'ACEON (Oral Pill)', '1373225', 'Perindopril', '340846a3-896e-40bf-a4d0-419922df71a1', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(23, 'ACEPHEN (Rectal)', '1125315', 'Acetaminophen', '1922c613-a8e2-4cf2-ab8b-bbc65c394309', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(24, 'ACETADOTE (Injectable)', '1139042', 'Acetylcysteine', '472f158a-5ab9-4308-8e49-1116e6ea3d39', '6/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(25, 'ACETADRYL (Oral Pill)', '1125315', 'Acetaminophen', '7731331b-4486-438b-90a7-f0b8d5a3a593', '12/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(26, 'Acetaminophen (Chewable)', '1125315', 'Acetaminophen', '5c0dbae2-328b-42b6-a8b6-55009f3c78e5', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(27, 'Acetaminophen (Oral Disintegrating)', '1125315', 'Acetaminophen', '1bd01140-0ba7-4e22-be3b-664186aaddb9', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(28, 'Acetaminophen (Oral Liquid)', '1125315', 'Acetaminophen', '3d866a79-481f-4a63-84ba-f049ce83da8d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(29, 'Acetaminophen (Oral Pill)', '1125315', 'Acetaminophen', '05234545-b1c1-4bd2-bd83-34860b6f5691', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(30, 'Acetaminophen (Rectal)', '1125315', 'Acetaminophen', 'daaad04e-4fe8-40ce-9022-1115e9f3a42a', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(31, 'Acetaminophen/Aspirin (Oral Pill)', '1125315', 'Acetaminophen', '4b77be54-e962-4e6b-a244-e3d53a8fecd9', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(32, 'Acetaminophen/Aspirin (Oral Powder)', '1125315', 'Acetaminophen', '055d0288-61d4-48bc-b91f-6ecc1969beb8', '11/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(33, 'Acetaminophen/Aspirin/Caffeine (Oral Pill)', '1125315', 'Acetaminophen', 'f49d3755-bb1b-4b79-baa5-52ad16b2ea64', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(34, 'Acetaminophen/Aspirin/Caffeine (Oral Powder)', '1125315', 'Acetaminophen', '16d774cc-4247-4bf8-9b5a-c338ffebda3d', '11/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(35, 'Acetaminophen/Aspirin/Caffeine/Salicylamide (Oral Pill)', '1125315', 'Acetaminophen', '9fe82229-cc3e-4d79-a448-014fe3d0055b', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(36, 'Acetaminophen/Aspirin/DiphenhydrAMINE (Oral Pill)', '1125315', 'Acetaminophen', 'b3812d27-40af-40d7-864a-dfa4ae34cb9e', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(37, 'Acetaminophen/Butalbital (Oral Pill)', '1125315', 'Acetaminophen', '2cddfd28-6ce7-4708-8f11-6d4dc33fae5b', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(38, 'Acetaminophen/Butalbital/Caffeine (Oral Liquid)', '1125315', 'Acetaminophen', 'bc990056-c75f-4b0b-87f8-4fb9bdcd533c', '5/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(39, 'Acetaminophen/Butalbital/Caffeine (Oral Pill)', '1125315', 'Acetaminophen', 'ea5b9ffe-3cda-405e-8f75-3fd4a64c9a35', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(40, 'Acetaminophen/Butalbital/Caffeine/Codeine (Oral Pill)', '1125315', 'Acetaminophen', '7fd761e6-64fe-44cc-8b74-10ce31ccfd66', '12/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(41, 'Acetaminophen/Caffeine (Oral Pill)', '1125315', 'Acetaminophen', 'cc17ee50-1401-4b31-8c01-e153b4291c7a', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(42, 'Acetaminophen/Caffeine/Dihydrocodeine (Oral Pill)', '1125315', 'Acetaminophen', '3ad82b67-f041-46df-8518-10debc35a5ed', '7/12/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(43, 'Acetaminophen/Caffeine/Isometheptene (Oral Pill)', '1125315', 'Acetaminophen', '1d157217-d307-423c-8f50-965b23881330', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(44, 'Acetaminophen/Caffeine/Pyrilamine (Oral Pill)', '1125315', 'Acetaminophen', 'c9395f86-dfb8-43bb-9f6a-9b948810b265', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(45, 'Acetaminophen/Chlophedianol/Pyrilamine (Oral Liquid)', '1125315', 'Acetaminophen', '7c7dbac3-dd9e-d03a-1303-3d2a207c751b', '11/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(46, 'Acetaminophen/Chlorpheniramine (Oral Pill)', '1125315', 'Acetaminophen', '763a5334-a741-4678-9947-603776622450', '6/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(47, 'Acetaminophen/Chlorpheniramine/Dextromethorphan (Oral Liquid)', '1125315', 'Acetaminophen', 'b0ee7a0e-e2eb-4382-8fde-d002a6ac883a', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(48, 'Acetaminophen/Chlorpheniramine/Dextromethorphan (Oral Pill)', '1125315', 'Acetaminophen', '127e7e43-32dd-4311-817c-57b3988ba1da', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(49, 'Acetaminophen/Chlorpheniramine/Dextromethorphan/Phenylephrine (Effervescent)', '1125315', 'Acetaminophen', 'c7e71ace-c911-46cd-8c92-01385c2f7122', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(50, 'Acetaminophen/Chlorpheniramine/Dextromethorphan/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'a45c4953-b9be-4e04-b82a-f3419d27c129', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(51, 'Acetaminophen/Chlorpheniramine/Dextromethorphan/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', '58a7668f-4702-42a1-a1ca-443c979ea0db', '8/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(52, 'Acetaminophen/Chlorpheniramine/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'ab384d3d-fb33-4aec-9393-822b199e58b6', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(53, 'Acetaminophen/Chlorpheniramine/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'f466c660-69eb-4581-81ff-1499fa421d8b', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(54, 'Acetaminophen/Chlorpheniramine/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', '0a4ace8c-562e-43af-9efb-d323ee4c22ab', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(55, 'Acetaminophen/Codeine (Oral Liquid)', '1125315', 'Acetaminophen', '95ac6875-6b14-4cde-8efb-80704e39b8d8', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(56, 'Acetaminophen/Codeine (Oral Pill)', '1125315', 'Acetaminophen', '61f11bc0-02e7-47ea-a05b-39c590844bf9', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(57, 'Acetaminophen/Dexbrompheniramine (Oral Pill)', '1125315', 'Acetaminophen', '1bd74da3-9c5b-46e9-b599-999cd6eac1d8', '8/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(58, 'Acetaminophen/Dextromethorphan (Oral Liquid)', '1125315', 'Acetaminophen', '9469104e-f06c-481c-a4b7-2fd16cd0db01', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(59, 'Acetaminophen/Dextromethorphan/Doxylamine (Oral Liquid)', '1125315', 'Acetaminophen', 'f985b585-fb62-4a0e-8531-47090c9f8138', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(60, 'Acetaminophen/Dextromethorphan/Doxylamine (Oral Pill)', '1125315', 'Acetaminophen', 'f2b43b3f-c272-49c7-a601-954e2e4865d6', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(61, 'Acetaminophen/Dextromethorphan/Doxylamine/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '8b9211a6-5e8a-48e9-b3fb-ad69dbc758d6', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(62, 'Acetaminophen/Dextromethorphan/guaiFENesin/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'd4bcfabb-a054-4f53-8dc9-d361a03558b8', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(63, 'Acetaminophen/Dextromethorphan/guaiFENesin/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'f4d1cd98-3b1f-452d-9f11-2a8d4c5b83d5', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(64, 'Acetaminophen/Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Liquid)', '1125315', 'Acetaminophen', 'e71c1e5b-9783-4481-b163-0a9877a5031b', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(65, 'Acetaminophen/Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', 'f38a784b-cfc3-4238-9cd3-56c1dba94e6f', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(66, 'Acetaminophen/Dextromethorphan/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'ce1b51d0-25b3-43d9-924d-293b3b5eaeb2', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(67, 'Acetaminophen/Dextromethorphan/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '90bdcea8-c896-49ba-894c-31b1281a512d', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(68, 'Acetaminophen/Dichloralphenazone/Isometheptene (Oral Pill)', '1125315', 'Acetaminophen', '08442901-bb74-4516-9574-86b3dfeeabb1', '6/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(69, 'Acetaminophen/DiphenhydrAMINE (Oral Liquid)', '1125315', 'Acetaminophen', '5b0a3df3-2e9f-4b84-8f37-ed6051e96569', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(70, 'Acetaminophen/DiphenhydrAMINE (Oral Pill)', '1125315', 'Acetaminophen', '2e51c2ef-80d3-4ad0-9ab6-5f70e8d48d67', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(71, 'Acetaminophen/DiphenhydrAMINE (Oral Powder)', '1125315', 'Acetaminophen', 'db5d6c2b-688e-4e88-a42d-0fa2b0d8140b', '12/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(72, 'Acetaminophen/DiphenhydrAMINE/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', 'e96d19bc-5786-4bc1-b25e-2c9f4f385d6d', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(73, 'Acetaminophen/DiphenhydrAMINE/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'ae33d924-9262-41f6-964f-d8b567b3d903', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(74, 'Acetaminophen/Doxylamine/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '119ee51b-6a7f-451b-bf69-ecb92c6a352b', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(75, 'Acetaminophen/guaiFENesin/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', '04c6bb6a-d2f8-4322-afba-e240e8090176', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(76, 'Acetaminophen/guaiFENesin/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', '1b4e87f8-3f9e-4865-9128-527d2d621593', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(77, 'Acetaminophen/guaiFENesin/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', 'd9ce633a-6850-4c24-923f-ded745356e43', '8/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(78, 'Acetaminophen/HYDROcodone (Oral Liquid)', '1125315', 'Acetaminophen', '00ff75bc-aebe-4c55-adea-1c49cf1addb3', '12/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(79, 'Acetaminophen/HYDROcodone (Oral Pill)', '1125315', 'Acetaminophen', 'ab6b4c39-b2d4-4c63-8821-b0560f781287', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(80, 'Acetaminophen/Magnesium Salicylate (Oral Pill)', '1125315', 'Acetaminophen', 'b0a91a7f-bef4-47c8-9813-66279997b173', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(81, 'Acetaminophen/Magnesium Salicylate/Pamabrom (Oral Pill)', '1125315', 'Acetaminophen', '5f2e9d2a-4c7b-4339-8be7-3711a73fdbe9', '6/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(82, 'Acetaminophen/oxyCODONE (Oral Liquid)', '1125315', 'Acetaminophen', '8f0eccce-728f-4039-959b-4887ae32325f', '1/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(83, 'Acetaminophen/oxyCODONE (Oral Pill)', '1125315', 'Acetaminophen', '94679f29-d63a-41a5-bdda-3aa3fc2db531', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(84, 'Acetaminophen/Pamabrom (Oral Pill)', '1125315', 'Acetaminophen', '43949fe7-3764-4d74-959f-8d3ca06fa06e', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(85, 'Acetaminophen/Pamabrom/Pyrilamine (Oral Pill)', '1125315', 'Acetaminophen', 'a7424b9f-f2c0-4289-962d-99c2354c5a60', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(86, 'Acetaminophen/Pentazocine (Oral Pill)', '1125315', 'Acetaminophen', '62a055f3-a58b-446d-9476-af6d36956eaf', '7/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(87, 'Acetaminophen/Pheniramine/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', '4c9a91d9-c8fa-4845-ab06-e3f760acc798', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(88, 'Acetaminophen/Phenylephrine (Oral Liquid)', '1125315', 'Acetaminophen', '7310f8f2-aaba-45c0-8add-d59b8fb7edda', '5/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(89, 'Acetaminophen/Phenylephrine (Oral Pill)', '1125315', 'Acetaminophen', 'cee0a134-3dc3-4d2f-a8e5-2916c3e3d7e0', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(90, 'Acetaminophen/Phenyltoloxamine (Oral Liquid)', '1125315', 'Acetaminophen', '738e7767-42de-4076-acf2-9152484c2007', '6/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(91, 'Acetaminophen/Phenyltoloxamine (Oral Pill)', '1125315', 'Acetaminophen', '8f1bb6e5-3de5-48b4-bf44-d4e881be5ab0', '5/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(92, 'Acetaminophen/Propoxyphene (Oral Pill)', '1125315', 'Acetaminophen', 'f2bc3c76-fd41-4a79-aa5d-3eb45133c1ee', '7/19/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(93, 'Acetaminophen/Propoxyphene XR (Oral Pill)', '1125315', 'Acetaminophen', '4cf33260-5a78-4207-b113-a9d6771811a3', '11/21/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(94, 'Acetaminophen/Pseudoephedrine (Oral Pill)', '1125315', 'Acetaminophen', '31e9e3b6-1680-41c1-bbe7-d6dd966b5886', '8/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(95, 'Acetaminophen/Pyrilamine (Oral Pill)', '1125315', 'Acetaminophen', 'b811e4f6-7cd0-403c-a44c-7c6c6787c15d', '5/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(96, 'Acetaminophen/traMADol (Oral Pill)', '1125315', 'Acetaminophen', 'ed529b7d-bda9-8333-9801-39a16ea61745', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(97, 'acetaZOLAMIDE (Injectable)', '929435', 'Acetazolamide', '60f656ff-97b1-4a89-99af-8100483c2bac', '12/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(98, 'acetaZOLAMIDE (Oral Pill)', '929435', 'Acetazolamide', 'ceb5cac3-bbfb-42fa-8b29-c0ef5ed0913c', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(99, 'Acetic Acid (Irrigation)', '929549', 'Acetic Acid', '41bc12af-fac5-4ac1-b907-dcb3e35a054c', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(100, 'Acetic Acid (Otic)', '929549', 'Acetic Acid', 'a8c12387-4b2b-49c2-b9c5-112ffb133950', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(101, 'Acetic Acid/Hydrocortisone (Otic)', '929549', 'Acetic Acid', 'ffd1edc1-2f40-4b0a-a53a-9fb53b8d3184', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(102, 'Acetic Acid/Oxyquinoline (Vaginal)', '929549', 'Acetic Acid', '77237c50-aeb5-44a0-a1e6-ce1551b49f75', '5/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(103, 'Acetylcholine (Injectable)', '19037624', 'Acetylcholine', 'e701ef07-9499-4b56-931f-f4eb3eedbe24', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(104, 'Acetylcysteine (Inhalant)', '1139042', 'Acetylcysteine', '75b48fab-cef6-465c-a1e0-d085b3988bc4', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(105, 'Acetylcysteine (Injectable)', '1139042', 'Acetylcysteine', '472f158a-5ab9-4308-8e49-1116e6ea3d39', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(106, 'ACID GONE (Oral Liquid)', '985247', 'Aluminum Hydroxide', '3d353a92-92f1-4304-8895-31d39dccd88c', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(107, 'ACIPHEX (Oral Pill)', '911735', 'rabeprazole', '001dd372-2692-4d6f-a71c-95e7056349a9', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(108, 'Acitretin (Oral Pill)', '929638', 'Acitretin', 'fb979cda-6a34-496e-b4bc-b17782b67821', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(109, 'ACLOVATE (Topical)', '905151', 'Alclometasone', '23536d6f-6f74-6820-4372-696d696e616c', '4/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(110, 'ACNEVIR (Soap)', '964407', 'Salicylic Acid', 'c82e9b1b-f9f3-417c-b547-95c9b4c19df8', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(111, 'Acrivastine/Pseudoephedrine (Oral Pill)', '1140123', 'acrivastine', 'd86c6a13-9e5f-43c2-92f5-c7ed7bfcedfc', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(112, 'ACT FLUORIDE RINSE (Mouthwash)', '19069022', 'Sodium Fluoride', 'e3494d8a-2aad-4212-89ce-18dddcbe059e', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(113, 'ACTHAR (Injectable)', '1541079', 'Corticotropin', '7b48ddec-e815-45f4-9ca0-5c0daaf56f30', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(114, 'ACTHIB (Injectable)', '529118', '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine"', '8143d01c-4911-40db-95b2-47f3ebea2a7d', '2/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(115, 'ACTICLATE (Oral Pill)', '1738521', 'Doxycycline', '115f1010-882f-11e3-baa7-0800200c9a66', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(116, 'ACTIDOSE (Oral Liquid)', '1701928', 'Activated Charcoal', '61801c3a-caf2-4bb7-a56a-dc2ee007eccb', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(117, 'ACTIGALL (Oral Pill)', '988095', 'Ursodeoxycholate', 'aeb6c8c8-4dec-4574-8f26-b6b701b04b25', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(118, 'ACTIMMUNE (Injectable)', '1380191', 'Interferon gamma-1b', '498b2231-65e8-4b27-947b-8d1f6f91289c', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(119, 'ACTIQ (Oral Lozenge)', '1154029', 'Fentanyl', '90b94524-f913-48b3-3771-7b2fcffd888a', '1/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(120, 'ACTIVASE (Injectable)', '1347450', 'Alteplase', 'c669f77c-fa48-478b-a14b-80b20a0139c2', '3/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(121, 'Activated Charcoal (Oral Liquid)', '1701928', 'Activated Charcoal', 'df1226cb-f2a8-4e91-b265-a08765f7683f', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(122, 'ACTIVON ARTHRITIS (Topical)', '19069019', 'Histamine', 'd123deae-d9ef-45ce-81ed-2d79384b1298', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(123, 'ACTONEL (Oral Pill)', '1516800', 'Risedronate', '4423d70a-b120-4653-bcf3-0c5ea8b97b0e', '12/10/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(124, 'ACTOPLUS MET (Oral Pill)', '1503297', 'Metformin', 'f5c534e8-656c-406d-b3dc-b562576ba4eb', '9/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(125, 'ACTOS (Oral Pill)', '1525215', 'pioglitazone', 'd2ddc491-88a9-4063-9150-443b4fa4330c', '4/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(126, 'ACULAR (Ophthalmic)', '1136980', 'Ketorolac', '5ba45168-ad5d-4ea9-bd85-fc2fa2b13dad', '6/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(127, 'Acyclovir (Buccal)', '1703687', 'Acyclovir', '00f7425a-6236-47ff-a087-f28f8cdb1aec', '8/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(128, 'Acyclovir (Injectable)', '1703687', 'Acyclovir', 'badf347b-eeee-4239-9c74-966f262925aa', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(129, 'Acyclovir (Oral Liquid)', '1703687', 'Acyclovir', '62bdcf22-51f3-4c81-9bd4-a2dc48bec580', '8/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(130, 'Acyclovir (Oral Pill)', '1703687', 'Acyclovir', 'ad26cb5f-123f-4438-ae8d-4c2a40966a38', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(131, 'Acyclovir (Topical)', '1703687', 'Acyclovir', 'ce3d5e8b-9401-40be-8ce7-4ea42113f4ab', '6/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(132, 'Acyclovir/Hydrocortisone (Topical)', '1703687', 'Acyclovir', '3b6ac164-0f1e-4f36-94a1-1fdb07d710f5', '12/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(133, 'ADAGEN (Injectable)', '581480', 'pegademase bovine', '9880b900-ea23-11dc-ad56-0002a5d5c51b', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(134, 'Adapalene (Topical)', '981774', 'adapalene', 'cabba2c1-cf07-46aa-a2c3-1b815517b16b', '2/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(135, 'Adapalene/Benzoyl Peroxide (Topical)', '981774', 'adapalene', '67002593-3bd3-4e91-a48f-9f7483e579a0', '2/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(136, 'ADDERALL (Oral Pill)', '714785', 'Amphetamine', 'f22635fe-821d-4cde-aa12-419f8b53db81', '8/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(137, 'Adefovir (Oral Pill)', '1729323', 'adefovir', 'e047f3b2-feae-4c5e-9d07-1fefb4c0ec25', '12/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(138, 'Adenovirus Type 4 Vaccine Live (Oral Pill)', '40237613', 'Adenovirus Type 4 Vaccine Live', 'c7d0b43c-7250-4809-8a05-fcde5862f076', '6/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(139, 'Adenovirus Type 7 Vaccine Live (Oral Pill)', '40237617', 'Adenovirus Type 7 Vaccine Live', 'c7d0b43c-7250-4809-8a05-fcde5862f076', '6/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(140, 'ADIPEX-P (Oral Pill)', '735340', 'Phentermine', 'b335e637-dca3-45c8-ad12-7eb03be2caaa', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(141, 'ADOXA (Oral Pill)', '1738521', 'Doxycycline', '0cecc43f-cc40-4c48-9e43-ae8d77af4e49', '5/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(142, 'ADRENALIN (Injectable)', '1343916', 'Epinephrine', '3b7a4364-668d-4eb2-a20c-04adc35aabe4', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(143, 'ADVATE (Injectable)', '1352213', 'Factor VIII', '80fa03d2-cd4c-4155-9b57-1396c4fa42da', '6/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(144, 'ADVIL (Chewable)', '1177480', 'Ibuprofen', '07d4c400-b182-92f7-7574-9e0e94c39cce', '1/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(145, 'ADVIL (Oral Liquid)', '1177480', 'Ibuprofen', '3079d932-afb2-94fe-f4ba-a3d8b5198fce', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(146, 'ADVIL (Oral Pill)', '1177480', 'Ibuprofen', 'e4a6219d-4ad4-0119-4cf8-7fc39b4b5979', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(147, 'ADVIL CHILDREN''S COLD (Oral Liquid)', '1177480', 'Ibuprofen', 'f63d1eb1-b51d-de3f-faea-6c4d4b0069c3', '7/1/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(148, 'ADVIL COLD AND SINUS (Oral Pill)', '1177480', 'Ibuprofen', 'fac22a47-f0de-4505-fd8a-768430cda0c1', '3/8/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(149, 'ADVIL CONGESTION RELIEF (Oral Pill)', '1177480', 'Ibuprofen', 'd0002708-271d-98a6-44ca-50906ea18e10', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(150, 'ADVIL PM (Oral Pill)', '1129625', 'Diphenhydramine', 'b876bb40-a38b-445a-bc8a-466b3bfe166d', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(151, 'Afatinib (Oral Pill)', '43533090', 'Afatinib', 'fd638e5e-8032-e7ca-0179-95e96ab5d387', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(152, 'AFREZZA (Inhalant)', '1596977', '"Regular Insulin, Human"', '76fb46f1-82db-40da-ba19-b3a7b0bd78ff', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(153, 'AFRIN (Nasal)', '925636', 'Oxymetazoline', '89c165ba-3ad5-49b5-a5bb-423dc8e15bad', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(154, 'AGGRASTAT (Injectable)', '19017067', 'tirofiban', 'fe0ced75-ccbf-4d2e-bd0d-b57e60ab913f', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(155, 'AGGRENOX (Oral Pill)', '1112807', 'Aspirin', 'e729d829-4bd0-4074-85ea-e0f9f5d7cdb5', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(156, 'AK-CON (Ophthalmic)', '914533', 'Naphazoline', '297f0888-729c-4ce6-8779-6b239abf3c93', '7/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(157, 'ALA-HIST AC (Oral Liquid)', '1201620', 'Codeine', 'ac3d3783-0889-4aab-9d2e-fab799a25f20', '3/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(158, 'ALA-HIST IR (Oral Pill)', '1188052', 'dexbrompheniramine', '0d203b5c-8b10-428b-8703-17be6b4ce6eb', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(159, 'ALA-QUIN (Topical)', '980867', 'Clioquinol', 'd2ae30c6-ad64-47ed-b371-778eaebeeddf', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(160, 'Alatrofloxacin (Injectable)', '19018154', 'alatrofloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', '7/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(161, 'ALAWAY (Ophthalmic)', '986117', 'Ketotifen', 'e4c310b5-1dba-4ddc-bc90-b27ebc765871', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(162, 'Albendazole (Chewable)', '1753745', 'Albendazole', 'e8941166-b77d-45aa-a6e8-04f1c0afd845', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(163, 'Albendazole (Oral Pill)', '1753745', 'Albendazole', 'e8941166-b77d-45aa-a6e8-04f1c0afd845', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(164, 'ALBENZA (Oral Pill)', '1753745', 'Albendazole', 'e8941166-b77d-45aa-a6e8-04f1c0afd845', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(165, 'ALBUKED (Injectable)', '1344143', '"Albumin Human, USP"', '0df480bb-be5e-0e7f-1331-fd4de81d33a6', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(166, '"Albumin Human, USP (Injectable)"', '1344143', '"Albumin Human, USP"', '2eeb6b69-2013-c0a2-5e2f-0365114d41b4', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(167, 'ALBUMINAR-20 (Injectable)', '1344143', '"Albumin Human, USP"', 'a901aa63-3347-4a12-8c74-e7cdd6edbddc', '8/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(168, 'ALBURX (Injectable)', '1344143', '"Albumin Human, USP"', 'ad74b7f5-b380-47ab-b19d-eef92c8eb7a4', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(169, 'Albuterol (Inhalant)', '1154343', 'Albuterol', 'f5c2fe10-c61f-4cbe-bc45-7ab14baa691c', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(170, 'Albuterol (Oral Liquid)', '1154343', 'Albuterol', '8d215fe3-1cf6-4bb3-b005-75f1a9d62235', '3/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(171, 'Albuterol (Oral Pill)', '1154343', 'Albuterol', '87b8cd3c-2849-4b50-b63e-9ea379165c07', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(172, 'Albuterol/Ipratropium (Inhalant)', '1154343', 'Albuterol', 'afcf38bf-b183-4569-b43f-25deb97f6693', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(173, 'Alcaftadine (Ophthalmic)', '40224159', 'alcaftadine', '17d37e8d-7825-424b-b6ca-0a85d0bf4694', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(174, 'ALCAINE (Ophthalmic)', '929504', 'proparacaine', '0c0fa0bf-977d-4539-b8dc-54c187c5b094', '8/5/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(175, 'Alclometasone (Topical)', '905151', 'Alclometasone', '0c2fb9a0-5586-4428-b705-5fa179a73e08', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(176, 'ALCORTIN (Topical)', '975125', 'Hydrocortisone', '995ae132-8e37-4fda-b353-ce79ab9d0bf4', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(177, 'ALCORTIN A (Topical)', '958994', 'Aloe Polysaccharide', '3f2abee4-2841-4725-8c11-aafb35ba6bee', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(178, 'ALDARA (Topical)', '981691', 'imiquimod', '0c3aed27-7b3f-442e-9f60-f2f5c672c85d', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(179, 'Alemtuzumab (Injectable)', '1312706', 'alemtuzumab', '4f5f7255-7abc-4328-bd1a-ceaf139ef3e0', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(180, 'Alendronate (Oral Liquid)', '1557272', 'Alendronate', '307a2b03-72c1-4765-acab-c3d3d60b2b78', '5/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(181, 'Alendronate (Oral Pill)', '1557272', 'Alendronate', '8751ca1c-1d4d-449a-8021-4106e6a08703', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(182, 'Alendronate/Cholecalciferol (Oral Pill)', '1557272', 'Alendronate', 'd4a71df1-7488-46a2-8ded-dd0db56de618', '12/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(183, 'ALEVAZOL (Topical)', '1000632', 'Clotrimazole', 'edd8da89-0b83-4de6-a166-7451d0084169', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(184, 'ALEVE (Oral Pill)', '1115008', 'Naproxen', 'f753a557-6a26-4b5b-bb1e-d9f2b621b846', '9/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(185, 'ALEVE PM (Oral Pill)', '1129625', 'Diphenhydramine', '82891458-ab0d-459a-8602-dcebd22c3010', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(186, 'ALFENTA (Injectable)', '19059528', 'Alfentanil', 'bb56df52-5abf-47dc-ab8d-902cfe19ccb2', '3/19/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(187, 'Alfentanil (Injectable)', '19059528', 'Alfentanil', 'bb56df52-5abf-47dc-ab8d-902cfe19ccb2', '8/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(188, 'Alglucosidase alfa (Injectable)', '19088328', 'alglucosidase alfa', 'd6bfbc45-2d34-439e-8aad-59ee2d53d4df', '1/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(189, 'ALICLEN (Shampoo)', '964407', 'Salicylic Acid', '729fba61-cc44-4110-85bd-4743161dc6c0', '2/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(190, 'ALINIA (Oral Liquid)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', '11/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(191, 'ALINIA (Oral Pill)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', '11/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(192, 'Aliskiren (Oral Pill)', '1317967', 'aliskiren', '4c222831-90af-4336-8bf6-5628ddf24326', '1/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(193, 'Aliskiren/Hydrochlorothiazide (Oral Pill)', '1317967', 'aliskiren', '40d12d97-152d-4fea-bc59-b69e5c29fde2', '11/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(194, 'Alitretinoin (Topical)', '941052', 'alitretinoin', '9cf04dad-e312-4b8f-a297-1e002d43e151', '11/14/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(195, 'ALKA-SELTZER (Effervescent)', '1112807', 'Aspirin', '73e85be6-1236-453b-b41c-37381a054773', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(196, 'ALKA-SELTZER FRUIT CHEWS (Chewable)', '19035704', 'Calcium Carbonate', 'e09648f2-4b46-4461-8554-9c4866650f90', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(197, 'ALKA-SELTZER HEARTBURN RELIEF (Effervescent)', '950435', 'Citric Acid', '672106ae-9e27-4173-b7b7-1f5494643673', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(198, 'ALKA-SELTZER PLUS ALLERGY (Oral Pill)', '1129625', 'Diphenhydramine', '3e8446cc-5cd9-44e6-8bcd-125a61cd5a41', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(199, 'ALKA-SELTZER PLUS MUCUS AND CONGESTION (Oral Pill)', '1119510', 'Dextromethorphan', '7b6c90cc-91a8-4fbc-832b-c9eb38a4ffc8', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(200, 'ALKERAN (Injectable)', '1301267', 'Melphalan', '9706e9a1-96ab-46b8-8846-32ee9d756b1d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(201, 'ALKERAN (Oral Pill)', '1301267', 'Melphalan', 'ff913271-0090-4832-a0fe-5154fe8f97b9', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(202, 'ALKUMS (Chewable)', '19035704', 'Calcium Carbonate', '7451cd9f-1723-46d0-837e-8dc48bfb6bba', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(203, 'Allantoin (Topical)', '966376', 'Allantoin', '5e767dda-b24e-49f4-8323-d429e70e2f6f', '7/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(204, 'Allantoin/DiphenhydrAMINE (Topical)', '966376', 'Allantoin', '5375b99c-ad91-409f-850d-9ea0003b32d3', '4/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(205, 'Allantoin/Lidocaine/Petrolatum (Transdermal)', '966376', 'Allantoin', '26911234-231b-4867-8fa6-3458a352a774', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(206, 'ALLEGRA (Oral Disintegrating)', '1153428', 'fexofenadine', '06115cea-5a44-409d-85ed-bb71743491c1', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(207, 'ALLEGRA (Oral Liquid)', '1153428', 'fexofenadine', '7c25b695-bbed-4ad1-aa47-de47091bc808', '5/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(208, 'ALLEGRA (Oral Pill)', '1153428', 'fexofenadine', 'b82d993a-16ff-4037-a182-7010de8e1cdd', '4/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(209, 'ALLEGRA COOLING RELIEF ANTI-ITCH (Topical)', '966376', 'Allantoin', '5375b99c-ad91-409f-850d-9ea0003b32d3', '4/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(210, 'ALLER-CHLOR (Oral Liquid)', '1192710', 'Chlorpheniramine', '3065bc51-c210-483b-876d-14a4d060bdec', '9/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(211, 'ALLER-CHLOR (Oral Pill)', '1192710', 'Chlorpheniramine', '04ca3806-72be-47d4-9fea-5b0dee087683', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(212, 'ALLER-TEC (Oral Liquid)', '1149196', 'Cetirizine', '9a571e0c-480a-454d-bd2d-33b6a6df6c32', '3/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(213, 'ALLERHIST-1 (Oral Pill)', '1197677', 'Clemastine', '02201bdb-58b9-4662-a2c0-5ff3efa4a1fc', '6/10/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(214, 'ALLFEN DM REFORMULATED JUL 2008 (Oral Pill)', '1119510', 'Dextromethorphan', '17e44510-a6d3-479c-9ebc-20302dcb04cd', '10/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(215, 'ALLI (Oral Pill)', '741530', 'orlistat', 'a2d3bd73-f3af-4ea5-a57c-66b0004cfe4f', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(216, 'Allopurinol (Injectable)', '1167322', 'Allopurinol', '10cc918f-aa44-415b-932d-2404695ac449', '7/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(217, 'Allopurinol (Oral Pill)', '1167322', 'Allopurinol', '4ed35cc1-2648-4659-baa6-b8f5879bcad9', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(218, 'Allscale pollen extract (Injectable)', '40171580', 'Allscale pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(219, 'ALMACONE (Chewable)', '985247', 'Aluminum Hydroxide', '5035a3c0-d7e0-4c77-8b26-7058b6f88029', '6/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(220, 'Almotriptan (Oral Pill)', '1103552', 'almotriptan', '9129bb95-7846-4ed7-bd03-0c17d8963447', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(221, 'ALOCRIL (Ophthalmic)', '1114620', 'Nedocromil', '2fe8d7ad-2158-4169-94b0-719ad20242b7', '1/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(222, 'Aloe Polysaccharide/Hydrocortisone/Iodoquinol (Topical)', '958994', 'Aloe Polysaccharide', '0a1a6d71-2295-4f83-a597-c477cafc56f7', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(223, 'Aloe Polysaccharide/Iodoquinol (Topical)', '958994', 'Aloe Polysaccharide', '179b8b28-c76b-4686-a04c-6b2f90056de9', '7/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(224, 'Aloe vera preparation (Topical)', '1315376', 'Aloe vera preparation', '20d1606d-fdb5-5ce8-e054-00144ff8d46c', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(225, 'ALOE VESTA ANTIFUNGAL (Topical)', '907879', 'Miconazole', 'c664e6c6-2a64-409c-9cb6-969d36fe6763', '12/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(226, 'ALOE VESTA DAILY MOISTURIZER (Topical)', '916662', 'dimethicone', '8d8d9ac8-00b3-4aa1-86b6-9902b4b5369c', '12/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(227, 'ALOE VESTA PROTECTIVE BARRIER (Topical)', '19033354', 'Petrolatum', '10341c96-b4ba-4892-ab68-2ac66f29da96', '4/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(228, 'Alogliptin (Oral Pill)', '43013884', 'alogliptin', 'a3768c7e-aa4c-44d3-bc53-43bb7346c0b0', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(229, 'Alogliptin/metFORMIN (Oral Pill)', '43013884', 'alogliptin', '83cb7914-a683-47bb-a713-f2bc6a596bd2', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(230, 'Alogliptin/Pioglitazone (Oral Pill)', '43013884', 'alogliptin', '4c619ed9-fe3e-4158-9938-80c6c3493d55', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(231, 'ALOMIDE (Ophthalmic)', '967496', 'Lodoxamide', '1b97597f-f2e7-4574-81a8-f35b769c957a', '8/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(232, 'ALOPRIM (Injectable)', '1167322', 'Allopurinol', '10cc918f-aa44-415b-932d-2404695ac449', '7/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(233, 'ALOQUIN (Topical)', '958994', 'Aloe Polysaccharide', '179b8b28-c76b-4686-a04c-6b2f90056de9', '7/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(234, 'Alosetron (Oral Pill)', '948555', 'alosetron', 'e91c4a69-2ad5-4e21-a279-9e1302b1a3d3', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(235, 'ALOXI (Oral Pill)', '911354', 'palonosetron', 'bd06f321-bb42-4748-92f3-d59626b540e0', '11/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(236, 'alpha-Hydroxyprogesterone (Injectable)', '19077143', 'Hydroxyprogesterone', 'a1998c1d-8337-4f00-8dcb-af3b54d39b77', '4/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(237, 'ALPHAQUIN HP (Topical)', '976778', 'hydroquinone', 'f40d8124-60e1-4dd4-a7d5-887db54195cb', '11/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(238, 'ALPRAZolam (Oral Disintegrating)', '781039', 'Alprazolam', 'd956367b-fd7d-46fc-9533-38a6e02b0b59', '3/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(239, 'ALPRAZolam (Oral Liquid)', '781039', 'Alprazolam', 'b945ac6f-796e-41ef-85e9-61007e4a4e9a', '11/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(240, 'ALPRAZolam (Oral Pill)', '781039', 'Alprazolam', 'd7a54ceb-2d80-4879-950f-cad362324086', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(241, 'Alprostadil (Injectable)', '1381504', 'Alprostadil', 'dea460fa-d05e-4191-8461-f185a711ad89', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(242, 'ALREX (Ophthalmic)', '967562', 'loteprednol etabonate', 'cf290d54-26a1-4d22-8cb8-852bdc7b5280', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(243, 'ALTABAX (Topical)', '991003', 'retapamulin', '9fae06b5-bbd5-400a-a7a6-3a4e238361f8', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(244, 'ALTACAINE (Ophthalmic)', '1036884', 'Tetracaine', 'fd57efaa-9129-47e0-8d47-191e0adb620e', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(245, 'Alteplase (Injectable)', '1347450', 'Alteplase', 'c669f77c-fa48-478b-a14b-80b20a0139c2', '3/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(246, 'Altretamine (Oral Pill)', '1368823', 'Altretamine', '90a5e59a-bee8-404a-ad69-fabddeaf27f9', '1/11/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(247, 'Aluminum acetate (Topical)', '930604', 'aluminum acetate', '99d84555-fd44-4115-99b3-54f67266b24c', '3/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(248, 'Aluminum chloride (Mucosal)', '957393', 'aluminum chloride', '6223c9d2-5944-4ca1-bf6f-24047a51a5f5', '6/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(249, 'Aluminum chloride (Topical)', '957393', 'aluminum chloride', 'd09ae142-6fd5-45e4-a9c4-44428885ccaf', '4/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(250, 'Aluminum Hydroxide (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'af9b799f-69c5-401c-9c43-a97b23384cc2', '8/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(251, 'Aluminum Hydroxide (Topical)', '985247', 'Aluminum Hydroxide', 'dcf0aa6c-5fe7-46e3-a418-c79ecaca074c', '11/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(252, 'Aluminum Hydroxide/Magnesium carbonate (Chewable)', '985247', 'Aluminum Hydroxide', '82402593-d5a8-4cdd-b166-8247c1ea058b', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(253, 'Aluminum Hydroxide/Magnesium carbonate (Oral Liquid)', '985247', 'Aluminum Hydroxide', '2d74e5bc-1f10-4fb6-9258-cd906e360013', '8/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(254, 'Aluminum Hydroxide/Magnesium Hydroxide (Oral Liquid)', '985247', 'Aluminum Hydroxide', '5bf7d414-2bea-4b8d-8dd4-a72d7d20f273', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(255, 'Aluminum Hydroxide/Magnesium Hydroxide/Simethicone (Chewable)', '985247', 'Aluminum Hydroxide', '5035a3c0-d7e0-4c77-8b26-7058b6f88029', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(256, 'Aluminum Hydroxide/Magnesium Hydroxide/Simethicone (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'd28d6220-2702-450b-8ec4-32956edb2131', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(257, 'Aluminum Hydroxide/Magnesium trisilicate (Chewable)', '985247', 'Aluminum Hydroxide', '7f367927-c366-465c-a059-e2cfb337d562', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(258, 'Aluminum sulfate/Calcium acetate (Topical)', '19030692', 'aluminum sulfate', '6ebed2f4-6a06-47a3-bde4-c47b32cd81cb', '7/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(259, 'ALUVEA (Topical)', '906914', 'Urea', 'e878410d-6c1c-4580-a9f4-4d6df2c93de3', '4/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(260, 'Alvimopan (Oral Pill)', '19059654', 'alvimopan', '77a67dc6-35d3-48ff-9d18-292d4d442f70', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(261, 'Amantadine (Oral Liquid)', '19087090', 'Amantadine', '2b6e5b07-b3ba-4717-9ccd-029c0b08cc7f', '1/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(262, 'Amantadine (Oral Pill)', '19087090', 'Amantadine', '63d9d4aa-5f92-45b0-98d0-d6ec38b727cb', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(263, 'AMBIEN (Oral Pill)', '744740', 'zolpidem', '38512baf-6bf6-4ffa-807c-02b0140c217c', '6/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(264, 'AMBIEN XR (Oral Pill)', '744740', 'zolpidem', '5a3ad211-f0a5-4238-8a03-1154fac34c86', '6/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(265, 'AMBISOME (Injectable)', '19056402', 'amphotericin B liposomal', 'f7be6506-4d20-401e-a0ff-02ad7c33158a', '11/8/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(266, 'Amcinonide (Topical)', '930747', 'amcinonide', '8aefa477-ac2c-41c8-a807-d24522aed8f0', '7/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(267, 'AMERICAINE HEMORRHOIDAL (Topical)', '917006', 'Benzocaine', 'd13c022f-2f91-40b4-bd66-0cfc0e147a5f', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(268, 'American elm pollen extract (Injectable)', '40161030', 'American elm pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(269, 'American elm pollen extract/Siberian elm pollen extract (Injectable)', '40161030', 'American elm pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(270, 'American house dust mite extract/European house dust mite extract (Injectable)', '40241606', 'American house dust mite extract', '3b3cb12c-65d3-46ab-9bac-82c569a76220', '9/17/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(271, 'AMICAR (Oral Liquid)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(272, 'AMICAR (Oral Pill)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(273, 'Amifostine (Injectable)', '1350040', 'Amifostine', '4cd49351-6dde-4c85-be33-9a20bde785db', '5/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(274, 'Amikacin (Injectable)', '1790868', 'Amikacin', 'a43188fa-f228-4acd-8a5d-9a3462034f4b', '1/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(275, 'aMILoride (Oral Pill)', '991382', 'Amiloride', '875f3f5a-ed45-4646-8537-21f054302d6f', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(276, 'aMILoride/Hydrochlorothiazide (Oral Pill)', '991382', 'Amiloride', '71f5c703-94d4-49b0-9c2d-374b9cbcab85', '11/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(277, 'Aminocaproic Acid (Oral Liquid)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(278, 'Aminocaproic Acid (Oral Pill)', '1369939', '6-Aminocaproic Acid', '2238c70f-b0b5-4755-896b-45b28777b217', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(279, 'Aminolevulinate (Topical)', '924120', 'Aminolevulinate', 'e45cc371-9ebc-4904-12bc-65cb4e2817ad', '1/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(280, 'Aminophylline (Injectable)', '1105775', 'Aminophylline', '754e8580-c710-4a60-8c4e-184be3cf1f41', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(281, 'Aminophylline (Oral Liquid)', '1105775', 'Aminophylline', 'a7c01224-b32b-40ef-935b-164893a93b22', '5/24/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(282, 'Aminosalicylic acid (Oral Granules)', '1726228', 'aminosalicylic acid', '6f2753dc-5f0c-4f49-9335-e519afb69ba6', '6/18/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(283, 'Amiodarone (Oral Pill)', '1309944', 'Amiodarone', '080d74e0-a5c0-49b6-83e4-4ee9e81c345f', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(284, 'AMITIZA (Oral Pill)', '987366', 'lubiprostone', 'ca79dddc-3911-472b-bda7-a23351be09af', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(285, 'Amitriptyline (Oral Pill)', '710062', 'Amitriptyline', 'c7f4d8a8-de3f-447f-8874-c77e6c6fa8f3', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(286, 'Amitriptyline/chlordiazePOXIDE (Oral Pill)', '710062', 'Amitriptyline', '22d710ec-302a-4756-95e3-8ee7957586e4', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(287, 'Amitriptyline/Perphenazine (Oral Pill)', '710062', 'Amitriptyline', 'ca5598e4-4226-45ab-abd1-e961707ae457', '12/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(288, 'amLODIPine (Oral Pill)', '1332418', 'Amlodipine', '82507337-cd5e-48f4-891b-dda1512bcb9f', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(289, 'amLODIPine/Atorvastatin (Oral Pill)', '1332418', 'Amlodipine', 'd2d28679-a01b-4e63-90e2-d5c23b393c94', '7/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(290, 'amLODIPine/Benazepril (Oral Pill)', '1332418', 'Amlodipine', '4da56a43-99aa-46df-aafc-ea193c46e442', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(291, 'amLODIPine/Hydrochlorothiazide/Valsartan (Oral Pill)', '1332418', 'Amlodipine', '680209f4-ad4c-4f97-8b6b-04f648bfb97c', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(292, 'amLODIPine/Olmesartan (Oral Pill)', '1332418', 'Amlodipine', 'd6f37813-40bb-4fe8-99e2-ad2339b8e04a', '1/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(293, 'amLODIPine/Telmisartan (Oral Pill)', '1332418', 'Amlodipine', 'ca60a4d5-ace7-4889-94ee-e2265fd63811', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(294, 'amLODIPine/Valsartan (Oral Pill)', '1332418', 'Amlodipine', 'e05dd72c-7475-422e-bf8e-73148929450e', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(295, 'Ammonia (Nasal)', '42800417', 'Ammonia', 'e25cfc22-29ba-473f-88c4-3c88e9f6863b', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(296, 'AMMONUL (Injectable)', '711452', 'Benzoate', 'e00521d3-84f1-4586-b4a8-9dc17ffffcb1', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(297, 'AMNESTEEM (Oral Pill)', '984232', 'Isotretinoin', 'b2cb63c9-f825-4991-9a2c-6260f1bbcc2c', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(298, 'Amobarbital (Injectable)', '712757', 'Amobarbital', 'a2523317-e071-4e04-9d9f-9053286e0ce2', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(299, 'Amoxapine (Oral Pill)', '713109', 'Amoxapine', '261006c8-3fd0-491b-b322-42beff6f9880', '5/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(300, 'Amoxicillin (Chewable)', '1713332', 'Amoxicillin', 'e91786c4-f928-4419-bd57-eca11498a6e6', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(301, 'Amoxicillin (Oral Liquid)', '1713332', 'Amoxicillin', '83d18b18-1447-443c-8b9c-34b44922ac6a', '9/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(302, 'Amoxicillin (Oral Pill)', '1713332', 'Amoxicillin', 'c2f6b402-27cd-48d4-95ae-6a3f530b0452', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(303, 'Amoxicillin XR (Oral Pill)', '1713332', 'Amoxicillin', '4057faf7-6d45-4d9e-90e9-72a546214d04', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(304, 'Amoxicillin/Clavulanate (Chewable)', '1713332', 'Amoxicillin', '7383df90-6980-4e3b-bcbe-0675c1d26565', '6/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(305, 'Amoxicillin/Clavulanate (Oral Liquid)', '1713332', 'Amoxicillin', 'd13d3912-49e2-4a08-a62e-239730b15cd9', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(306, 'Amoxicillin/Clavulanate (Oral Pill)', '1713332', 'Amoxicillin', 'e340b67b-332e-4e0c-aebf-ad4872dc5ed4', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(307, 'Amphetamine/Dextroamphetamine (Oral Pill)', '714785', 'Amphetamine', 'd63a086a-32e2-49e2-949e-64e4c922775a', '8/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(308, 'Amphotericin B liposomal (Injectable)', '19056402', 'amphotericin B liposomal', 'f7be6506-4d20-401e-a0ff-02ad7c33158a', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(309, 'Ampicillin (Injectable)', '1717327', 'Ampicillin', '8c8b7706-0a2d-4648-91c3-f75808827a0e', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(310, 'Ampicillin (Oral Liquid)', '1717327', 'Ampicillin', '1422ac93-067c-489b-9b95-17cd00303f4c', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(311, 'Ampicillin (Oral Pill)', '1717327', 'Ampicillin', 'be35570c-239f-4320-bbcd-58971810943f', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(312, 'Ampicillin/Sulbactam (Injectable)', '1717327', 'Ampicillin', '2709e9fc-2341-4382-af72-c2e3201bd77a', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(313, 'Amyl Nitrite (Nasal)', '1319051', 'Amyl Nitrite', 'c1b6e536-df5f-4f76-8e3c-6dc2f1e9975e', '3/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(314, 'Amylases/Endopeptidases/Lipase (Oral Pill)', '919204', 'Amylases', '45b9a46b-3294-4604-8aea-60624d663020', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(315, 'AMYTAL SODIUM (Injectable)', '712757', 'Amobarbital', 'a2523317-e071-4e04-9d9f-9053286e0ce2', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(316, 'ANA-LEX (Rectal)', '975125', 'Hydrocortisone', '5b472e48-8f7f-4985-8832-7fdceff76e37', '10/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(317, 'ANADROL-50 (Oral Pill)', '1525741', 'Oxymetholone', '4b9c6c34-9cb2-4d70-b70e-c7ce2fda4212', '10/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(318, 'Anagrelide (Oral Pill)', '1381253', 'anagrelide', '5e6cf1e5-94e4-4124-b7bf-e74647532246', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(319, 'ANALPRAM HC (Rectal)', '975125', 'Hydrocortisone', '27b3c751-d972-4cb9-9235-55e29953bf8d', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(320, 'ANALPRAM HC (Topical)', '975125', 'Hydrocortisone', '1469733e-1723-4b8c-be33-ed8dfafd65e2', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(321, 'ANASPAZ (Oral Disintegrating)', '923672', 'Hyoscyamine', 'e5fd8476-418a-4149-a688-205ea943b30c', '8/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(322, 'Anastrozole (Oral Pill)', '1348265', 'anastrozole', 'f881ec1a-d330-41d8-b633-143875c06ea4', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(323, 'ANBESOL (Mucosal)', '917006', 'Benzocaine', '924a4421-cd8b-8e5c-d7e6-d022fabb694f', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(324, 'ANBESOL (Oral Gel)', '917006', 'Benzocaine', '930ffc21-37d4-5b82-708a-e02d8251a86d', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(325, 'ANCOBON (Oral Pill)', '1755112', 'Flucytosine', 'aea0df00-a88c-4a16-abcf-750f3ff2004e', '11/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(326, 'ANDROXY (Oral Pill)', '1555887', 'Fluoxymesterone', '5328c194-5650-4d1f-9e28-8cea038cce81', '10/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(327, 'ANECREAM (Topical)', '989878', 'Lidocaine', '2d7706e2-7363-4047-96cb-85b718277e8c', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(328, 'ANGIOMAX (Injectable)', '19084670', 'bivalirudin', '799d3b00-809b-4abc-989c-05faccec49f8', '10/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(329, 'Annual bluegrass pollen extract (Injectable)', '40171977', 'annual bluegrass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(330, 'ANTABUSE (Oral Pill)', '735850', 'Disulfiram', 'f0ca0e1f-9641-48d5-9367-e5d1069e8680', '8/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(331, 'ANTARA (Oral Pill)', '1551803', 'Fenofibrate', 'acca05ab-185b-41a6-9ce2-783fc3c3cf96', '2/8/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(332, 'Anthralin (Shampoo)', '952538', 'Anthralin', '253fdee7-5060-4b49-ad26-257eb54cccfa', '10/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(333, 'Anthralin (Topical)', '952538', 'Anthralin', '45bad116-0351-442f-8e49-f11089a955fd', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(334, 'Antipyrine/Benzocaine (Otic)', '1036059', 'Antipyrine', '57b8ea08-c5b1-4d8b-bbff-ad83234e054d', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(335, 'Antipyrine/Benzocaine/Zinc Acetate (Otic)', '1036059', 'Antipyrine', 'cd77f88e-8714-45ca-a385-1ca75b8c94bb', '5/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(336, 'ANTIVERT (Oral Pill)', '994341', 'Meclizine', '305a537b-db97-4c5b-824a-0b97dd4c6dc0', '9/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(337, 'ANUCORT-HC (Rectal)', '975125', 'Hydrocortisone', 'f0f5a107-1236-8e1a-815d-dec8007c2bc9', '8/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(338, 'APEXICON (Topical)', '960988', 'Diflorasone', 'af4c413b-c228-48f0-9ad0-6434d1f921b9', '2/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(339, 'Apixaban (Oral Pill)', '43013024', 'apixaban', 'a454cd24-0c6d-46e8-b1e4-197388606175', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(340, 'Apraclonidine (Ophthalmic)', '919986', 'apraclonidine', 'de798d0d-a93c-40fb-95ea-10a4e6b287b7', '7/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(341, 'Aprepitant (Oral Pill)', '936748', 'aprepitant', 'ec44482e-6194-4829-a3f7-ebe8d48a41a5', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(342, 'Aprotinin (Injectable)', '19000729', 'Aprotinin', '8a5982c6-825f-4d05-90f5-1519a7291d15', '5/17/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(343, 'APTIOM (Oral Pill)', '44507780', 'eslicarbazepine', '3d0c9554-eaeb-4694-8089-00133fcadce3', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(344, 'AQUAFRESH (Toothpaste)', '19068715', 'monofluorophosphate', '22d07313-d22d-4d1c-9c7b-9f1486ac72a5', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(345, 'AQUAFRESH SENSITIVE (Toothpaste)', '927322', 'potassium nitrate', '76adbccb-0812-4407-a6fc-a57e6f144fbb', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(346, 'AQUAPHOR (Topical)', '19033354', 'Petrolatum', '0a17bf6f-6114-4647-a509-65999255c37b', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(347, 'ARBINOXA (Oral Liquid)', '1141018', 'carbinoxamine', '040d6792-21fe-44cc-a441-b9693178b3b5', '6/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(348, 'ARBINOXA (Oral Pill)', '1141018', 'carbinoxamine', '3f4f633c-5c5d-4d52-abb8-dfa2896b40d2', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(349, 'ARCALYST (Injectable)', '19023450', 'rilonacept', '282f4099-e848-432a-bac1-e041c192a5ba', '3/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(350, 'ARESTIN (Oral Powder)', '1708880', 'Minocycline', '8515df41-1936-4f3b-86ba-d2bb2a8441fb', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(351, 'Argatroban (Injectable)', '1322207', 'argatroban', '35db0a86-76af-4f5e-a5c6-0a664f53f6da', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(352, 'Arginine (Injectable)', '19006410', 'Arginine', '6accf33f-9841-4327-8923-93c42020ef12', '4/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(353, 'ARICEPT (Oral Pill)', '715997', 'donepezil', '98e451e1-e4d7-4439-a675-c5457ba20975', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(354, 'ARIMIDEX (Oral Pill)', '1348265', 'anastrozole', '4fee8d4c-bb21-4773-b622-87f9a4ff333a', '2/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(355, 'ARIPiprazole (Oral Liquid)', '757688', 'aripiprazole', 'e7292c4c-e332-4ed4-9086-f130d223b6ae', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(356, 'ARIPiprazole (Oral Pill)', '757688', 'aripiprazole', 'd8275c2d-f42d-4f32-aa9f-03a202c8e99f', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(357, 'Armodafinil (Oral Pill)', '19090984', 'armodafinil', 'e7bfb636-4b0a-440c-a4d3-d26393a14ac5', '5/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(358, 'ARMOUR THYROID (Oral Pill)', '1501309', 'thyroid (USP)', 'c815faa3-1d02-4680-96ef-5fad1645e99b', '8/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(359, 'AROMASIN (Oral Pill)', '1398399', 'exemestane', 'f0b31daa-0792-43d5-af08-8b6a864dc90a', '2/25/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(360, 'Arsenic trioxide (Injectable)', '1333379', 'arsenic trioxide', 'dec51fab-3784-deb7-752f-2d4d5692a20f', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(361, 'ARTHRITEN INFLAMMATORY PAIN (Oral Pill)', '1125315', 'Acetaminophen', 'c280ca89-4fb5-4050-90ee-d706a550a1ef', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(362, 'ARTHROTEC (Oral Pill)', '1124300', 'Diclofenac', 'bdf17a90-9444-4dba-aff6-df27e07f23d5', '6/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(363, 'ARTICADENT (Injectable)', '19080512', 'Articaine', '9ca8fb43-4f34-47c0-8b79-3b5bd1eaee00', '6/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(364, 'ARTISS (Topical)', '19036781', 'Calcium Chloride', '38a6412e-9557-45ad-a917-da15109657ec', '8/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(365, 'ASACOL (Oral Pill)', '968426', 'mesalamine', 'a97c3815-a0d5-4763-8c3f-9caa5dd9b01b', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(366, 'ASCOMP (Oral Pill)', '1112807', 'Aspirin', '243a6aea-0f48-42a9-a85e-ff247ab94336', '11/2/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(367, 'Ascorbic Acid (Injectable)', '19011773', 'Ascorbic Acid', 'af67a2f3-65b7-4a6e-9a51-315a280f976b', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(368, 'Ascorbic Acid/Cholecalciferol/Sodium Fluoride/Vitamin A (Oral Liquid)', '19011773', 'Ascorbic Acid', 'c64addb4-13cf-4857-8192-eb82903999b7', '9/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(369, 'Ascorbic Acid/Docusate/Folic Acid/Iron Carbonyl/Vitamin B 12 (Oral Pill)', '19011773', 'Ascorbic Acid', '2c9fd33d-4b38-42be-ad36-b1521ded47e1', '5/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(370, 'Ascorbic Acid/Ferrous fumarate/Folic Acid/Liver stomach concentrate/Vitamin B 12 (Oral Pill)', '19011773', 'Ascorbic Acid', 'd891ab47-4a05-4b5b-b372-7ddf91699c29', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(371, 'Ascorbic Acid/Ferrous fumarate/Folic Acid/Vitamin B 12 (Oral Pill)', '19011773', 'Ascorbic Acid', '898d31a9-5864-4bf4-94cb-cb50736c4fbb', '7/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(372, 'Ascorbic Acid/Ferrous sulfate/Folic Acid XR (Oral Pill)', '19011773', 'Ascorbic Acid', 'be17e959-b6d8-4cda-b064-2d28842d1e5b', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(373, 'Ascorbic Acid/Iron Carbonyl (Oral Pill)', '19011773', 'Ascorbic Acid', 'c81325e0-c2db-4412-89a9-236a6733f229', '10/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(374, 'ASCRIPTIN (Oral Pill)', '1112807', 'Aspirin', '4f676dc2-71de-431a-82ef-53c6bb9a6e01', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(375, 'Asenapine (Sublingual)', '40164052', 'Asenapine', '03c696e9-0e6b-4e5c-be0a-41416f8019be', '2/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(376, 'Aspergillus fumigatus extract (Injectable)', '40161048', 'Aspergillus fumigatus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(377, 'ASPIR-LOW (Oral Pill)', '1112807', 'Aspirin', '50c157d7-ea12-4a55-82ba-4190bd1fd4c5', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(378, 'Aspirin (Chewable)', '1112807', 'Aspirin', '6c7db6a8-f017-4a15-a4a8-4fba82ff658d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(379, 'Aspirin (Oral Disintegrating)', '1112807', 'Aspirin', '73859ea9-01a0-4c3d-97d4-17b9d3378899', '12/1/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(380, 'Aspirin (Oral Pill)', '1112807', 'Aspirin', '5e1484d3-5be1-40da-a3bf-fb19f7d27d45', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(381, 'Aspirin (Rectal)', '1112807', 'Aspirin', 'cce244aa-cd79-49c8-b68e-267f2bd0ef67', '9/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(382, 'Aspirin/Butalbital/Caffeine (Oral Pill)', '1112807', 'Aspirin', '5cd45280-2b8c-4ba8-bde9-db687d96847f', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(383, 'Aspirin/Butalbital/Caffeine/Codeine (Oral Pill)', '1112807', 'Aspirin', '243a6aea-0f48-42a9-a85e-ff247ab94336', '9/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(384, 'Aspirin/Caffeine (Oral Pill)', '1112807', 'Aspirin', 'f43685f0-d7f4-40b9-9de4-1ee272e7b085', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(385, 'Aspirin/Caffeine (Oral Powder)', '1112807', 'Aspirin', '0908e63c-9700-4647-856c-6b02b03f62a1', '1/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(386, 'Aspirin/Caffeine/Dihydrocodeine (Oral Pill)', '1112807', 'Aspirin', '3e863ce5-936c-4145-b14b-76670e21bdad', '5/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(387, 'Aspirin/Caffeine/Orphenadrine (Oral Pill)', '1112807', 'Aspirin', '8e41b33e-f71f-4a5e-b88f-cdfefb2bee20', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(388, 'Aspirin/Carisoprodol/Codeine (Oral Pill)', '1112807', 'Aspirin', 'dcae7a8a-9d9e-4f7f-954c-39e371f30f75', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(389, 'Aspirin/Chlorpheniramine/Dextromethorphan/Phenylephrine (Effervescent)', '1112807', 'Aspirin', '78537dcf-b157-4b67-a8b2-5cb144815166', '8/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(390, 'Aspirin/Chlorpheniramine/Phenylephrine (Effervescent)', '1112807', 'Aspirin', 'd443a030-d3d6-40e0-8fe0-329de6bc494f', '3/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(391, 'Aspirin/Citric Acid/Sodium Bicarbonate (Effervescent)', '1112807', 'Aspirin', '528da9d9-2a52-4c16-b7b2-61b3eee1abea', '6/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(392, 'Aspirin/Dextromethorphan/Doxylamine/Phenylephrine (Effervescent)', '1112807', 'Aspirin', '0c397cf2-5b2c-0eca-e054-00144ff8d46c', '1/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(393, 'Aspirin/DiphenhydrAMINE (Oral Pill)', '1112807', 'Aspirin', '0c79f57f-7fc9-39a5-e054-00144ff88e88', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(394, 'Aspirin/Dipyridamole (Oral Pill)', '1112807', 'Aspirin', 'f07c8535-f9fb-4697-9b63-1ab22210efc9', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(395, 'Aspirin/Meprobamate (Oral Pill)', '1112807', 'Aspirin', '941e1ec2-1f14-4153-a5ea-cf7669d5efd1', '1/25/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(396, 'Aspirin/oxyCODONE (Oral Pill)', '1112807', 'Aspirin', '23a60947-6058-4bf7-a3ee-ae396e55d939', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(397, 'ASTHMANEFRIN (Inhalant)', '1300153', 'Racepinephrine', '80480838-832c-4fdd-9f8e-f6f877ae3549', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(398, 'ASTRAMORPH (Injectable)', '1110410', 'Morphine', 'ca44184d-4d3b-4fda-c288-8c32527ea6ca', '9/4/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(399, 'ATACAND (Oral Pill)', '1351557', 'candesartan', 'd0c94743-cb17-4581-962e-7add11ae52e7', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(400, 'ATACAND HCT (Oral Pill)', '1351557', 'candesartan', '8e50e65d-b79b-46b4-a147-796cb19f1407', '2/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(401, 'ATARAX (Oral Liquid)', '777221', 'Hydroxyzine', '7eaf5043-5c73-47af-904b-8e1fae02af2e', '9/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(402, 'ATARAX (Oral Pill)', '777221', 'Hydroxyzine', '7eaf5043-5c73-47af-904b-8e1fae02af2e', '9/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(403, 'Atazanavir (Oral Pill)', '1727223', 'Atazanavir', '025876b6-f031-43ea-967a-b1d95b4685a6', '2/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(404, 'Atenolol (Injectable)', '1314002', 'Atenolol', '4f266bf9-05ba-45bd-f683-d156c06d9acc', '12/8/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(405, 'Atenolol (Oral Pill)', '1314002', 'Atenolol', '31f260a1-28e5-4693-95bf-36c5152d81df', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(406, 'Atenolol/Chlorthalidone (Oral Pill)', '1314002', 'Atenolol', '84e9de8f-27c3-4177-827a-6992495511ac', '5/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(407, 'ATGAM (Injectable)', '19061406', 'Lymphocyte immune globulin', 'bd545ba1-2366-4df1-bd67-10dfd7632b54', '4/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(408, 'ATIVAN (Injectable)', '791967', 'Lorazepam', '5fc0e987-61c9-40c4-b0d5-fcea07c8733e', '4/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(409, 'ATIVAN (Oral Pill)', '791967', 'Lorazepam', '89057c93-8155-4040-acec-64e877bd2b4c', '5/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(410, 'Atomoxetine (Oral Pill)', '742185', 'atomoxetine', '6a7584b5-524d-4726-86a2-1b08e422f60e', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(411, 'Atorvastatin (Oral Pill)', '1545958', 'atorvastatin', '8f71bea6-2fd0-44ae-afd9-727d365293a0', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(412, 'Atorvastatin/Ezetimibe (Oral Pill)', '1545958', 'atorvastatin', 'c387354c-607b-474d-b2e5-d35c789ce09b', '9/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(413, 'Atovaquone/Proguanil (Oral Pill)', '1781733', 'Atovaquone', 'c50d51ab-23c2-45cb-8f68-08f3454fb59b', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(414, 'Atracurium (Injectable)', '19014341', 'Atracurium', 'ca9e266c-8264-46f4-9df3-8d86a9d8437f', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(415, 'ATRALIN (Topical)', '903643', 'Tretinoin', 'b6b45969-a64a-4ce3-b3b6-157d2568a301', '1/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(416, 'ATRIDOX (Oral Gel)', '1738521', 'Doxycycline', '2c718fc7-2921-4d02-b273-784e513f8299', '11/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(417, 'ATRIPLA (Oral Pill)', '1738135', 'efavirenz', '5c6c7ba4-6d42-4e07-a127-b3cf72c866ad', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(418, 'Atropine (Injectable)', '914335', 'Atropine', 'baf1529e-737d-4cbc-9111-6e5d89525051', '9/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(419, 'Atropine (Ophthalmic)', '914335', 'Atropine', 'c0a56d60-0914-42b1-af59-c56afe93d18c', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(420, 'Atropine/Diphenoxylate (Oral Liquid)', '914335', 'Atropine', '88ed4ccf-9e35-4142-a5eb-d2b5edd36956', '10/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(421, 'Atropine/Diphenoxylate (Oral Pill)', '914335', 'Atropine', '6f76c6d2-7a30-43cd-8c2b-d6a12f8fc867', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(422, 'Atropine/Edrophonium (Injectable)', '914335', 'Atropine', '358336e5-3628-49ec-9134-6ec8c4ea733a', '12/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(423, 'Atropine/Hyoscyamine/PHENobarbital/Scopolamine (Oral Liquid)', '914335', 'Atropine', 'ddff0982-3502-4db6-ae73-c77a0250dea8', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(424, 'Atropine/Hyoscyamine/PHENobarbital/Scopolamine (Oral Pill)', '914335', 'Atropine', '1cc18146-d9be-4975-89ba-e99a85f71c76', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(425, 'Atropine/Hyoscyamine/PHENobarbital/Scopolamine XR (Oral Pill)', '914335', 'Atropine', '2064014b-6f8e-4232-88c2-d1870042abc7', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(426, 'AUGMENTIN (Oral Liquid)', '1713332', 'Amoxicillin', '55aefa88-46fc-2b73-0819-0c2f88274852', '3/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(427, 'AUGMENTIN (Oral Pill)', '1713332', 'Amoxicillin', '174cc098-fe49-4f1a-87e2-601c7573f0db', '3/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(428, 'Auranofin (Oral Pill)', '1114771', 'Auranofin', '05c34ddf-a0f7-4267-83f5-d02be3defc37', '12/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(429, 'AURO EAR (Otic)', '958999', 'carbamide peroxide', '924e613b-4952-4861-aac7-b8534ea0f305', '3/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(430, 'AURODEX (Otic)', '1036059', 'Antipyrine', 'fa67ddca-a12e-4798-b170-843cd8e7afeb', '12/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(431, 'Aurothiomalate (Injectable)', '1152134', 'Aurothiomalate', 'a29045b5-ba4f-407a-a0fd-3ef7e1ce64ee', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(432, 'Austrian pine pollen extract (Injectable)', '40171641', 'Austrian pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(433, 'AVAGE (Topical)', '947416', 'tazarotene', 'cd8a3be3-8f83-42cf-8752-6fd16da65150', '3/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(434, 'AVALIDE (Oral Pill)', '974166', 'Hydrochlorothiazide', '716ab835-584e-4bdc-ac7c-f685d88b4dad', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(435, 'AVANDAMET (Oral Pill)', '1503297', 'Metformin', 'e77a8504-b49f-4343-beaf-6e4c2c59ab45', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(436, 'AVANDIA (Oral Pill)', '1547504', 'rosiglitazone', 'ec682aec-e98f-41a1-9d21-eb7580ea3a8a', '6/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(437, 'AVAPRO (Oral Pill)', '1347384', 'irbesartan', 'c6f1e307-9107-431b-9a49-38049e429494', '4/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(438, 'AVAR (Soap)', '1036252', 'Sulfacetamide', '1947cbbf-da90-1520-e054-00144ff88e88', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(439, 'AVAR (Topical)', '1036252', 'Sulfacetamide', 'a57968d2-8012-46a8-9f77-e16ad4e86335', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(440, 'AVEENO ACTIVE NATURALS (Topical)', '986261', 'Colloidal oatmeal', 'b6de08f0-3cdb-4ac1-a958-c94c9f0e9a2a', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(441, 'AVEENO ACTIVE NATURALS NOURISH PLUS DANDRUFF CONTROL (Shampoo)', '944360', 'zinc pyrithione', '2481d840-45c3-46ac-8368-e4835d685669', '10/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(442, 'AVEENO ACTIVE NATURALS SKIN RELIEF (Topical)', '916662', 'dimethicone', 'bfbf4bf8-7dad-46d7-baeb-66a691652702', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(443, 'AVEENO ANTI-ITCH REFORMULATED JUN 2007 (Topical)', '902616', 'Calamine', 'a042095e-a139-4c5d-8ffb-39e37da2a93a', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(444, 'AVEENO BABY (Topical)', '916662', 'dimethicone', '1267319e-9e40-403f-a259-834b4423b567', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(445, 'AVEENO BABY DIAPER RASH CREAM (Topical)', '911064', 'Zinc Oxide', '1267319e-9e40-403f-a259-834b4423b567', '6/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(446, 'AVEENO HEALING OINTMENT (Topical)', '19033354', 'Petrolatum', '6d798970-c36e-4ee3-9ef8-d1d6245b5f6c', '7/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(447, 'AVELOX (Oral Pill)', '1716903', 'moxifloxacin', 'ebe94683-8fd8-4d99-aa13-46ce14dbcd62', '12/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(448, 'AVITA (Topical)', '903643', 'Tretinoin', '96c39a66-20b0-4c39-a665-c54a2531f096', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(449, 'AVODART (Oral Pill)', '989482', 'Dutasteride', '813507ec-1fc1-420f-ac5c-5c794b1059cd', '12/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(450, 'AVONEX (Injectable)', '722424', 'Interferon beta-1a', '0de49d64-3e18-494c-bf14-bc152247c798', '10/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(451, 'AXERT (Oral Pill)', '1103552', 'almotriptan', '886c13fa-4547-4411-88aa-8e23a7a698f6', '10/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(452, 'AXID AR (Oral Pill)', '950696', 'Nizatidine', '5c371d53-b93d-565e-bae6-1354c99d9035', '6/22/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(453, 'Axitinib (Oral Pill)', '42709322', 'axitinib', '84137882-e000-47da-bd5b-fa76ab3c76f9', '8/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(454, 'azaCITIDine (Injectable)', '1314865', 'Azacitidine', 'e437efe0-9c6a-4f87-b3b4-de90443b095f', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(455, 'AZASITE (Ophthalmic)', '1734104', 'Azithromycin', '14ae4c07-b042-452a-b069-2b41bc646e04', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(456, 'azaTHIOprine (Oral Pill)', '19014878', 'Azathioprine', 'e385894f-212b-4582-a63a-a0767fd97645', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(457, 'Azelastine (Ophthalmic)', '934075', 'azelastine', 'f2f72f86-c1c8-11df-851a-0800200c9a66', '4/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(458, 'Azelate (Topical)', '986790', 'Azelate', 'b086c825-401e-48e7-a6dd-2ad7423e86a0', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(459, 'Azelate/Cupric oxide/Folic Acid/Niacinamide/Pyridoxine/Zinc Oxide (Oral Pill)', '986790', 'Azelate', '1482d448-0f34-4aa6-b461-cb145404f6bc', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(460, 'AZELEX (Topical)', '986790', 'Azelate', '0d5269d5-6555-4d2c-bc3b-df862b014275', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(461, 'Azficel-T (Injectable)', '40241205', 'azficel-T', '4a41354f-c689-4216-82cc-bfc572f16374', '1/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(462, 'AZILECT (Oral Pill)', '715710', 'rasagiline', 'a40d0e73-3f9f-4b01-979d-402c9cdaeb60', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(463, 'Azilsartan (Oral Pill)', '40235485', 'azilsartan', '52b27c75-9f5a-4816-bafd-dace9d7d2063', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(464, 'Azilsartan/Chlorthalidone (Oral Pill)', '40235485', 'azilsartan', 'e60f795b-fce3-4361-aa03-f143451689d1', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(465, 'Azithromycin (Ophthalmic)', '1734104', 'Azithromycin', '14ae4c07-b042-452a-b069-2b41bc646e04', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(466, 'Azithromycin (Oral Liquid)', '1734104', 'Azithromycin', '035ce971-cf46-40c0-9b2f-ae52ab4e3468', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(467, 'Azithromycin (Oral Pill)', '1734104', 'Azithromycin', '7e7c2f49-449c-4ba2-98ae-0ff0c040614c', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(468, 'AZO URINARY PAIN RELIEF (Oral Pill)', '933724', 'Phenazopyridine', 'b2c6bb64-bb81-413c-8a6b-0420d2573ab6', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(469, 'AZO-GESIC (Oral Pill)', '933724', 'Phenazopyridine', 'b10d0f4e-4f52-4fec-9d49-289fb9c84cd8', '10/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(470, 'AZOPT (Ophthalmic)', '938044', 'brinzolamide', 'e9ea2ae7-1b98-4034-9fba-8ce2225e0145', '3/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(471, 'AZOR (Oral Pill)', '1332418', 'Amlodipine', 'd6f37813-40bb-4fe8-99e2-ad2339b8e04a', '1/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(472, 'BABY ANTI MONKEY BUTT DIAPER RASH CREAM (Topical)', '902616', 'Calamine', 'd95eeedb-393e-0859-19ef-72bb421e3046', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(473, 'BABY ANTI MONKEY BUTT DIAPER RASH POWDER (Topical)', '902616', 'Calamine', 'd9d6ea6f-0793-3c9d-f92c-a9e2f0bee20b', '7/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(474, 'BABYBIG (Injectable)', '19072699', 'Botulism Immune Globulin IV Human', '9ec59262-35c1-4d8e-8451-a7cfbacb0675', '11/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(475, 'Bacitracin (Injectable)', '915175', 'Bacitracin', 'a3d2f60c-d3e8-4ce8-92eb-d3044783e5dd', '11/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(476, 'Bacitracin (Ophthalmic)', '915175', 'Bacitracin', 'b2983ec7-5f63-4909-891b-92214d3a637f', '6/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(477, 'Bacitracin (Topical)', '915175', 'Bacitracin', 'c4b90624-4713-401f-90c8-77df632409f9', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(478, 'Bacitracin/Dimethicone/Zinc Oxide (Topical)', '915175', 'Bacitracin', 'f439fb97-0722-42ee-bc90-67daf0497aa8', '11/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(479, 'Bacitracin/Hydrocortisone/Neomycin/Polymyxin B (Ophthalmic)', '915175', 'Bacitracin', 'ce7ded34-66ab-4b6d-a9d7-fcf0c8d86eaa', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(480, 'Bacitracin/Hydrocortisone/Neomycin/Polymyxin B (Topical)', '915175', 'Bacitracin', '097a7a8d-04d4-4736-c8b7-0796117457bf', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(481, 'Bacitracin/Lidocaine/Neomycin/Polymyxin B (Topical)', '915175', 'Bacitracin', 'd7d8b557-93a1-436b-a67a-5333e749c9c9', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(482, 'Bacitracin/Neomycin/Polymyxin B (Ophthalmic)', '915175', 'Bacitracin', 'e58d6e45-36bc-4ffc-8860-3befe2ed2396', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(483, 'Bacitracin/Neomycin/Polymyxin B (Topical)', '915175', 'Bacitracin', '58ff1e78-5690-48ac-93ee-774604bbf73d', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(484, 'Bacitracin/Neomycin/Polymyxin B/Pramoxine (Topical)', '915175', 'Bacitracin', 'fe7c7e73-168f-4af3-ad50-6318b91f4d9c', '6/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(485, 'Bacitracin/Polymyxin B (Ophthalmic)', '915175', 'Bacitracin', 'c6c69fa4-d7be-4c09-b7fa-53c40fad78a7', '10/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(486, 'Bacitracin/Polymyxin B (Topical)', '915175', 'Bacitracin', 'dd7aceb6-0666-4059-b2a9-8e7fe5f3f0ac', '11/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(487, 'BACKAID IPF (Oral Pill)', '1125315', 'Acetaminophen', 'b1dc7b4d-ef8d-4d00-90f1-107eb34e4fc5', '10/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(488, 'Baclofen (Oral Disintegrating)', '715233', 'Baclofen', 'f133fe04-1550-4fa4-9dc4-652c27936bf2', '9/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(489, 'Baclofen (Oral Pill)', '715233', 'Baclofen', '07730b69-3b5b-492d-b10e-5826013f8997', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(490, 'BACTINE (Topical)', '916460', 'Benzalkonium', '60476e61-e2b8-47bd-b391-533ec510658e', '7/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(491, 'BACTRIM (Oral Pill)', '1836430', 'Sulfamethoxazole', 'f59d0c04-9c66-4d53-a0e1-cb55570deb62', '1/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(492, 'BACTROBAN (Nasal)', '951511', 'Mupirocin', 'c142ab8f-fa5c-471a-a49a-058ab8ec023b', '3/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(493, 'BACTROBAN (Topical)', '951511', 'Mupirocin', '76bdab9d-9153-4db6-9b9a-ff376374a8ea', '12/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(494, 'BAL IN OIL (Injectable)', '1728903', 'Dimercaprol', '2ed1fc15-ca74-400e-bfdb-64483b2c590b', '5/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(495, 'BALMEX (Topical)', '911064', 'Zinc Oxide', 'b877ec82-e5bb-cd18-a295-bbd4fc29fd17', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(496, 'BALMEX OINTMENT (Topical)', '19033354', 'Petrolatum', 'a9e48059-1319-4cd4-9be5-5376eaf8bbf3', '3/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(497, 'Balsalazide (Oral Pill)', '934262', 'balsalazide', '509b83b6-cde6-393b-8560-557793b6a529', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(498, 'BANALG (Topical)', '901656', 'Menthol', '5b4c09e6-4228-47d5-b8f2-5959f8aede38', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(499, 'BANOPHEN (Oral Liquid)', '1129625', 'Diphenhydramine', '9f40ea06-bd0b-4db8-91d6-774f65a7f345', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(500, 'BANOPHEN (Oral Pill)', '1129625', 'Diphenhydramine', 'cb498f07-75fe-47d5-9620-f87405d168af', '4/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(501, 'BANOPHEN CREAM (Topical)', '1129625', 'Diphenhydramine', 'e79cf602-dc91-4fb9-844d-efed58e728d9', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(502, 'Barley smut extract (Injectable)', '40175802', 'barley smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(503, 'BAYCADRON (Oral Liquid)', '1518254', 'Dexamethasone', 'e59d3b87-af2e-4262-b89d-e95aa79f11b7', '7/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(504, 'BAYER ASPIRIN (Chewable)', '1112807', 'Aspirin', '070d5713-e018-2913-e054-00144ff8d46c', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(505, 'BAYER ASPIRIN (Oral Pill)', '1112807', 'Aspirin', '751e8cde-0dd8-483f-8e81-61f86203db1c', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(506, 'BAYER ASPIRIN PM REFORMULATED NOV 2011 (Oral Pill)', '1112807', 'Aspirin', '0c79f57f-7fc9-39a5-e054-00144ff88e88', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(507, 'BAZA CLEANSE AND PROTECT (Topical)', '916662', 'dimethicone', 'ca5fa4ae-c18d-4457-b520-4a9318ea821f', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(508, 'BAZA CLEAR (Topical)', '19033354', 'Petrolatum', '69d9f456-1a35-4146-8366-c0285648a172', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(509, 'BAZA-PROTECT (Topical)', '916662', 'dimethicone', 'ed63df26-3879-46df-8e09-10be569b25be', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(510, '"Bazedoxifene/Estrogens, Conjugated (USP) (Oral Pill)"', '44506794', 'bazedoxifene', 'e1b75458-2e5b-46b9-92c6-fa6daba3770f', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(511, 'BC ORIGINAL FORMULA (Oral Powder)', '1112807', 'Aspirin', '0908e63c-9700-4647-856c-6b02b03f62a1', '1/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(512, '"BCG, Live, Connaught Strain (Topical)"', '19023835', '"BCG, Live, Connaught Strain"', '8e456333-5a25-4484-84bf-53ece67c000a', '11/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(513, 'BEBULIN (Injectable)', '1351935', 'factor IX', 'b375a2fb-7bd4-486c-87f6-72237713d528', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(514, 'Becaplermin (Topical)', '912476', 'Becaplermin', 'fd2c7d21-7b07-4ab3-8983-816ab3223771', '3/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(515, 'BEDSIDE-CARE (Topical)', '916802', 'Benzethonium', '3e8a37f0-3b44-4bba-8987-2717b54419f1', '12/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(516, 'Beech pollen extract (Injectable)', '40161542', 'beech pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(517, 'Belatacept (Injectable)', '40239665', 'belatacept', 'c16ac648-d5d2-9f7d-8637-e2328572754e', '10/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(518, 'BELEODAQ (Injectable)', '45776670', 'belinostat', '84b2e16e-f0d1-4757-8da8-79dfa83aab79', '7/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(519, 'Belinostat (Injectable)', '45776670', 'belinostat', '84b2e16e-f0d1-4757-8da8-79dfa83aab79', '7/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(520, 'Belladonna Alkaloids/Opium (Rectal)', '1116109', 'Belladonna Alkaloids', '8301e76b-134a-43d2-a7dc-c600ccf2695c', '9/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(521, 'BELSOMRA (Oral Pill)', '45775760', 'Suvorexant', 'e5b72731-1acb-45b7-9c13-290ad12d3951', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(522, 'BENADRYL (Oral Liquid)', '1129625', 'Diphenhydramine', 'fc9181b9-c92d-493e-8d7c-4a4239c6c092', '10/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(523, 'BENADRYL (Oral Pill)', '1129625', 'Diphenhydramine', '53de0882-12ad-4c5c-bdb8-85d40d1da5e6', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(524, 'BENADRYL (Topical)', '1129625', 'Diphenhydramine', 'f230079e-41f3-40f2-93f0-4052e5d84095', '9/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(525, 'BENADRYL CHILDREN''S ANTI-ITCH (Topical)', '938205', 'Camphor', '36edeed8-894b-4f49-bb9a-9b43181b4906', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(526, 'BENADRYL ITCH STOPPING (Topical)', '1129625', 'Diphenhydramine', '3ef170f8-f60c-48ea-b21f-742e84484a4c', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(527, 'BENADRYL-D ALLERGY AND SINUS (Oral Liquid)', '1129625', 'Diphenhydramine', 'b8b75904-3806-4258-89c1-d6ff486ed41c', '9/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(528, 'Benazepril (Oral Pill)', '1335471', 'benazepril', '47394912-aca4-4b62-8c7e-791eae1d69be', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(529, 'Benazepril/Hydrochlorothiazide (Oral Pill)', '1335471', 'benazepril', '1ea9c4d0-a5ce-5961-e054-00144ff88e88', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(530, 'Bendroflumethiazide/Nadolol (Oral Pill)', '1316354', 'Bendroflumethiazide', 'd2d226ea-1624-47ee-82bf-e9660b75029f', '11/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(531, 'BENGAY (Topical)', '901656', 'Menthol', 'bc34dc2a-fb50-4a58-8cdb-7d56426c6b37', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(532, 'BENGAY (Transdermal)', '901656', 'Menthol', 'f6ae09c0-5915-468c-8aec-16857c47df6b', '9/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(533, 'BENGAY ORIGINAL (Topical)', '901656', 'Menthol', '8aede1af-1547-47c7-9317-528be697677f', '4/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(534, 'BENICAR (Oral Pill)', '40226742', 'olmesartan', 'b2d10788-e0e4-4ee8-8c47-d7f7ed44e3d9', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(535, 'BENICAR HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', '9b91af80-14ff-4ece-8647-4265b7fa6240', '12/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(536, 'BENOXYL (Soap)', '918172', 'Benzoyl Peroxide', '06b7b534-9749-4f3d-ba4f-0787eb2e52e3', '8/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(537, 'BENSAL (Topical)', '964407', 'Salicylic Acid', '4b8ccee9-0f26-416d-a6e5-1261408df899', '4/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(538, 'Bentoquatam (Topical)', '915518', 'bentoquatam', 'd3b3f56d-d1d5-4435-8ac7-a2118f108a9b', '5/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(539, 'BENZ-O-STHETIC (Mucosal)', '917006', 'Benzocaine', '92f1bddd-71af-427a-bce6-727adca90999', '6/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(540, 'BENZACLIN (Topical)', '918172', 'Benzoyl Peroxide', '4c6b2aca-d940-42af-a068-418f015d277a', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(541, 'Benzalkonium (Topical)', '916460', 'Benzalkonium', '20cafd74-691f-45a0-b3e8-ca15a0f735ce', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(542, 'Benzalkonium/Benzocaine (Topical)', '916460', 'Benzalkonium', '2f685c77-86d2-4558-80e0-550846598e76', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(543, 'Benzalkonium/Benzocaine (Vaginal)', '916460', 'Benzalkonium', '4ff50f17-7679-4a7a-994a-bda6cd23cb90', '1/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(544, 'Benzalkonium/Benzocaine/Zinc chloride (Oral Gel)', '916460', 'Benzalkonium', '77f84651-7706-4042-acdd-dc68ba97771d', '1/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(545, 'Benzalkonium/Camphor (Topical)', '916460', 'Benzalkonium', '70afbecc-f39b-48d7-9839-907a786a8c29', '7/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(546, 'Benzalkonium/Lidocaine (Topical)', '916460', 'Benzalkonium', '0af5dc2e-09ce-4bc9-911f-ec2fd8f1e426', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(547, 'Benzalkonium/Pramoxine (Topical)', '916460', 'Benzalkonium', 'a092b2ff-18fb-481a-a17d-984a91cbaec7', '7/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(548, 'BENZAMYCIN (Topical)', '918172', 'Benzoyl Peroxide', '67823063-91a6-4867-a855-7ce0a4a09bd6', '4/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(549, 'BENZEDREX (Nasal)', '954036', 'propylhexedrine', '03a8ef3c-a808-6208-e054-00144ff8d46c', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(550, 'BENZEFOAM (Topical)', '918172', 'Benzoyl Peroxide', '11c49c9d-0164-4e91-881f-34e02987a45d', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(551, 'BENZEPRO (Topical)', '918172', 'Benzoyl Peroxide', '890ed265-1217-4fa6-b7f1-a7246dbe137e', '8/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(552, 'Benzethonium (Soap)', '916802', 'Benzethonium', 'd18f0132-fef2-4de5-a4ff-c6e0df9d7f11', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(553, 'Benzethonium (Topical)', '916802', 'Benzethonium', 'a2b08b63-decd-4f2b-98ab-8703d9a55f93', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(554, 'Benzethonium/Benzocaine (Topical)', '916802', 'Benzethonium', '4b965cd3-bfe4-4aad-a52c-b747696baa1c', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(555, 'Benzethonium/Benzocaine/Menthol (Topical)', '916802', 'Benzethonium', 'b780da38-8568-43e1-ab4a-5b69e4f55b19', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(556, 'Benzethonium/Dyclonine (Topical)', '916802', 'Benzethonium', '37a75879-accb-4a6a-b8dd-558b94450fc4', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(557, 'Benzethonium/Lidocaine (Topical)', '916802', 'Benzethonium', '09b1372c-a5a3-4d89-9b8e-4523f6a0341f', '6/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(558, 'BENZO-JEL (Oral Gel)', '917006', 'Benzocaine', 'e735d183-609e-53d6-6640-293356e0a8f0', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(559, 'Benzoate/Hyoscyamine/Methenamine/Methylene blue/Phenyl salicylate (Oral Pill)', '711452', 'Benzoate', '694d83e1-7ec0-42af-b906-bdf9ac521cd8', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(560, 'Benzoate/Phenylacetate (Injectable)', '711452', 'Benzoate', 'd564f2b1-9fc7-4201-8066-d745ac3a671f', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(561, 'Benzocaine (Mucosal)', '917006', 'Benzocaine', '4fa350ce-720e-4949-8376-e90f0a0f2d66', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(562, 'Benzocaine (Oral Cream)', '917006', 'Benzocaine', '628eda31-8142-4cf3-b24b-f19b81068c82', '1/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(563, 'Benzocaine (Oral Disintegrating)', '917006', 'Benzocaine', 'a0e52795-e4ec-4205-8862-a51a2b2a7ae1', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(564, 'Benzocaine (Oral Gel)', '917006', 'Benzocaine', '982e6c46-37ab-419b-acea-521b3c356a7c', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(565, 'Benzocaine (Oral Lozenge)', '917006', 'Benzocaine', '7c161a17-cf82-4de3-8348-888c040df0f9', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(566, 'Benzocaine (Oral Ointment)', '917006', 'Benzocaine', '58739ad0-8c8e-48cf-bec2-4336a67207ca', '4/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(567, 'Benzocaine (Oral Paste)', '917006', 'Benzocaine', '387f52e1-157a-4b9e-8f98-9001c6880786', '8/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(568, 'Benzocaine (Topical)', '917006', 'Benzocaine', '48aeca34-2cd5-41aa-98ba-606bda1f9ce3', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(569, 'Benzocaine/Butamben/Tetracaine (Topical)', '917006', 'Benzocaine', 'af1773c5-5d5b-4278-b551-30ad2df6d5b5', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(570, 'Benzocaine/Cetylpyridinium/Menthol (Mucosal)', '917006', 'Benzocaine', 'ed70911b-9da8-4e1d-97fa-66b18d28516a', '4/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(571, 'Benzocaine/Cetylpyridinium/Menthol/Zinc chloride (Mucosal)', '917006', 'Benzocaine', '31690548-0a55-4d72-8733-591ba3a9be92', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(572, 'Benzocaine/Chloroxylenol (Topical)', '917006', 'Benzocaine', 'e2eca808-e97b-43e0-aa51-7025cc61c7a8', '3/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(573, 'Benzocaine/Compound benzoin tincture (USP) (Mucosal)', '917006', 'Benzocaine', 'fe1e32e8-ec36-4d1f-b3e4-913dbc852138', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(574, 'Benzocaine/Dextromethorphan (Oral Lozenge)', '917006', 'Benzocaine', 'c0cc32db-90f0-4106-8538-89821083ece1', '11/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(575, 'Benzocaine/Dextromethorphan/Menthol (Oral Lozenge)', '917006', 'Benzocaine', '34e4234c-ed61-4795-99fe-d281cdb0af88', '11/16/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(576, 'Benzocaine/Docusate (Rectal)', '917006', 'Benzocaine', '061acc74-eb3e-6887-e054-00144ff8d46c', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(577, 'Benzocaine/Glycerin (Mucosal)', '917006', 'Benzocaine', '45561e94-2b54-4c19-be3e-b1949e1a5bbc', '7/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(578, 'Benzocaine/Isopropyl Alcohol (Topical)', '917006', 'Benzocaine', '07f10ebb-103d-475f-b89e-bf7ff9f59568', '9/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(579, 'Benzocaine/Menthol (Oral Gel)', '917006', 'Benzocaine', 'c7936cbc-b132-4025-8439-8227b928c2fd', '7/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(580, 'Benzocaine/Menthol (Oral Lozenge)', '917006', 'Benzocaine', '21fd7f46-3e46-4344-895f-9e6a67f006aa', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(581, 'Benzocaine/Menthol (Topical)', '917006', 'Benzocaine', '0648c46c-a3db-4b82-971b-50a46098ac7e', '5/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(582, 'Benzocaine/Resorcinol (Vaginal)', '917006', 'Benzocaine', '0286fcff-4172-4fb5-ba5d-139fc8efcf37', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(583, 'Benzocaine/Tetracaine (Oral Gel)', '917006', 'Benzocaine', '324146a5-e473-4a54-8543-38ee567e815e', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(584, 'Benzocaine/Triclosan (Topical)', '917006', 'Benzocaine', 'cd738a0a-8058-465c-bdbd-76dc70aec005', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(585, 'Benzocaine/Zinc chloride (Mucosal)', '917006', 'Benzocaine', '3bb651d9-d1c4-4c25-bcfc-cd13e2f0d3bf', '3/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(586, 'Benzoin (Topical)', '19011438', 'Benzoin', 'b33b5896-673b-498c-8a58-76ece8552f7a', '9/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(587, 'Benzonatate (Oral Pill)', '1136601', 'benzonatate', '057214bd-9892-4e4f-bd93-4c123c30c8ba', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(588, 'Benzoyl Peroxide (Soap)', '918172', 'Benzoyl Peroxide', '3d8a20f7-0c4c-4c89-bddf-200194612b7a', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(589, 'Benzoyl Peroxide (Topical)', '918172', 'Benzoyl Peroxide', '5a3f8bbf-22be-427b-83a9-f5573232ed5f', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(590, 'Benzoyl Peroxide/Clindamycin (Topical)', '918172', 'Benzoyl Peroxide', '4c6b2aca-d940-42af-a068-418f015d277a', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(591, 'Benzoyl Peroxide/Erythromycin (Topical)', '918172', 'Benzoyl Peroxide', '80397ecd-6069-43dc-b8ae-8703f4b66308', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(592, 'Benzoyl Peroxide/Hydrocortisone (Topical)', '918172', 'Benzoyl Peroxide', '1f0edbd9-103e-4a49-b7a8-6552ef172c13', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(593, 'Benzphetamine (Oral Pill)', '719128', 'Benzphetamine', '76c76f8e-d8e8-429a-ba67-c270e5ac6c83', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(594, 'Benztropine (Injectable)', '719174', 'Benztropine', 'd61eae0d-a29d-45ef-bd41-07123e0c21f9', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(595, 'Benztropine (Oral Pill)', '719174', 'Benztropine', '9b93035b-34d6-4084-ba73-5dea72f9d124', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(596, 'Benzyl Alcohol (Oral Gel)', '919681', 'Benzyl Alcohol', '0910d0d8-dc69-43bb-967d-08cab8ae917b', '2/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(597, 'Benzyl Alcohol (Topical)', '919681', 'Benzyl Alcohol', 'aeba2488-1ac3-4c02-833c-78a36859f029', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(598, 'Benzyl Alcohol/Calamine/DiphenhydrAMINE (Topical)', '919681', 'Benzyl Alcohol', '6f68cbbb-6269-4bb3-8cc9-50b146703b42', '10/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(599, 'Benzyl Alcohol/Camphor/Menthol (Topical)', '919681', 'Benzyl Alcohol', '4792a667-2378-4b3d-968d-9efb1866792f', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(600, 'Benzyl Alcohol/Pramoxine (Topical)', '919681', 'Benzyl Alcohol', '03f85dbb-a13a-3126-e054-00144ff8d46c', '9/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(601, 'Benzyl benzoate (Topical)', '19036946', 'benzyl benzoate', 'ba27041b-0253-43a3-a1d6-4fb0ddee5ecb', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(602, 'Bepotastine (Ophthalmic)', '40166571', 'bepotastine', '68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(603, 'BEPREVE (Ophthalmic)', '40166571', 'bepotastine', '68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(604, 'Bermuda grass pollen extract (Injectable)', '40161082', 'Bermuda grass pollen extract', '1974e1c0-c5d2-2630-e054-00144ff88e88', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(605, 'Bermuda grass smut extract (Injectable)', '40227684', 'Bermuda grass smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(606, 'Bermuda grass smut extract/Johnson grass smut extract (Injectable)', '40227684', 'Bermuda grass smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(607, 'BERRI-FREEZ (Topical)', '901656', 'Menthol', '3e7d643b-33a3-416b-b289-9e4b58c797e1', '12/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(608, 'Besifloxacin (Ophthalmic)', '40161662', 'besifloxacin', 'a3e6d688-7e5e-4ca3-b27e-79756c322a32', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(609, 'BESIVANCE (Ophthalmic)', '40161662', 'besifloxacin', 'a3e6d688-7e5e-4ca3-b27e-79756c322a32', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(610, 'BETADINE (Ophthalmic)', '1750087', 'Povidone-Iodine', 'b026de1b-9949-4557-ac49-c7b0038c24cd', '7/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(611, 'BETADINE (Topical)', '1750087', 'Povidone-Iodine', '2f07daa4-86ee-4a2d-ae3a-c3a7b574ed10', '9/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(612, 'Betaine (Oral Liquid)', '1520218', 'Betaine', '05964dae-8b84-467c-af97-c82706a3cad2', '5/17/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(613, 'Betamethasone (Injectable)', '920458', 'Betamethasone', '9a6a3871-4e02-47f9-a20e-a256b3f3c498', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(614, 'Betamethasone (Topical)', '920458', 'Betamethasone', 'ab332791-461b-4396-9b46-7f00bc04c087', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(615, 'Betamethasone/Calcipotriene (Topical)', '920458', 'Betamethasone', '6c2ed55a-c7f2-42be-a194-bd498707ce3f', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(616, 'Betamethasone/Clotrimazole (Topical)', '920458', 'Betamethasone', '1c18e5fc-bf82-47bc-bfd9-8d3e503569ba', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(617, 'Betamethasone/Clotrimazole/Gentamicin Sulfate (USP) (Otic)', '920458', 'Betamethasone', 'ff110754-cbc9-413d-a920-8bb3c455f8ae', '10/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(618, 'Betamethasone/Gentamicin Sulfate (USP) (Topical)', '920458', 'Betamethasone', 'a36457c1-6ace-456f-9438-228a6daf2542', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(619, 'BETAPACE (Oral Pill)', '1370109', 'Sotalol', '21aea811-f47d-4a44-a552-dfc46d2773bf', '7/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(620, 'BETASEPT (Soap)', '1790812', 'Chlorhexidine', '7e64e7bf-e88f-4056-c9e1-b49a277daa6c', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(621, 'BETASERON (Injectable)', '713196', 'interferon beta-1b', '261fde67-efb2-4bd7-947e-4f68a56e76ff', '4/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(622, 'Betaxolol (Ophthalmic)', '1322081', 'Betaxolol', '1fc0a413-4e6b-4ed7-9957-ace4c8cfab55', '9/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(623, 'Betaxolol (Oral Pill)', '1322081', 'Betaxolol', '9a58c45d-4b14-44d7-86ed-2997ac6942dd', '12/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(624, 'Bethanechol (Oral Pill)', '937439', 'Bethanechol', '138ed3d0-57db-4df1-8124-06033ecc76f0', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(625, 'BETHKIS (Inhalant)', '902722', 'Tobramycin', '1cd3d47b-025f-4705-9daf-cf07725ec223', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(626, 'BETIMOL (Ophthalmic)', '902427', 'Timolol', '3d7acd55-33b1-4a24-99ae-01f87b0dca1f', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(627, 'BETOPTIC (Ophthalmic)', '1322081', 'Betaxolol', '31b9b263-11fd-4495-83dd-ababf0d70e9e', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(628, 'BETOPTIC S (Ophthalmic)', '1322081', 'Betaxolol', '71659a34-efad-4147-81c7-da10985e9224', '9/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(629, 'Bexarotene (Oral Pill)', '1389888', 'bexarotene', '2d1eb4bd-51f9-4c9b-9fb1-0be5e30a3dc5', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(630, 'Bexarotene (Topical)', '1389888', 'bexarotene', 'e415c4c8-3144-4172-94a0-f4f3243130ae', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(631, 'BEXTRA (Oral Pill)', '1103374', 'valdecoxib', 'caf64301-262c-45ca-acd1-a9d6696c584e', '3/23/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(632, 'BIAXIN (Oral Liquid)', '1750500', 'Clarithromycin', '2e899f4a-a2e9-445c-a0ed-6ad811e997e6', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(633, 'BIAXIN (Oral Pill)', '1750500', 'Clarithromycin', '7c3d8c2c-ece6-4aba-8b5a-3865402cffcf', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(634, 'Bicalutamide (Oral Pill)', '1344381', 'bicalutamide', '427a872b-1b0b-41cf-aca2-49ce0163c7e6', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(635, 'BICLORA (Oral Liquid)', '1150886', 'chlophedianol', 'c588736a-250b-4fc6-b221-b4b51052b032', '3/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(636, 'BICNU (Injectable)', '1350066', 'Carmustine', 'd6cbb63c-e0b1-43ee-ad6f-408da0772079', '12/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(637, 'BIDEX (Oral Pill)', '1163944', 'Guaifenesin', '41e795d8-755a-41d0-b1ce-804334559e09', '1/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(638, 'BIDIL (Oral Pill)', '1373928', 'Hydralazine', 'c21325a9-cd57-4e39-98f2-0727ed8abb2d', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(639, 'BIFERARX (Oral Pill)', '19111620', 'Folic Acid', 'a7c1400a-d230-45db-afff-d5f70b091ee9', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(640, 'BILTRICIDE (Oral Pill)', '1750461', 'Praziquantel', '34ce1cdd-648e-4f1e-8512-bf3d4cc22eb9', '7/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(641, 'Bimatoprost (Ophthalmic)', '904525', 'bimatoprost', 'ec9097e7-4be4-4e62-99c3-24b48244c9f2', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(642, 'BIOFLEXOR (Topical)', '901656', 'Menthol', '455353d1-74dc-4b54-9da8-9ab5b81d14be', '10/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(643, 'BIOFREEZE (Topical)', '901656', 'Menthol', 'a8d59d45-0e85-43d1-affd-bbe922c4acb1', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(644, 'BIOTENE DRY MOUTH (Toothpaste)', '19068715', 'monofluorophosphate', 'a47a6502-efb2-4072-9562-cbe293531c2b', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(645, 'BISAC-EVAC (Rectal)', '924939', 'Bisacodyl', 'fc6dc813-717e-5e5c-4b72-9e46e40e9c40', '9/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(646, 'Bisacodyl (Oral Pill)', '924939', 'Bisacodyl', '2caa9488-eacb-4c0f-81f5-5d25397a4fb4', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(647, 'Bisacodyl (Rectal)', '924939', 'Bisacodyl', '2ce32d23-a0e3-4dc3-a03c-0aeddf6e2ab4', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(648, 'BISCO-LAX (Rectal)', '924939', 'Bisacodyl', '2a1b271e-ae17-4284-bfa1-4d0e3c75fcc3', '9/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(649, 'Bismuth subsalicylate (Chewable)', '937791', 'bismuth subsalicylate', 'ee478df8-8dda-4d43-bcdf-5b950a348627', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(650, 'Bismuth subsalicylate (Oral Liquid)', '937791', 'bismuth subsalicylate', 'ae8b3196-6f4e-4760-af6a-d28cf234078b', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(651, 'Bismuth subsalicylate (Oral Pill)', '937791', 'bismuth subsalicylate', '0f02f1a4-3ea4-43de-bfdb-b9cb7626f92a', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(652, 'Bisoprolol (Oral Pill)', '1338005', 'Bisoprolol', 'd82243b9-3e56-4a2b-8750-cb95ec106885', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(653, 'Bisoprolol/Hydrochlorothiazide (Oral Pill)', '1338005', 'Bisoprolol', 'b9ee689a-ea12-435d-b01c-70d45891e62f', '2/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(654, 'Bitter dock pollen extract (Injectable)', '40228117', 'bitter dock pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(655, 'Bitternut hickory pollen extract (Injectable)', '40171925', 'bitternut hickory pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(656, 'Bivalirudin (Injectable)', '19084670', 'bivalirudin', 'ce56f806-7845-429d-a1ce-c2dbf79b22eb', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(657, 'Black walnut pollen extract (Injectable)', '40161692', 'black walnut pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(658, 'Bleomycin (Injectable)', '1329241', 'Bleomycin', 'b5806c40-12ce-48e3-8abd-9f8997ef4428', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(659, 'BLEPHAMIDE (Ophthalmic)', '1550557', 'prednisolone', 'e88d861a-77dd-4e4c-a0c8-d9863cd16322', '4/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(660, 'BLINK TEARS (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '6f7e06c3-204d-459a-af8f-c46be9ad0e8d', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(661, 'BLISTEX COLD & ALLERGY LIP SOOTHER (Topical)', '916662', 'dimethicone', '5db6db29-f6eb-498f-8d80-76e9c36b8874', '12/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(662, 'BLISTEX KANKA (Mucosal)', '917006', 'Benzocaine', 'eebc03ba-f849-4e70-a653-834f383b6aa4', '4/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(663, 'BLISTEX MEDICATED LIP (Topical)', '938205', 'Camphor', '63300820-80ca-432f-b86d-ef15d878671b', '11/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(664, 'BLOXIVERZ (Injectable)', '717136', 'Neostigmine', '79ee2111-d65c-11e1-9b23-0800200c9a66', '12/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(665, 'Blue beech pollen extract (Injectable)', '40171961', 'blue beech pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(666, 'Blue spruce pollen extract (Injectable)', '40171965', 'blue spruce pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(667, 'BONINE (Chewable)', '994341', 'Meclizine', '0b4b55cd-063e-4d0e-911c-8e03886e15d3', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(668, 'BOROFAIR (Otic)', '929549', 'Acetic Acid', '040850b0-68c0-4160-b3a8-271e7ec4cde9', '12/3/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(669, 'BOROLEUM (Topical)', '938205', 'Camphor', '00bd405f-c1c2-402d-bc2e-fa25c8ffaa25', '1/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(670, 'BOSULIF (Oral Pill)', '42900401', 'bosutinib', 'adc84ad5-a04d-4fee-9ba8-91f7abd928e3', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(671, 'Bosutinib (Oral Pill)', '42900401', 'bosutinib', 'adc84ad5-a04d-4fee-9ba8-91f7abd928e3', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(672, 'Botrytis cinerea extract (Injectable)', '40161103', 'Botrytis cinerea extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(673, 'Botulism Immune Globulin IV Human (Injectable)', '19072699', 'Botulism Immune Globulin IV Human', '9ec59262-35c1-4d8e-8451-a7cfbacb0675', '11/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(674, 'Box elder maple pollen extract (Injectable)', '40161593', 'box elder maple pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(675, 'BRAVELLE (Injectable)', '1515417', 'Urofollitropin', '46f7740f-c879-4a77-9a16-2821fd772641', '9/28/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(676, 'Bread mold fungus extract (Injectable)', '40175794', 'bread mold fungus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(677, 'BREVIBLOC (Injectable)', '19063575', 'esmolol', '595cc3d5-1306-4828-aefa-5595219ffd62', '2/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(678, 'BREVITAL (Injectable)', '19005015', 'Methohexital', '468a7188-2e77-480f-8c68-6e2e9b6b47fd', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(679, 'Brimonidine (Ophthalmic)', '915542', 'brimonidine', 'bc1785c5-1448-4791-9868-2fbbc8703b3b', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(680, 'Brimonidine/Timolol (Ophthalmic)', '915542', 'brimonidine', 'feaf1480-a4b8-4486-992a-96be3a596243', '11/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(681, 'BRINTELLIX (Oral Pill)', '44507700', 'vortioxetine', '4b0700c9-b417-4c3a-b36f-de461e125bd3', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(682, 'Brinzolamide (Ophthalmic)', '938044', 'brinzolamide', 'e9ea2ae7-1b98-4034-9fba-8ce2225e0145', '3/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(683, 'BRISDELLE (Oral Pill)', '722031', 'Paroxetine', 'bf208751-e6d8-11e1-aff1-0800200c9a66', '12/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(684, 'Broadleaf cattail pollen extract (Injectable)', '42709317', 'broadleaf cattail pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(685, 'BROMDAY (Ophthalmic)', '1139179', 'bromfenac', '234a2447-90a7-4b8a-a344-7eef1e5daa6a', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(686, 'BROMFED DM (Oral Liquid)', '1130863', 'Brompheniramine', 'ccdf22f3-171f-4c19-8273-fefa140d1969', '1/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(687, 'Bromfenac (Ophthalmic)', '1139179', 'bromfenac', '3296f72b-62ba-d417-132b-30c4a6166609', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(688, 'Bromocriptine (Oral Pill)', '730548', 'Bromocriptine', 'f85296ab-a104-496f-a23d-e0a88cf91ec7', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(689, 'Brompheniramine (Oral Liquid)', '1130863', 'Brompheniramine', '4a03c41d-4a89-4e74-b287-ce166058458a', '10/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(690, 'Brompheniramine/Codeine/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', '41c354cd-5e98-47ac-a81b-9c3915924c93', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(691, 'Brompheniramine/Codeine/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', 'f07920ad-7f4b-48d6-8c86-d5a257ff91c6', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(692, 'Brompheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', 'bd86d5e2-f4e9-4c15-9a5c-15f91f10d743', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(693, 'Brompheniramine/Dextromethorphan/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', '0654b093-2067-492f-a0bc-647dac430bde', '8/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(694, 'Brompheniramine/Dihydrocodeine/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', '315a70bc-bfd8-471d-9379-d2746823537d', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(695, 'Brompheniramine/Dihydrocodeine/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', '4de68448-1f01-4ca1-b002-15589999de0f', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(696, 'Brompheniramine/Phenylephrine (Chewable)', '1130863', 'Brompheniramine', '655b4796-6ffc-c27f-b66e-d2ae0c7ad053', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(697, 'Brompheniramine/Phenylephrine (Oral Liquid)', '1130863', 'Brompheniramine', '1ee8e5fb-cd12-4f37-a0c7-dbf386313ab8', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(698, 'Brompheniramine/Phenylephrine (Oral Pill)', '1130863', 'Brompheniramine', '9aeaffc0-be85-4ca7-ae67-d439ccfe6511', '9/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(699, 'Brompheniramine/Pseudoephedrine (Oral Liquid)', '1130863', 'Brompheniramine', '4eba1542-8062-434a-a364-490a85ccc680', '4/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(700, 'Brompheniramine/Pseudoephedrine (Oral Pill)', '1130863', 'Brompheniramine', '4ae74ab3-c1f7-4347-9833-16553cf9969d', '2/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(701, 'BRONCOTRON (Oral Liquid)', '1119510', 'Dextromethorphan', '6cbf83f6-cbf4-4e5b-a383-6d71124547bc', '12/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(702, 'BRONKAID (Oral Pill)', '1143374', 'Ephedrine', '699e7629-5e8a-4dac-b494-fe42698ee460', '6/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(703, 'BROVEX PEB (Oral Liquid)', '1130863', 'Brompheniramine', 'ceb99dea-44ca-40c8-b479-da97707c513f', '4/19/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(704, 'Budesonide (Inhalant)', '939259', 'Budesonide', '4f339e84-33be-44d1-bbae-e0579da12c7f', '7/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(705, 'Budesonide (Oral Pill)', '939259', 'Budesonide', '7633c9b3-dfb5-446f-a260-e44b6e48afa2', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(706, 'BUFFERIN (Oral Pill)', '1112807', 'Aspirin', '802c81ff-e2ff-4d91-8589-55b1d1859b42', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(707, 'Bumetanide (Injectable)', '932745', 'Bumetanide', '00b71dc2-1851-4670-a48e-b4eb89d48d0b', '5/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(708, 'Bumetanide (Oral Pill)', '932745', 'Bumetanide', '509dba6d-7e53-02ed-8d86-fe83a2126250', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(709, 'BUMINATE (Injectable)', '1344143', '"Albumin Human, USP"', '4efc78ab-6b74-4ce9-bd3e-9411130ea81b', '10/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(710, 'BUNAVAIL (Buccal)', '1133201', 'Buprenorphine', '12b963dd-f189-11e3-ac10-0800200c9a66', '8/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(711, 'BUPAP (Oral Pill)', '1125315', 'Acetaminophen', '30e483da-eaf1-4c73-9fed-333337f9ba86', '12/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(712, 'BUPHENYL (Oral Pill)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(713, 'BUPHENYL (Oral Powder)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(714, 'Bupivacaine (Injectable)', '732893', 'Bupivacaine', '5e2f3987-624f-4cbf-9cf1-fad4f181a78f', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(715, 'Bupivacaine liposome (Injectable)', '40244151', 'Bupivacaine liposome', 'bb5a9e59-0f51-11df-8a39-0800200c9a66', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(716, 'Bupivacaine/EPINEPHrine (Injectable)', '732893', 'Bupivacaine', '6a60cb55-530a-41ee-bc78-971eaf9f0850', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(717, 'Bupivacaine/fentaNYL (Injectable)', '732893', 'Bupivacaine', 'e364b224-8fb5-45cd-8e29-adb09afae80f', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(718, 'BUPRENEX (Injectable)', '1133201', 'Buprenorphine', 'b086772e-d15a-4d13-b1a2-38bfbde1f18c', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(719, 'Buprenorphine (Injectable)', '1133201', 'Buprenorphine', '6795ade9-e06e-4daa-bb45-821901a055f5', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(720, 'Buprenorphine (Sublingual)', '1133201', 'Buprenorphine', '5efb3e1f-e908-4ed4-85d1-7961878d7fc5', '5/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(721, 'Buprenorphine/Naloxone (Buccal)', '1133201', 'Buprenorphine', '12b963dd-f189-11e3-ac10-0800200c9a66', '8/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(722, 'Buprenorphine/Naloxone (Oral Strip)', '1133201', 'Buprenorphine', '8a5edcf9-828c-4f97-b671-268ab13a8ecd', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(723, 'Buprenorphine/Naloxone (Sublingual)', '1133201', 'Buprenorphine', '6cccf229-9611-4b6f-8f1b-acc8ff1ed3f8', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(724, 'buPROPion (Oral Pill)', '750982', 'Bupropion', '714bd852-e9b1-4bda-8685-02f16c937222', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(725, 'Bur oak pollen extract (Injectable)', '40172010', 'bur oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(726, 'BURN JEL PLUS (Topical)', '989878', 'Lidocaine', '401023a5-6634-4c04-b6a6-55b78a9c79fe', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(727, 'Burning bush pollen extract (Injectable)', '40161629', 'burning bush pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(728, 'Burweed marshelder pollen extract/Rough marshelder pollen extract (Injectable)', '40161637', 'burweed marshelder pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(729, 'busPIRone (Oral Pill)', '733301', 'Buspirone', '8ed30856-84d2-dd2b-04d4-b101f6030bc0', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(730, 'Busulfan (Injectable)', '1333357', 'Busulfan', '03dc50f9-c7bd-4c0c-8bbb-c1216ec90c95', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(731, 'Busulfan (Oral Pill)', '1333357', 'Busulfan', 'bf456fc7-3a79-47f7-8acc-600b5e2f0dc2', '6/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(732, 'BUSULFEX (Injectable)', '1333357', 'Busulfan', '03dc50f9-c7bd-4c0c-8bbb-c1216ec90c95', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(733, 'Butabarbital (Oral Pill)', '959174', 'butabarbital', '7883bbc0-0874-11dc-a818-0002a5d5c51b', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(734, 'Butenafine (Topical)', '958396', 'butenafine', '36f09b0c-454a-4489-92be-8e6902874a74', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(735, 'BUTISOL (Oral Pill)', '959174', 'butabarbital', '7883bbc0-0874-11dc-a818-0002a5d5c51b', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(736, 'Butorphanol (Injectable)', '1133732', 'Butorphanol', '75d3fd4e-9dc3-8bbc-140e-0213ef135ab0', '8/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(737, 'Butorphanol (Nasal)', '1133732', 'Butorphanol', '9c069ce5-ea67-4f42-afe4-30b01b4ce24d', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(738, 'BYSTOLIC (Oral Pill)', '1314577', 'nebivolol', '673f5ad2-c09b-4a89-9407-efdadd007917', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(739, 'Cabergoline (Oral Pill)', '1558471', 'cabergoline', '0e2a2cb6-e453-4060-95f4-a8ce4ccecc10', '4/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(740, 'Cabozantinib (Oral Pill)', '43012292', 'cabozantinib', '1a0c3bea-c87b-4d25-bb44-5f0174da6b34', '12/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(741, 'CADUET (Oral Pill)', '1332418', 'Amlodipine', '909fad96-a941-443a-a39f-4f93607410fb', '3/30/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(742, 'CAFCIT (Injectable)', '1134439', 'Caffeine', 'fbcd234e-57e1-4da2-a96c-e3f7b7cf6ec0', '5/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(743, 'CAFCIT (Oral Liquid)', '1134439', 'Caffeine', 'fbcd234e-57e1-4da2-a96c-e3f7b7cf6ec0', '5/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(744, 'CAFERGOT (Oral Pill)', '1134439', 'Caffeine', '1c066197-dea6-4705-9b4a-8703dd564a2a', '4/26/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(745, 'Caffeine (Injectable)', '1134439', 'Caffeine', 'cc632825-e0a4-4524-8d7d-ce926efab3d6', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(746, 'Caffeine (Oral Liquid)', '1134439', 'Caffeine', 'cc632825-e0a4-4524-8d7d-ce926efab3d6', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(747, 'Caffeine (Oral Pill)', '1134439', 'Caffeine', 'cc55f4e6-5304-4310-b3e5-f0a4e9aa5bf8', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(748, 'Caffeine/Ergotamine (Oral Pill)', '1134439', 'Caffeine', '6a105e44-b558-45c1-9c91-fe1f3dfc5bd5', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(749, 'Caffeine/Ergotamine (Rectal)', '1134439', 'Caffeine', '3a31ad0c-7bdd-544b-f5df-a99d04cf541c', '1/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(750, 'Caffeine/Magnesium Salicylate (Oral Pill)', '1134439', 'Caffeine', 'e02a39f9-1c8c-4d38-b394-3f5b7062932c', '9/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(751, 'CAL GEST (Chewable)', '19035704', 'Calcium Carbonate', 'a43184c4-d225-4539-b651-4d96535f208f', '8/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(752, 'CALADRYL CLEAR (Topical)', '927478', 'pramoxine', 'fca6f08b-7fa0-4ae6-bce3-61f3bcae4332', '8/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(753, 'Calamine (Topical)', '902616', 'Calamine', 'd9d6ea6f-0793-3c9d-f92c-a9e2f0bee20b', '7/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(754, 'Calamine/Menthol/Petrolatum/Zinc Oxide (Paste)', '902616', 'Calamine', '1295cfcc-5b61-481b-964b-f53ffd0cb58e', '3/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(755, 'Calamine/Menthol/Zinc Oxide (Topical)', '902616', 'Calamine', '7b52374e-1119-4145-b87b-96b7212fdc3e', '3/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(756, 'Calamine/Phenol/Zinc Oxide (Topical)', '902616', 'Calamine', '8e68efc4-4c95-41c0-9fed-32297b1b2edc', '4/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(757, 'Calamine/Pramoxine (Topical)', '902616', 'Calamine', 'a042095e-a139-4c5d-8ffb-39e37da2a93a', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(758, 'Calamine/Zinc Oxide (Topical)', '902616', 'Calamine', '777b0e66-1bce-4483-9dad-c46796fd6f23', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(759, 'CALAZIME SKIN PROTECTANT (Paste)', '902616', 'Calamine', '1295cfcc-5b61-481b-964b-f53ffd0cb58e', '3/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(760, 'Calcipotriene (Topical)', '908921', 'calcipotriene', '21378c25-5622-8bf7-1a8c-b05940a846a0', '5/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(761, 'CALCITRENE (Topical)', '908921', 'calcipotriene', '94d4f46a-f254-4fe2-b4bd-7a533d6324fe', '5/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(762, 'Calcitriol (Injectable)', '19035631', 'Calcitriol', '406151ad-6c0a-4d66-86fc-e076df9671a3', '10/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(763, 'Calcitriol (Oral Liquid)', '19035631', 'Calcitriol', 'dc293a1c-995d-40fa-ac99-68df12eb6d9e', '3/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(764, 'Calcitriol (Oral Pill)', '19035631', 'Calcitriol', 'bebefb2a-7365-48e2-9681-83ed4b41e26e', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(765, 'Calcitriol (Topical)', '19035631', 'Calcitriol', 'a1567da9-af74-4afd-9ac5-8b53ec5d7cbf', '3/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(766, 'Calcium acetate (Oral Pill)', '951469', 'calcium acetate', 'b02f8473-3220-4651-9c7f-993645f43a82', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(767, 'Calcium Carbonate (Chewable)', '19035704', 'Calcium Carbonate', '21e9152c-6e83-454d-a782-00c2ced5b3fa', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(768, 'Calcium Carbonate (Oral Liquid)', '19035704', 'Calcium Carbonate', '594e80a9-b2fa-4a69-ab70-c25e78b1a40d', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(769, 'Calcium Carbonate (Oral Pill)', '19035704', 'Calcium Carbonate', '1cd621d0-58b9-45f7-80fb-e13ca68596a1', '7/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(770, 'Calcium Carbonate (Oral Powder)', '19035704', 'Calcium Carbonate', '88cadd90-c6f4-4229-aed4-bf3e4ce6dbf5', '10/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(771, 'Calcium Carbonate/Cholecalciferol (Oral Pill)', '19035704', 'Calcium Carbonate', 'bba98e57-7056-4143-8fcd-95e25539d087', '5/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(772, 'Calcium Carbonate/Famotidine/Magnesium Hydroxide (Chewable)', '19035704', 'Calcium Carbonate', 'cd787644-2809-478c-bf8f-01ab8c306d61', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(773, 'Calcium Carbonate/Folic Acid/Magnesium carbonate (Oral Pill)', '19035704', 'Calcium Carbonate', 'e74e25aa-2f4c-4026-bc2b-7bb21aaf6fc5', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(774, 'Calcium Carbonate/Magnesium carbonate (Oral Pill)', '19035704', 'Calcium Carbonate', 'af124c72-0a35-4305-abd8-2b0ebf84da08', '7/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(775, 'Calcium Carbonate/Magnesium Hydroxide (Chewable)', '19035704', 'Calcium Carbonate', '8806c912-ab83-4f45-ac78-e826bb3143d4', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(776, 'Calcium Carbonate/Magnesium Hydroxide (Oral Liquid)', '19035704', 'Calcium Carbonate', '7fbc654b-a0d4-408c-bb5a-eb50b7b54382', '8/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(777, 'Calcium Carbonate/Simethicone (Chewable)', '19035704', 'Calcium Carbonate', '41d17406-3653-4889-81df-6270b7b5d3c7', '3/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(778, 'Calcium Chloride (Injectable)', '19036781', 'Calcium Chloride', '98de04ad-784f-4816-acbf-2b1ebfaa4005', '4/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(779, 'Calcium Chloride/Fibrinogen/Fibrinolysis inhibitor/Thrombin (Topical)', '19036781', 'Calcium Chloride', 'e1aca067-0c96-4025-88bc-bd2345a46a30', '8/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(780, 'Calcium Chloride/Lactate/Potassium Chloride/Sodium Chloride (Injectable)', '19036781', 'Calcium Chloride', 'c64bb1f7-715e-42dd-a8cb-09921cb56f23', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(781, 'Calcium Chloride/Lactate/Potassium Chloride/Sodium Chloride (Irrigation)', '19036781', 'Calcium Chloride', 'f09f80bf-2f8b-4420-865d-aec2d5e5cd4d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(782, 'Calcium Chloride/Potassium Chloride/Sodium Chloride (Injectable)', '19036781', 'Calcium Chloride', '76140511-686a-42c2-b3c1-32cfb71d24cb', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(783, 'CALCIUM DISODIUM VERSENATE (Injectable)', '43013616', 'Edetate Calcium', 'f960dbfa-b00c-4f3e-ad32-ed6a5deea831', '4/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(784, 'Calcium Gluconate (Injectable)', '19037038', 'Calcium Gluconate', 'c069b9bf-a17f-4727-9eb3-a6c69af883f8', '1/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(785, 'Calcium Gluconate (Oral Pill)', '19037038', 'Calcium Gluconate', 'd2239df8-199a-4c70-b56c-6ee78bb78919', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(786, 'Calcium polycarbophil (Oral Pill)', '940426', 'calcium polycarbophil', '968a8b7d-b9ea-464a-8ff8-8e259f438bc3', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(787, 'CALDECORT (Topical)', '975125', 'Hydrocortisone', '258723cf-d72e-49ee-8eaf-03fc00fa4a7c', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(788, 'CALDESENE (Topical)', '1036157', 'Starch', '9f12dee2-7afa-45e9-a729-0fd42bb77715', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(789, 'CALDOLOR (Injectable)', '1177480', 'Ibuprofen', '1eaa7790-f1a1-4f51-b10a-cbbaf033f684', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(790, 'Calfactant (Inhalant)', '19089891', 'calfactant', '315c128a-272d-4c57-bfbe-1a8b3402af08', '7/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(791, 'California black walnut pollen extract (Injectable)', '40161146', 'California black walnut pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(792, 'California mugwort pollen extract (Injectable)', '40169509', 'California mugwort pollen extract', '02de3b96-7daa-4776-8e2e-c21cf282f091', '1/7/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(793, 'CALMOL (Rectal)', '951112', 'cocoa butter', '5516f800-d3fa-4b90-a3eb-c0bdf3183b9b', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(794, 'CALMOSEPTINE OINTMENT (Topical)', '901656', 'Menthol', '0e4d23b8-bb10-4b91-ace5-fe41b914004a', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(795, 'CALPHRON (Oral Pill)', '951469', 'calcium acetate', '86f2e3d2-dbe3-400b-91cf-a4bf41db1342', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(796, 'CAMBIA (Oral Liquid)', '1124300', 'Diclofenac', 'd7335594-50c9-4ae2-a3e3-b9a375187b62', '4/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(797, 'CAMPATH (Injectable)', '1312706', 'alemtuzumab', '4f5f7255-7abc-4328-bd1a-ceaf139ef3e0', '10/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(798, 'CAMPHO-PHENIQUE (Topical)', '938205', 'Camphor', '0f888d89-b241-4a51-e054-00144ff8d46c', '2/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(799, 'Camphor (Inhalant)', '938205', 'Camphor', '007909d6-7c4b-47f9-bc4c-514bda647651', '4/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(800, 'Camphor (Topical)', '938205', 'Camphor', '36edeed8-894b-4f49-bb9a-9b43181b4906', '10/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(801, 'Camphor/Dimethicone/Menthol/Phenol (Topical)', '938205', 'Camphor', '63300820-80ca-432f-b86d-ef15d878671b', '11/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(802, 'Camphor/Eucalyptus oil/Menthol (Topical)', '938205', 'Camphor', '4cd2f751-e072-4f4e-b059-ed1dfcc60c6b', '6/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(803, 'Camphor/Menthol (Topical)', '938205', 'Camphor', 'f406161e-a9c4-47d1-8b21-93b1b7938063', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(804, 'Camphor/Menthol/Methyl salicylate (Topical)', '938205', 'Camphor', '0005e125-fbf2-4f90-8960-99e00250fc20', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(805, 'Camphor/Menthol/Methyl salicylate (Transdermal)', '938205', 'Camphor', '47083271-4584-445a-be2d-c80b34503cc0', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(806, 'Camphor/Menthol/Petrolatum (Topical)', '938205', 'Camphor', '00bd405f-c1c2-402d-bc2e-fa25c8ffaa25', '1/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(807, 'Camphor/Phenol (Topical)', '938205', 'Camphor', '0d914664-f8d4-2ff7-e054-00144ff88e88', '2/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(808, 'CAMPRAL (Oral Pill)', '19043959', 'acamprosate', 'fe6f754f-62b4-4c86-805d-221332409516', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(809, 'CAMPTOSAR (Injectable)', '1367268', 'irinotecan', 'f2f20b37-8bd4-4e8a-b596-be80b48ca2f1', '2/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(810, 'Canadian bluegrass pollen extract (Injectable)', '40227802', 'Canadian bluegrass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(811, 'Canagliflozin/metFORMIN (Oral Pill)', '43526465', 'canagliflozin', '6868666b-c25e-40d1-9d1f-306bbe9390c1', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(812, 'CANASA (Rectal)', '968426', 'mesalamine', '357e0e6b-cfbd-454c-82d7-cfc460dc0d68', '8/25/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(813, 'Candesartan (Oral Pill)', '1351557', 'candesartan', 'a67f4f53-76c7-4239-9dd6-fef8e8019e9a', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(814, 'Candesartan/Hydrochlorothiazide (Oral Pill)', '1351557', 'candesartan', 'f3c4f7ed-e667-4528-a675-b032c2a4425d', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(815, 'CAPACET (Oral Pill)', '1125315', 'Acetaminophen', 'f3a37ce1-5082-4ac4-88a2-c8fadbd0b7b3', '11/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(816, 'CAPASTAT (Injectable)', '19026710', 'Capreomycin', '808e4421-2b9c-41e1-a82c-39256b112ae8', '6/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(817, 'Capecitabine (Oral Pill)', '1337620', 'capecitabine', '2777b481-7d7f-461a-b5e0-c09ce2990c34', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(818, 'CAPEX (Shampoo)', '996541', 'fluocinolone', 'a52763d0-7024-48a8-9cca-3127333dfb01', '11/2/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(819, 'Capreomycin (Injectable)', '19026710', 'Capreomycin', '808e4421-2b9c-41e1-a82c-39256b112ae8', '6/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(820, 'Capsaicin (Topical)', '939881', 'Capsaicin', '345c9159-0efe-436b-9068-3b717678936b', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(821, 'Capsaicin (Transdermal)', '939881', 'Capsaicin', 'ef5373aa-9857-4d01-95af-2d7716e54ae4', '11/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(822, 'Capsaicin/Lidocaine/Menthol/Methyl salicylate (Topical)', '939881', 'Capsaicin', '85066887-44d0-4a4a-adee-670073e4b22c', '3/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(823, 'Capsaicin/Lidocaine/Menthol/Methyl salicylate (Transdermal)', '939881', 'Capsaicin', '2587a121-2544-4409-92b3-5c4049e53161', '6/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(824, 'Capsaicin/Menthol (Topical)', '939881', 'Capsaicin', '0096cca7-5671-4717-bc92-12170c1bcf2f', '4/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(825, 'Capsaicin/Menthol (Transdermal)', '939881', 'Capsaicin', '59bd46fa-9460-416d-b4ef-6beeddda96cf', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(826, 'Capsaicin/Menthol/Methyl salicylate (Topical)', '939881', 'Capsaicin', 'fd7e50c9-5ed4-45d3-bc8d-c5583ca436be', '4/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(827, 'Capsaicin/Menthol/Methyl salicylate (Transdermal)', '939881', 'Capsaicin', 'a9343d24-8435-4a51-98a2-b7976cd369ab', '12/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(828, 'Captopril (Oral Pill)', '1340128', 'Captopril', '851ff660-e6a4-48f8-a6d0-4c10dbb01836', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(829, 'Captopril/Hydrochlorothiazide (Oral Pill)', '1340128', 'Captopril', 'd826812e-ede7-49e7-8384-29ec5b142ef3', '5/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(830, 'CAPZASIN QUICK RELIEF (Topical)', '939881', 'Capsaicin', 'd6c313a3-8dc6-4231-95b6-ac9399e1c1be', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(831, 'CAPZASIN-HP (Topical)', '939881', 'Capsaicin', '345c9159-0efe-436b-9068-3b717678936b', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(832, 'CAPZASIN-P (Topical)', '939881', 'Capsaicin', '605703e8-b353-40df-9ac4-67a76b866d63', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(833, 'CARAC (Topical)', '955632', 'Fluorouracil', '8379f1db-4255-4285-abd3-8ecdcaf03372', '4/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(834, 'CARAFATE (Oral Liquid)', '1036228', 'Sucralfate', '0fb67b1c-b4c0-46f2-8a81-df1510e006aa', '5/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(835, 'Carbachol (Injectable)', '940183', 'Carbachol', 'f28d7a56-e079-4a8b-ad81-9a97c780de67', '7/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(836, 'carBAMazepine (Chewable)', '740275', 'Carbamazepine', 'e36ece79-544b-43b2-8cf9-ca9861b071b5', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(837, 'carBAMazepine (Oral Liquid)', '740275', 'Carbamazepine', '536811ab-308b-4866-9185-9e4149483512', '7/19/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(838, 'carBAMazepine (Oral Pill)', '740275', 'Carbamazepine', 'ce5aec7a-e161-46bf-8fc0-afb41689e59a', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(839, 'Carbamide peroxide (Mucosal)', '958999', 'carbamide peroxide', '086a0b82-e947-41c9-89e7-ba06483960c9', '7/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(840, 'Carbamide peroxide (Otic)', '958999', 'carbamide peroxide', 'dfd2a0a4-0cb6-4e19-addc-b9db2488dcbf', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(841, 'CARBASTAT (Injectable)', '940183', 'Carbachol', '048af9c6-4866-4500-9914-cd7071a19b63', '10/5/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(842, 'CARBATUSS SYRUP (Oral Liquid)', '1140640', 'carbetapentane', '8d886ec3-8ccf-4fd0-84d6-de9e858da0fb', '3/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(843, 'Carbenicillin (Oral Pill)', '1740546', 'Carbenicillin', '02010995-9826-4a67-945b-f3022e6081df', '9/14/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(844, 'Carbetapentane/guaiFENesin (Oral Liquid)', '1140640', 'carbetapentane', 'c3a1a47a-27ce-4565-9d6a-a2d8314357a6', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(845, 'Carbetapentane/guaiFENesin/Phenylephrine (Oral Liquid)', '1140640', 'carbetapentane', '8d886ec3-8ccf-4fd0-84d6-de9e858da0fb', '3/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(846, 'Carbidopa (Oral Pill)', '740560', 'Carbidopa', 'ff8e105b-7415-42d4-bbb2-b36cfb8945a5', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(847, 'Carbidopa/Entacapone/Levodopa (Oral Pill)', '740560', 'Carbidopa', 'dabb7f5d-03b3-4d46-951a-e41a1f8d69cc', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(848, 'Carbidopa/Levodopa (Oral Disintegrating)', '740560', 'Carbidopa', 'd26b56fa-d521-461b-a619-40b65862b644', '12/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(849, 'Carbidopa/Levodopa (Oral Pill)', '740560', 'Carbidopa', 'a15f5833-42f0-4890-9596-992eef0846e5', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(850, 'Carbidopa/Levodopa XR (Oral Pill)', '740560', 'Carbidopa', '043db807-8381-4df8-b3a3-825988d63ef5', '5/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(851, 'Carbinoxamine (Oral Liquid)', '1141018', 'carbinoxamine', '748c233b-6ab9-42d0-89ab-e7ead30f7947', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(852, 'Carbinoxamine (Oral Pill)', '1141018', 'carbinoxamine', '3f4f633c-5c5d-4d52-abb8-dfa2896b40d2', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(853, 'CARBOCAINE (Injectable)', '702774', 'Mepivacaine', 'f00557a9-ec79-4c54-9d06-c71d2a8aff2c', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(854, 'CARBOCAINE WITH NEOCOBEFRIN (Injectable)', '19015395', 'Levonordefrin', 'f00557a9-ec79-4c54-9d06-c71d2a8aff2c', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(855, 'Carbon Dioxide (Inhalant)', '19046180', 'Carbon Dioxide', 'f4cf5b1b-ca57-4799-ae51-130f6fd5d058', '5/13/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(856, 'CARBOplatin (Injectable)', '1344905', 'Carboplatin', '806736d3-215a-4df5-8187-97f2161e5a53', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(857, 'Carboxymethylcellulose (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'cd467181-9d56-4b11-9826-15b5357d0689', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(858, 'Carboxymethylcellulose/Glycerin (Ophthalmic)', '949279', 'Carboxymethylcellulose', '37e99aa8-02d6-4efb-a862-90bc7fcd5ca5', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(859, 'Carboxymethylcellulose/Hypromellose (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'c9dcab71-3ec8-45ff-83f0-132c6c6e63bd', '10/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(860, 'CARDENE (Injectable)', '1318137', 'Nicardipine', '0d58f812-37bf-439f-b3f2-c31f8eefe22e', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(861, 'CARDIZEM (Oral Pill)', '1328165', 'Diltiazem', 'f3e7ecef-f360-4987-a4f5-933214130ab2', '1/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(862, 'CARIMUNE (Injectable)', '19117912', 'Immunoglobulin G', '610b905a-50d3-48f0-919a-69cc99aab5a8', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(863, 'Carisoprodol (Oral Pill)', '749910', 'Carisoprodol', 'cfef5764-49ff-4ce2-84fe-5e421e4b0202', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(864, 'Carmustine (Implant)', '1350066', 'Carmustine', '783ec80b-95d7-44c7-8b90-fa7394f50f67', '5/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(865, 'Carmustine (Injectable)', '1350066', 'Carmustine', 'd6cbb63c-e0b1-43ee-ad6f-408da0772079', '12/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(866, 'CARNITOR (Oral Liquid)', '1553610', 'Levocarnitine', 'b2cbc620-59fd-47b6-9e4b-7e3e31533a1c', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(867, 'CARNITOR (Oral Pill)', '1553610', 'Levocarnitine', 'd2133bc3-9c15-48bd-8b16-b8995a6a14cd', '7/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(868, 'Carteolol (Ophthalmic)', '950370', 'Carteolol', '571fe550-399d-4296-835c-37aa1ab9b409', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(869, 'CARTERS LITTLE PILLS (Oral Pill)', '924939', 'Bisacodyl', '4ee15f4b-070e-4f6a-a3ff-dbb5136f8db6', '2/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(870, 'Carvedilol (Oral Pill)', '1346823', 'carvedilol', 'c3f7f2f7-7309-4825-b868-13c6ef89fe86', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(871, 'CASTELLANI PAINT (Topical)', '923540', 'phenol', 'bf6845e5-16f3-4828-bfbf-2bc2596a02f3', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(872, 'Castor Oil (Oral Liquid)', '950933', 'Castor Oil', '5fe0f114-67ae-44c5-906f-60e49a9a8475', '9/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(873, 'Castor Oil/Peruvian balsam (Topical)', '950933', 'Castor Oil', '6bf98ba3-d9f6-4872-8220-a1b403226223', '10/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(874, 'Cat Hair Extract (Injectable)', '19095690', 'Cat Hair Extract', '6f9e5a38-738c-470f-b9cf-4fcef6bc7f01', '1/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(875, 'Cat skin extract (Injectable)', '40161698', 'cat skin extract', '01a914b7-51b5-4aab-952f-2eae56d25e9c', '5/20/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(876, 'CATAFLAM (Oral Pill)', '1124300', 'Diclofenac', '1582c050-925a-4af8-a44f-948017946ae6', '3/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(877, 'CATAPRES (Oral Pill)', '1398937', 'Clonidine', 'd7f569dc-6bed-42dc-9bec-940a9e6b090d', '6/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(878, 'CAVERJECT (Injectable)', '1381504', 'Alprostadil', 'a295fc1e-d82c-4f44-bc2d-a552bf594c98', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(879, 'CAVILON DURABLE BARRIER CREAM (Topical)', '916662', 'dimethicone', '4cc117f2-65be-4c7b-b182-0417acd5dc41', '12/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(880, 'CAVIRINSE (Mouthwash)', '19069022', 'Sodium Fluoride', 'e061e50c-cea2-4aea-b59c-3916829b253a', '12/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(881, 'CEDAX (Oral Liquid)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(882, 'CEDAX (Oral Pill)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', '1/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(883, 'CEENU (Oral Pill)', '1391846', 'Lomustine', '17893de9-7d54-448c-9fca-d10642046d14', '12/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(884, 'Cefaclor (Oral Liquid)', '1768849', 'Cefaclor', '9f919252-7a87-4386-a64c-5d8213f7e881', '9/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(885, 'Cefaclor (Oral Pill)', '1768849', 'Cefaclor', 'b093ec49-da83-40e3-8e1c-8a64b7f45d27', '6/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(886, 'Cefadroxil (Oral Liquid)', '1769535', 'Cefadroxil', '30bb3686-87b4-4676-9ff5-e20deb8bff9d', '5/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(887, 'Cefadroxil (Oral Pill)', '1769535', 'Cefadroxil', 'bda86975-8c2f-4c4e-9a4c-a1a959f9336a', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(888, 'ceFAZolin (Injectable)', '1771162', 'Cefazolin', 'd3fe1e18-9e3e-4797-9fb4-275900fa9ff3', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(889, 'Cefdinir (Oral Liquid)', '1796458', 'cefdinir', '542fb9ea-f289-43c3-81fa-555a632e6a45', '3/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(890, 'Cefdinir (Oral Pill)', '1796458', 'cefdinir', '77e061e8-d3e2-4955-9f65-59510b5afc70', '8/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(891, 'Cefditoren (Oral Pill)', '1747005', 'cefditoren', 'd5050d0e-81d1-4707-a38a-e80de2aebf09', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(892, 'Cefixime (Chewable)', '1796435', 'Cefixime', '5007152e-a679-4e85-ac3f-c46087812774', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(893, 'Cefixime (Oral Liquid)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(894, 'Cefixime (Oral Pill)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(895, 'CEFIZOX (Injectable)', '1777254', 'Ceftizoxime', '0013824b-6aee-4da4-affd-35bc6bf19d91', '8/6/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(896, 'CEFOTAN (Injectable)', '1774932', 'Cefotetan', '56912a83-4cba-4461-d983-3a0656515458', '4/20/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(897, 'Cefotaxime (Injectable)', '1774470', 'Cefotaxime', 'ef1a6dc6-bc3d-4f09-8f92-7ff328f56561', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(898, 'cefoTEtan (Injectable)', '1774932', 'Cefotetan', 'c6b8667e-8bb6-ea58-a969-2f74458bc611', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(899, 'cefOXitin (Injectable)', '1775741', 'Cefoxitin', '6a4a2afa-4f00-41d4-bd6d-baa0a95f6929', '3/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(900, 'Cefpodoxime (Oral Liquid)', '1749008', 'cefpodoxime', '5310de78-22c3-4bee-9956-854e767b6bef', '4/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(901, 'Cefpodoxime (Oral Pill)', '1749008', 'cefpodoxime', '8b7f7043-5bfb-47a5-80cb-4f3f65358dff', '12/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(902, 'Cefprozil (Oral Liquid)', '1738366', 'cefprozil', '3ec55c0a-1456-412e-972f-352b3135c8f2', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(903, 'Cefprozil (Oral Pill)', '1738366', 'cefprozil', '75d57e35-ffeb-4d88-8dba-5458e284fd82', '8/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(904, 'cefTAZidime (Injectable)', '1776684', 'Ceftazidime', '22d6534c-4488-48a1-8d78-e2fb908259de', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(905, 'Ceftibuten (Oral Liquid)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', '1/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(906, 'Ceftibuten (Oral Pill)', '1749083', 'ceftibuten', '2dd58c88-142f-41ad-bc31-0a4fff074970', '1/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(907, 'Ceftizoxime (Injectable)', '1777254', 'Ceftizoxime', '3574df06-fec5-4888-8080-3b817addfb02', '8/6/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(908, 'cefTRIAXone (Injectable)', '1777806', 'Ceftriaxone', '0faaee8c-30f6-4715-a9b6-7978da7c1ec8', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(909, 'Cefuroxime (Injectable)', '1778162', 'Cefuroxime', '98ea197c-b3ff-47bc-8d0f-fce91b539959', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(910, 'Cefuroxime (Oral Liquid)', '1778162', 'Cefuroxime', '135e2dfc-eb47-4d04-a903-a081d36c267e', '8/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(911, 'Cefuroxime (Oral Pill)', '1778162', 'Cefuroxime', '61d3f51b-a8ed-4be5-849c-4bf653538d3e', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(912, 'CeleBREX (Oral Pill)', '1118084', 'celecoxib', '8d52185d-421f-4e34-8db7-f7676db2a226', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(913, 'Celecoxib (Oral Pill)', '1118084', 'celecoxib', '8d52185d-421f-4e34-8db7-f7676db2a226', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(914, 'CELESTONE SOLUSPAN (Injectable)', '920458', 'Betamethasone', '2fb9fb11-d4ab-4c19-b5d1-c0177b3d8ef6', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(915, 'CeleXA (Oral Pill)', '797617', 'Citalopram', '6c96373f-6744-49d4-aec5-3720bc993fab', '12/21/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(916, 'CELLCEPT (Oral Pill)', '19003999', 'mycophenolate mofetil', '81ca6530-76d1-46f1-9bf8-0ffac79d2523', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(917, 'CENESTIN (Oral Pill)', '1596779', '"synthetic conjugated estrogens, A"', '410f9433-98ed-4c3f-abb1-2386296d2f72', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(918, 'CENOLATE (Injectable)', '19011773', 'Ascorbic Acid', 'af67a2f3-65b7-4a6e-9a51-315a280f976b', '11/1/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(919, 'CENTANY (Topical)', '951511', 'Mupirocin', 'ae3defca-06d5-49ac-8a27-be5c4e9304d1', '2/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(920, 'CENTUSSIN (Oral Liquid)', '1130863', 'Brompheniramine', '315a70bc-bfd8-471d-9379-d2746823537d', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(921, 'CEO-TWO (Rectal)', '19086788', 'Potassium bitartrate', 'd868de56-ac3b-4e44-8aa5-031661f0ac25', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(922, 'CEPACOL (Oral Disintegrating)', '917006', 'Benzocaine', 'a0e52795-e4ec-4205-8862-a51a2b2a7ae1', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(923, 'CEPACOL (Oral Lozenge)', '917006', 'Benzocaine', '48ce5553-5275-461b-8fe5-7f2bde197741', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(924, 'CEPACOL ANTIBACTERIAL MOUTHWASH (Mouthwash)', '989301', 'Cetylpyridinium', '7c19eba6-3ebd-497f-9066-6152b72eafdd', '6/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(925, 'CEPACOL DUAL RELIEF (Mucosal)', '917006', 'Benzocaine', '45561e94-2b54-4c19-be3e-b1949e1a5bbc', '7/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(926, 'CEPACOL SENSATIONS COOLING (Oral Lozenge)', '917006', 'Benzocaine', '968f2322-fa9a-4ef8-baab-49576713618c', '4/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(927, 'CEPACOL SORE THROAT FROM POST NASAL DRIP (Oral Lozenge)', '901656', 'Menthol', '599912f1-f888-4528-a676-78ef9a15b128', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(928, 'CEPACOL SORE THROAT PAIN RELIEF (Oral Lozenge)', '917006', 'Benzocaine', '17d32d80-520a-4e32-9b45-1e296add9924', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(929, 'CEPACOL SORE THROAT PLUS COATING (Oral Lozenge)', '917006', 'Benzocaine', '634a8e8a-4a7b-4eed-ba34-b06acb9c6525', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(930, 'CEPACOL SORE THROAT PLUS COUGH (Oral Lozenge)', '917006', 'Benzocaine', 'd25f736d-07ee-40cf-bc16-0f2c231eecd1', '9/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(931, 'CEPASTAT (Oral Lozenge)', '923540', 'phenol', '6f4402aa-3f6e-4469-b512-868dba734d2b', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(932, 'Cephalexin (Oral Liquid)', '1786621', 'Cephalexin', 'c408de52-a15e-49ec-8bcd-eede240e5225', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(933, 'Cephalexin (Oral Pill)', '1786621', 'Cephalexin', '937d6426-aed3-445b-9e9d-f30fa2f27a29', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(934, 'CEPROTIN (Injectable)', '42801108', 'Protein C', '926914a9-78b2-40ea-b37d-2a55c09bf275', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(935, 'CERDELGA (Oral Pill)', '45775782', 'eliglustat', '819f828a-b888-4e46-83fc-94d774a28a83', '9/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(936, 'CEREZYME (Injectable)', '1348407', 'imiglucerase', 'df60f030-866b-4374-a31f-8ae3f6b45c38', '12/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(937, 'CERISA WASH (Soap)', '1036252', 'Sulfacetamide', '00278dd5-328f-4f4c-992c-a02ecde24e51', '7/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(938, 'CERVIDIL (Implant)', '1329415', 'Dinoprostone', 'f1391c7c-233e-44d8-8838-36cc12f01044', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(939, 'CESAMET (Oral Pill)', '913440', 'nabilone', 'bb582d64-0f51-11df-8a39-0800200c9a66', '5/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(940, 'CETACAINE (Topical)', '917006', 'Benzocaine', 'af1773c5-5d5b-4278-b551-30ad2df6d5b5', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(941, 'CETAFEN (Oral Pill)', '1125315', 'Acetaminophen', '207cf327-b35c-405c-979e-af25183e6ae5', '11/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(942, 'CETAMIDE (Ophthalmic)', '1036252', 'Sulfacetamide', '5a5d8fee-b42a-4f0c-a508-75c7c71bedb4', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(943, 'Cetirizine (Chewable)', '1149196', 'Cetirizine', 'dcc69bbe-e24c-4acf-8746-559ac1600dda', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(944, 'Cetirizine (Oral Liquid)', '1149196', 'Cetirizine', 'b088ac07-3246-434b-98cb-8759e9109fb0', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(945, 'Cetirizine (Oral Pill)', '1149196', 'Cetirizine', '91fe3ab8-c155-4482-9f06-f029d3563aad', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(946, 'CETRAXAL (Otic)', '1797513', 'Ciprofloxacin', '213b339a-75e0-4b1d-9052-8ee82a65d713', '6/17/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(947, 'Cetrorelix (Injectable)', '1503983', 'cetrorelix', 'aca7768e-28a7-4027-b1d8-e66247665f79', '5/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(948, 'CETROTIDE (Injectable)', '1503983', 'cetrorelix', 'aca7768e-28a7-4027-b1d8-e66247665f79', '5/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(949, 'Cetylpyridinium (Mouthwash)', '989301', 'Cetylpyridinium', '5db380e6-f2f2-434d-b2d7-c19fedb6e821', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(950, 'Cetylpyridinium (Mucosal)', '989301', 'Cetylpyridinium', '48b1f5b8-69b1-4d50-960b-733151beef91', '9/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(951, 'Cevimeline (Oral Pill)', '954819', 'cevimeline', '0679dd4c-fece-4c6d-b273-2c62237e8973', '3/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(952, 'Chaetomium globosum extract (Injectable)', '40161167', 'Chaetomium globosum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(953, 'CHANTIX (Oral Pill)', '780442', 'varenicline', '3e689dae-5058-4556-be14-df50e2803208', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(954, 'CHEMET (Oral Pill)', '1728909', 'Succimer', '62035612-9505-3a3f-1ac8-e2dbd711d24e', '8/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(955, 'CHENODAL (Oral Pill)', '19052447', 'Chenodeoxycholate', 'b8b4539b-31d1-40cb-b284-86cf8b16522a', '1/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(956, 'Chenodeoxycholate (Oral Pill)', '19052447', 'Chenodeoxycholate', 'bbb86251-9423-40e6-9117-9511ab5fbf63', '2/2/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(957, 'CHERATUSSIN (Oral Liquid)', '1201620', 'Codeine', '532d83c7-7e01-4777-927c-cf01db6847e5', '7/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(958, 'Chesnut oak pollen extract (Injectable)', '40172048', 'chesnut oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(959, 'CHILDREN''S NYQUIL COLD AND COUGH (Oral Liquid)', '1192710', 'Chlorpheniramine', 'e67ae132-d9c7-4a56-b6f7-562a2bd4747f', '10/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(960, 'CHIRHOSTIM (Injectable)', '19084212', 'Human Secretin', 'b4dfe70f-0a86-4488-9ba1-dcd8f86cbfcd', '8/15/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(961, 'Chlophedianol/Chlorcyclizine (Oral Liquid)', '1150886', 'chlophedianol', 'c588736a-250b-4fc6-b221-b4b51052b032', '3/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(962, 'Chlophedianol/Chlorpheniramine/Phenylephrine (Oral Liquid)', '1150886', 'chlophedianol', 'c032041e-fa67-4ef8-aa5a-82d5b0432178', '4/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(963, 'Chlophedianol/Chlorpheniramine/Phenylephrine (Oral Pill)', '1150886', 'chlophedianol', '7c682422-a719-4b96-a7f4-a5733d655e38', '3/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(964, 'Chlophedianol/Dexbrompheniramine (Oral Liquid)', '1150886', 'chlophedianol', 'd046f4ba-5753-4ed5-a924-0b66fd116781', '10/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(965, 'Chlophedianol/Dexbrompheniramine/Pseudoephedrine (Oral Liquid)', '1150886', 'chlophedianol', '43610aaa-8b94-40d5-ae09-3d75bd2317c8', '4/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(966, 'Chlophedianol/Dexchlorpheniramine/Pseudoephedrine (Oral Liquid)', '1150886', 'chlophedianol', '8c34580b-fd41-4710-91dc-bdcbefa63cf0', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(967, 'Chlophedianol/guaiFENesin (Oral Liquid)', '1150886', 'chlophedianol', '1021efb8-27c6-42f7-b3ae-84b6cb056569', '11/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(968, 'Chlophedianol/guaiFENesin/Phenylephrine (Oral Liquid)', '1150886', 'chlophedianol', '2e4abee4-58dc-45b7-a91c-68dea307c327', '10/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(969, 'Chlophedianol/Phenylephrine/Pyrilamine (Oral Liquid)', '1150886', 'chlophedianol', 'c767a626-a3ce-490c-a511-00749784acab', '2/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(970, 'Chlophedianol/Pseudoephedrine (Oral Liquid)', '1150886', 'chlophedianol', 'cd95ea40-5461-4435-bec1-979a66d62944', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(971, 'Chlophedianol/Pyrilamine (Oral Liquid)', '1150886', 'chlophedianol', 'e2bca40f-9c27-ec8b-2ff0-ef9847ba2037', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(972, 'Chlophedianol/Thonzylamine (Oral Liquid)', '1150886', 'chlophedianol', 'd219ff56-bf03-4a5f-9100-7c6d07c972dd', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(973, 'CHLOR-TRIMETON (Oral Pill)', '1192710', 'Chlorpheniramine', '883a0a71-c9fb-44fd-9f2c-591d7e17c973', '7/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(974, 'Chlorambucil (Oral Pill)', '1390051', 'Chlorambucil', '967ed3ff-d99b-41e8-b768-dfb586d3d9a6', '6/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(975, 'Chloramphenicol (Injectable)', '990069', 'Chloramphenicol', '08c16a42-1ad4-400f-b1b0-75303eb86713', '9/13/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(976, 'Chloramphenicol (Ophthalmic)', '990069', 'Chloramphenicol', '698aaa0a-9fd3-40c2-ec93-0dc2170a75ba', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(977, 'CHLORAPREP ONE-STEP (Topical)', '1790812', 'Chlorhexidine', '8a4da72e-47bc-454b-b020-f23dcd4bb692', '9/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(978, 'CHLORASEPTIC (Oral Lozenge)', '917006', 'Benzocaine', '7c161a17-cf82-4de3-8348-888c040df0f9', '4/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(979, 'CHLORASEPTIC MAX SPRAY (Mucosal)', '961145', 'Glycerin', '882c940c-b3c3-4aa4-8d64-e4260f066ff4', '3/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(980, 'CHLORASEPTIC SORE THROAT (Oral Lozenge)', '917006', 'Benzocaine', '5815a5e4-9b84-43bc-bbf3-4b85596e43d6', '11/17/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(981, 'CHLORASEPTIC SORE THROAT + COUGH (Oral Lozenge)', '917006', 'Benzocaine', '6b1a50d0-be54-4fcb-b5e2-b47abf3555c0', '11/16/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(982, 'CHLORASEPTIC SPRAY (Mucosal)', '923540', 'phenol', 'a197fab2-70ce-4a6c-9add-29d7368a75c5', '3/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(983, 'Chlorcyclizine/Codeine (Oral Liquid)', '990413', 'chlorcyclizine', 'aa5a37d5-1ab7-40a4-a25f-2094bb46bfe3', '9/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(984, 'Chlorcyclizine/Codeine/Pseudoephedrine (Oral Liquid)', '990413', 'chlorcyclizine', '9d1d42e4-9d69-4360-a057-81f909133880', '1/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(985, 'Chlorcyclizine/Phenylephrine (Chewable)', '990413', 'chlorcyclizine', '70f9d9c5-6204-4ddc-be82-d6c9e59d70e5', '11/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(986, 'Chlorcyclizine/Phenylephrine (Oral Liquid)', '990413', 'chlorcyclizine', '5585cf36-d7e7-40ce-982e-e8c6a58e85d1', '1/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(987, 'Chlorcyclizine/Pseudoephedrine (Oral Liquid)', '990413', 'chlorcyclizine', '4e1bd76c-3fd8-4372-907f-6b799d67cfbb', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(988, 'Chlorcyclizine/Pseudoephedrine (Oral Pill)', '990413', 'chlorcyclizine', 'ccedbc38-2479-4c35-9f86-a9f29bcfab3f', '1/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(989, 'chlordiazePOXIDE (Oral Pill)', '990678', 'Chlordiazepoxide', 'b11a0582-eb80-4d60-914e-dc8e84177869', '2/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(990, 'chlordiazePOXIDE/Clidinium (Oral Pill)', '990678', 'Chlordiazepoxide', 'e8e41a74-6816-4b9a-9905-d072e6e4cfa8', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(991, 'Chlorhexidine (Implant)', '1790812', 'Chlorhexidine', 'c40ab6ac-8987-42d2-a95b-95fbfd3b0162', '3/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(992, 'Chlorhexidine (Mouthwash)', '1790812', 'Chlorhexidine', '8d90c38e-e241-4f73-877d-ff314408a510', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(993, 'Chlorhexidine (Soap)', '1790812', 'Chlorhexidine', 'ef5ed5db-2787-4d4a-90d9-09b9740c882a', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(994, 'Chlorhexidine (Topical)', '1790812', 'Chlorhexidine', 'dfdaa646-0ef5-4433-b8d3-39ec139827b9', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(995, 'Chlorhexidine/Isopropyl Alcohol (Topical)', '1790812', 'Chlorhexidine', 'ea4d9094-1aca-4c0f-a67d-7276a9fd591b', '9/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(996, 'CHLOROMAG (Injectable)', '19092849', 'Magnesium Chloride', '30f8b0f5-d601-4ed6-8463-20746db78d94', '7/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(997, 'CHLOROMYCETIN (Ophthalmic)', '990069', 'Chloramphenicol', '698aaa0a-9fd3-40c2-ec93-0dc2170a75ba', '11/17/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(998, 'Chloroprocaine (Injectable)', '19049410', 'chloroprocaine', 'ec4ab877-878f-4b0e-3eb6-106a606479ad', '9/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(999, 'Chloroquine (Oral Pill)', '1792515', 'Chloroquine', '56f3380c-9411-417a-a3f7-fe4025900c75', '3/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1000, 'Chlorothiazide (Injectable)', '992590', 'Chlorothiazide', '5b5d8a97-1428-4047-8e6c-b778429a26e4', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1001, 'Chloroxylenol (Soap)', '949459', 'chloroxylenol', 'b4493ad6-e1c8-4b2d-8a57-1845589b04f9', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1002, 'Chloroxylenol (Topical)', '949459', 'chloroxylenol', '9ba4c1a7-e397-44a2-979e-ad2b794bd1fe', '9/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1003, 'Chloroxylenol/Hydrocortisone/Pramoxine (Otic)', '949459', 'chloroxylenol', 'ae998218-7f49-46cf-9898-0920572b6fd1', '9/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1004, 'Chlorpheniramine (Oral Liquid)', '1192710', 'Chlorpheniramine', '3065bc51-c210-483b-876d-14a4d060bdec', '9/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1005, 'Chlorpheniramine (Oral Pill)', '1192710', 'Chlorpheniramine', '883a0a71-c9fb-44fd-9f2c-591d7e17c973', '7/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1006, 'Chlorpheniramine/Codeine (Oral Liquid)', '1192710', 'Chlorpheniramine', 'acc21b1e-729c-4004-820f-5edbde869458', '10/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1007, 'Chlorpheniramine/Codeine/Pseudoephedrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '6ca7c4ff-ba0d-490f-b8b8-9518955424e1', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1008, 'Chlorpheniramine/Dextromethorphan (Oral Liquid)', '1192710', 'Chlorpheniramine', 'becb4025-b63e-f2ea-9d11-d51fdf4e5c13', '10/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1009, 'Chlorpheniramine/Dextromethorphan (Oral Pill)', '1192710', 'Chlorpheniramine', 'de7d5d7e-415f-4ae4-9f53-fa5bef790154', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1010, 'Chlorpheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '12e5b41b-6a30-456c-9242-45fe7e9e45d8', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1011, 'Chlorpheniramine/Dextromethorphan/Pseudoephedrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '63fdf19e-f467-4873-8cbf-da2e5e2cdc0b', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1012, 'Chlorpheniramine/HYDROcodone (Oral Liquid)', '1192710', 'Chlorpheniramine', '47dae0e8-065f-4722-a1c1-4763e25e14d4', '3/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1013, 'Chlorpheniramine/HYDROcodone/Pseudoephedrine (Oral Liquid)', '1192710', 'Chlorpheniramine', '5ab09c98-cb39-43be-b306-5eff3c31b563', '1/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1014, 'Chlorpheniramine/Ibuprofen/Pseudoephedrine (Oral Pill)', '1192710', 'Chlorpheniramine', 'ecd6ea11-8b34-01b4-cbd9-901ba7a8f6e2', '2/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1015, 'Chlorpheniramine/Methscopolamine (Oral Liquid)', '1192710', 'Chlorpheniramine', '9aca3d25-d042-479b-a00e-63be5b5073fe', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1016, 'Chlorpheniramine/Phenylephrine (Oral Liquid)', '1192710', 'Chlorpheniramine', 'bf5c4a23-9581-4b84-a75b-e17e1d768970', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1017, 'Chlorpheniramine/Phenylephrine (Oral Pill)', '1192710', 'Chlorpheniramine', '58e7d1e6-080c-4aa3-ad02-e93288db6007', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1018, 'Chlorpheniramine/Phenylephrine/Pyrilamine (Oral Liquid)', '1192710', 'Chlorpheniramine', '8728160d-6172-4f4e-b512-46f5d9bca733', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1019, 'Chlorpheniramine/Pseudoephedrine (Oral Pill)', '1192710', 'Chlorpheniramine', '7cd8f7f3-c262-4f7c-bcaf-068be2c952f9', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1020, 'chlorproMAZINE (Oral Pill)', '794852', 'Chlorpromazine', 'd2f1cc4b-eaf7-4a76-819e-f5168f22a5de', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1021, 'chlorproPAMIDE (Oral Pill)', '1594973', 'Chlorpropamide', 'baa54287-8065-da1a-f19e-ce8daf61bd01', '5/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1022, 'Chlorthalidone (Oral Pill)', '1395058', 'Chlorthalidone', 'bb7112ae-3a37-4525-8c7f-c0f4100ffc0a', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1023, 'Chlorthalidone/cloNIDine (Oral Pill)', '1395058', 'Chlorthalidone', '79a0f78a-bd88-4657-8b51-e24a64a270b6', '2/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1024, 'Chlorzoxazone (Oral Pill)', '795113', 'Chlorzoxazone', '3b91e3ba-1eb6-4297-9d1b-28d87b36a5b3', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1025, 'Cholecalciferol (Oral Pill)', '19095164', 'Cholecalciferol', 'fdec1f4d-8ede-42ff-882d-406154911127', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1026, 'Cholecalciferol/Folic Acid (Oral Pill)', '19095164', 'Cholecalciferol', '7bc8730c-38cf-4bae-b8f2-da92751a551c', '11/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1027, 'Cholestyramine Resin (Oral Liquid)', '19095309', 'Cholestyramine Resin', '362ddd91-a63f-4ec6-841a-75785dd208c8', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1028, 'Cholic Acid (Oral Pill)', '44506782', 'Cholic Acid', 'e5b67402-8550-4604-97a0-c7b149fbf753', '4/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1029, 'Chondroitin Sulfates/Glucosamine/Methylsulfonylmethane (Oral Pill)', '1395573', 'Chondroitin Sulfates', '67916a8f-5000-4b2b-bf8c-47d2e014176b', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1030, 'CHOOZ (Chewable)', '19035704', 'Calcium Carbonate', 'b2dd2047-e00b-410f-a7ee-74e9c365d4a8', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1031, 'Chorionic Gonadotropin (Injectable)', '1563600', 'Chorionic Gonadotropin', 'dc604794-6dd6-43a7-85fa-2f04ed325c33', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1032, 'Chromic chloride (Injectable)', '19049877', 'chromic chloride', '6c6d8d3b-fd30-4cbc-a988-92cc73d0414c', '9/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1033, 'Chromic chloride/Copper Sulfate/Manganese sulfate/Zinc Sulfate (Injectable)', '19049877', 'chromic chloride', '5ee6a685-3c35-467b-8d4d-79efdd0bfa8e', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1034, 'CIALIS (Oral Pill)', '1336926', 'tadalafil', '1da40b7c-c96a-45d2-a3f2-fafad429afd6', '3/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1035, 'CICLODAN (Topical)', '950098', 'ciclopirox', '346422b8-003d-4c4f-8a92-1e9146c13732', '6/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1036, 'Ciclopirox (Shampoo)', '950098', 'ciclopirox', 'b44b190b-8e2a-4937-a6c5-92f37911e7f8', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1037, 'Ciclopirox (Topical)', '950098', 'ciclopirox', '4439cb3d-6825-4558-a981-122ec15f7b05', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1038, 'Cidofovir (Injectable)', '1745072', 'Cidofovir', '56541229-8c1a-4550-8951-2415ed08e7e9', '6/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1039, 'Cilastatin/Imipenem (Injectable)', '1797258', 'Cilastatin', '4b652048-d5e1-48d1-acd4-091c14d9022d', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1040, 'Cilostazol (Oral Pill)', '1350310', 'cilostazol', '20a05739-46a6-47ca-ae61-4341d028460e', '3/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1041, 'CILOXAN (Ophthalmic)', '1797513', 'Ciprofloxacin', '614af481-f9ef-44ac-9cb8-f421660d9cdd', '7/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1042, 'Cimetidine (Oral Liquid)', '997276', 'Cimetidine', 'f2ec923a-2b88-43c0-ac2a-7ae20c053039', '9/1/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1043, 'Cimetidine (Oral Pill)', '997276', 'Cimetidine', 'ad3e8f6a-8e35-42c2-a98c-566a2868e923', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1044, 'Cinacalcet (Oral Pill)', '1548111', 'cinacalcet', '4cb2ad7a-c70d-4647-bc4d-bac9b5d13b92', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1045, 'CIPRO HC (Otic)', '1797513', 'Ciprofloxacin', '70b19501-34b6-4f95-a8dd-dd3e67d22399', '9/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1046, 'CIPRODEX (Otic)', '1797513', 'Ciprofloxacin', '1c4db12f-285b-4714-9b1c-26bcdc39cebf', '11/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1047, 'Ciprofloxacin (Ophthalmic)', '1797513', 'Ciprofloxacin', '11f56251-d913-4986-9dba-c2e4df8a3822', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1048, 'Ciprofloxacin (Oral Liquid)', '1797513', 'Ciprofloxacin', 'f8f4461c-c9fa-451b-ba24-b080c8bfc2d7', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1049, 'Ciprofloxacin (Oral Pill)', '1797513', 'Ciprofloxacin', '178dc379-e2b8-4b47-9f0c-3fc7fb435c36', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1050, 'Ciprofloxacin (Otic)', '1797513', 'Ciprofloxacin', 'd0125acf-1879-452d-ba29-c0f753653789', '9/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1051, 'Ciprofloxacin/Dexamethasone (Otic)', '1797513', 'Ciprofloxacin', '0ed518de-4ae1-43d1-84ff-26872d9e6a0f', '11/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1052, 'Ciprofloxacin/Hydrocortisone (Otic)', '1797513', 'Ciprofloxacin', '598288ca-256a-4b9e-91e0-829f02cb8cd3', '9/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1053, 'Cisatracurium (Injectable)', '19015726', 'Cisatracurium', 'f78a07e2-0d3b-4460-b29e-8c10c90afbda', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1054, 'CISplatin (Injectable)', '1397599', 'Cisplatin', '64975f5d-0eca-4998-8a72-06eec98285eb', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1055, 'Citalopram (Oral Pill)', '797617', 'Citalopram', '6c96373f-6744-49d4-aec5-3720bc993fab', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1056, 'Citric Acid/Gluconolactone/Magnesium carbonate (Irrigation)', '950435', 'Citric Acid', 'bdb3cef8-79c4-4322-9a21-c13123abe0cc', '3/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1057, 'Citric Acid/Glucose/Sodium citrate (Injectable)', '950435', 'Citric Acid', '22805f0d-ba58-41ea-b245-19980abcda22', '6/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1058, 'Citric Acid/Potassium citrate (Oral Liquid)', '950435', 'Citric Acid', '93cca32a-d173-4d27-b493-9d8cfd1b7978', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1059, 'Citric Acid/Potassium citrate/Sodium citrate (Oral Liquid)', '950435', 'Citric Acid', 'eb0bade0-fc86-4bfa-90cc-f0d5f7b4d3a8', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1060, 'Citric Acid/Sodium Bicarbonate (Effervescent)', '950435', 'Citric Acid', '672106ae-9e27-4173-b7b7-1f5494643673', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1061, 'Citric Acid/Sodium citrate (Oral Liquid)', '950435', 'Citric Acid', '5c8b16fa-023a-4e10-a3a2-8ad79a19f24c', '8/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1062, 'CITROMA (Oral Liquid)', '967861', 'magnesium citrate', 'af276471-c5d7-4326-8ba2-cf546ab50f77', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1063, 'CITRUCEL (Oral Liquid)', '905371', 'Methylcellulose', '9d5f2244-a610-4d45-b6e8-e79bb17a558f', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1064, 'CITRUCEL (Oral Pill)', '905371', 'Methylcellulose', 'd27f6742-2dcc-451e-b803-6ffe183038ec', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1065, 'Cladosporium cladosporioides extract (Injectable)', '40167025', 'Cladosporium cladosporioides extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1066, 'Cladosporium herbarum extract (Injectable)', '40161203', 'Cladosporium herbarum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1067, 'Cladribine (Injectable)', '19054825', 'Cladribine', 'a2592a9b-bca6-4a5a-89c2-855a0634d5fe', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1068, 'CLARAVIS (Oral Pill)', '984232', 'Isotretinoin', 'ee862463-77c0-4694-bba8-97274f13963f', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1069, 'CLARINEX (Oral Pill)', '1103006', 'desloratadine', 'b7b0b1a0-2ab3-4697-bee4-0cd7fd5088b9', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1070, 'CLARIS (Soap)', '1036252', 'Sulfacetamide', '7045e1e0-de48-4cc4-862d-f5c7a9b693b9', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1071, 'Clarithromycin (Oral Liquid)', '1750500', 'Clarithromycin', '2e899f4a-a2e9-445c-a0ed-6ad811e997e6', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1072, 'Clarithromycin (Oral Pill)', '1750500', 'Clarithromycin', '185422f8-12f8-4bcf-b5da-57544e6528f0', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1073, 'CLARITIN (Oral Disintegrating)', '1107830', 'Loratadine', '7dc04b48-f053-4e4b-a493-9e8286d2a791', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1074, 'CLARITIN (Oral Liquid)', '1107830', 'Loratadine', '1fdeaf8b-6c6b-7033-e054-00144ff8d46c', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1075, 'CLARITIN (Oral Pill)', '1107830', 'Loratadine', '660ac9df-f1b1-4c89-94dd-9fae0a013f3c', '11/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1076, 'CLARUS (Topical)', '902950', 'Tolnaftate', '7e8897ff-67d1-4336-866e-cb76a36edddc', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1077, 'CLEAN AND CLEAR ADVANTAGE ACNE CLEANSER (Soap)', '964407', 'Salicylic Acid', '20a9ba99-1d86-4edb-a0f5-f5df16d142f0', '11/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1078, 'CLEAN AND CLEAR ADVANTAGE MARK TREATMENT (Topical)', '964407', 'Salicylic Acid', 'd39c2906-97d7-4b85-bb36-68e5f086935a', '7/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1079, 'CLEAN AND CLEAR ADVANTAGE POPPED PIMPLE RELIEF (Topical)', '964407', 'Salicylic Acid', 'c3852160-2a19-442b-8118-4579edf0afe9', '3/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1080, 'CLEAN AND CLEAR BLACKHEAD ERASER (Topical)', '964407', 'Salicylic Acid', 'c33ac045-a8e4-4171-a6f4-ecb5829ee004', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1081, 'CLEAN AND CLEAR DEEP CLEANING (Topical)', '964407', 'Salicylic Acid', 'd61db0ce-11f2-42f4-b975-b623872c786e', '5/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1082, 'CLEAR EYES COMPLETE (Ophthalmic)', '902251', 'hypromellose', '9a1ce5e2-c3da-424d-b754-cf2de8c655e3', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1083, 'CLEAR EYES COOLING COMFORT (Ophthalmic)', '961145', 'Glycerin', 'a710be3f-fa5b-46a6-87b5-5a4d1f807e1c', '4/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1084, 'CLEAR EYES NATURAL TEARS (Ophthalmic)', '948856', 'Polyvinyl Alcohol', 'efba3eb0-798d-4635-b19b-4970e45b3cc9', '11/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1085, 'CLEAR EYES REDNESS RELIEF REFORMULATED NOV 2011 (Ophthalmic)', '961145', 'Glycerin', 'a26ef66e-2def-4c98-9959-d40d4cfe3108', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1086, 'CLEARASIL (Topical)', '918172', 'Benzoyl Peroxide', '6158ced9-cd3a-41b2-809e-9aec2ba90d33', '11/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1087, 'CLEARASIL ACNE CONTROL (Soap)', '964407', 'Salicylic Acid', 'ebe4669e-0387-47b2-9778-eb7c04a1c9f9', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1088, 'CLEARASIL ACNE CONTROL (Topical)', '964407', 'Salicylic Acid', 'c19ea241-9952-4251-bb4d-2db521bead94', '11/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1089, 'CLEARCANAL (Otic)', '958999', 'carbamide peroxide', '0ef2be5b-cc39-48ae-b5c5-e787464dea08', '3/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1090, 'CLEARLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'ee30489a-8683-4403-8f85-76434242663c', '5/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1091, 'Clemastine (Oral Liquid)', '1197677', 'Clemastine', '3e403ca1-0c23-4af6-bfac-50187d8d4653', '6/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1092, 'Clemastine (Oral Pill)', '1197677', 'Clemastine', '5243fbe1-e45d-4673-86bf-6f8454d36f39', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1093, 'CLENIA (Topical)', '1036252', 'Sulfacetamide', '4089ba41-7b16-4fc3-b160-470b426a21ec', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1094, 'CLEOCIN (Injectable)', '997881', 'Clindamycin', '7741156f-b98f-4975-a7e3-1c7d508a6a14', '10/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1095, 'CLEOCIN (Oral Liquid)', '997881', 'Clindamycin', '1ef87b6c-9d32-44ac-8c55-8bf01424cc45', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1096, 'CLEOCIN (Vaginal)', '997881', 'Clindamycin', 'c72f21f8-c81a-4e4c-9c98-ed46a57b3343', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1097, 'CLINDACIN (Topical)', '997881', 'Clindamycin', '288371ef-96b6-4ce3-9be1-1d9d309b400c', '2/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1098, 'CLINDAMAX (Topical)', '997881', 'Clindamycin', '2ceee427-50d3-4bfe-8ccf-9efb11a90fb7', '10/9/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1099, 'Clindamycin (Injectable)', '997881', 'Clindamycin', 'bd1c1648-4733-4233-8337-469fe11bd0cb', '7/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1100, 'Clindamycin (Oral Liquid)', '997881', 'Clindamycin', 'e1cb8caa-1e49-41e7-bbd8-a2e75bea2fe4', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1101, 'Clindamycin (Oral Pill)', '997881', 'Clindamycin', '63a0466c-af7d-4696-a950-19b73b55a65a', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1102, 'Clindamycin (Topical)', '997881', 'Clindamycin', '64c28c73-5a2a-4bb0-bcec-9948463a9c8f', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1103, 'Clindamycin (Vaginal)', '997881', 'Clindamycin', '706dd0b6-367c-4950-88fe-7a6c0661c2b9', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1104, 'Clindamycin/Tretinoin (Topical)', '997881', 'Clindamycin', '78c329f9-f0c9-486d-9e54-0123699fb9e1', '11/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1105, 'CLINPRO 5000 (Toothpaste)', '19069022', 'Sodium Fluoride', 'a20d3cf0-2e1f-4191-971e-9e47936b4580', '1/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1106, 'Clioquinol/Hydrocortisone (Topical)', '980867', 'Clioquinol', 'b1f875e9-a95b-47ff-80cc-54a2d7a2c08c', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1107, 'Clobetasol (Shampoo)', '998415', 'Clobetasol', 'a4f82a4c-bc7e-4927-936e-add854812559', '6/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1108, 'Clobetasol (Topical)', '998415', 'Clobetasol', '976d9c90-1800-4dac-9b92-48284b29d2b9', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1109, 'CLOBEX (Topical)', '998415', 'Clobetasol', 'a086ead1-b906-4198-af19-5423957c9e2a', '2/24/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1110, 'Clocortolone (Topical)', '950882', 'clocortolone', '1b20b467-1b29-45de-b00e-4228812444f6', '5/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1111, 'CLODAN (Shampoo)', '998415', 'Clobetasol', '4150d579-eb8b-46cd-b044-352807894e1a', '6/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1112, 'CLODERM (Topical)', '950882', 'clocortolone', '4abc01f2-03d4-43d5-a085-f452443cfca2', '5/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1113, 'Clofarabine (Injectable)', '19054821', 'clofarabine', '55d3c78b-dca5-436b-97b5-73d166217415', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1114, 'CLOFERA (Oral Liquid)', '1150886', 'chlophedianol', 'cd95ea40-5461-4435-bec1-979a66d62944', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1115, 'CLOLAR (Injectable)', '19054821', 'clofarabine', '55d3c78b-dca5-436b-97b5-73d166217415', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1116, 'clomiPHENE (Oral Pill)', '1598819', 'Clomiphene', '53eff40f-37b1-47b1-a9b8-c22360855f18', '4/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1117, 'clomiPRAMINE (Oral Pill)', '798834', 'Clomipramine', '4c32971e-feb3-4388-9cd6-d1f99f258b0d', '7/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1118, 'clonazePAM (Oral Disintegrating)', '798874', 'Clonazepam', '26b1d362-e727-49db-9e81-ee80ca97795c', '7/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1119, 'clonazePAM (Oral Pill)', '798874', 'Clonazepam', '79a3305b-be80-416f-a346-5a907f7b669e', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1120, 'cloNIDine (Injectable)', '1398937', 'Clonidine', 'f6798f73-b5a6-434b-a627-aa102b123dd5', '10/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1121, 'cloNIDine (Oral Pill)', '1398937', 'Clonidine', 'e6583ff5-0e03-470b-a986-35770aa0e80b', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1122, 'Clopidogrel (Oral Pill)', '1322184', 'clopidogrel', '8b84d00e-9aac-4da2-b9aa-17e5ddf9b922', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1123, 'Clorazepate (Oral Pill)', '790253', 'clorazepate', 'b8fbc985-62a5-4bc2-b9b8-0451926e86de', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1124, 'CLORPACTIN WCS-90 (Topical)', '1719061', 'oxychlorosene', '6b3b2d67-4142-4a98-9a73-fb107b19a636', '3/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1125, 'CLORPRES (Oral Pill)', '1395058', 'Chlorthalidone', '79a0f78a-bd88-4657-8b51-e24a64a270b6', '2/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1126, 'Clotrimazole (Oral Lozenge)', '1000632', 'Clotrimazole', '7464e883-6286-4f04-ae38-b7ddc3fec754', '4/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1127, 'Clotrimazole (Topical)', '1000632', 'Clotrimazole', 'b4d9cde8-bf6d-470b-9b5c-29f8e680157e', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1128, 'Clotrimazole (Vaginal)', '1000632', 'Clotrimazole', '2970c5f2-282e-4b22-8e24-331c959f0e3e', '4/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1129, 'cloZAPine (Oral Liquid)', '800878', 'Clozapine', '693cb9d4-39db-4ecf-9eae-b01f06f8d5d1', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1130, 'cloZAPine (Oral Pill)', '800878', 'Clozapine', '0cf63b13-48b2-4b07-b241-617725b52f6b', '9/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1131, 'CLOZARIL (Oral Pill)', '800878', 'Clozapine', '0cf63b13-48b2-4b07-b241-617725b52f6b', '9/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1132, 'Coal Tar (Shampoo)', '1000995', 'Coal Tar', '1c18fde9-d39b-4339-8f62-3f352d450291', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1133, 'Coal Tar (Topical)', '1000995', 'Coal Tar', '1e32ccda-6760-489b-83ef-f7759d0c044e', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1134, 'Coal Tar/Salicylic Acid (Shampoo)', '1000995', 'Coal Tar', 'd990a3d8-8be8-44e3-8e84-a6d8da21f3b5', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1135, 'Coal Tar/Salicylic Acid/Sulfur (Shampoo)', '1000995', 'Coal Tar', 'ec7873bb-288a-4671-b649-1d5d5ced6476', '7/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1136, 'Coast live oak pollen extract (Injectable)', '40161565', 'coast live oak pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1137, 'Cobicistat (Oral Pill)', '42874220', 'cobicistat', '3784c35c-e87f-410c-900b-8fd6313c6010', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1138, 'Cobicistat/Elvitegravir/Emtricitabine/Tenofovir disoproxil (Oral Pill)', '42874220', 'cobicistat', '74ae2a93-b267-444c-8f0f-a2a6522260ee', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1139, 'Cocaine (Topical)', '1001419', 'Cocaine', '24faa247-fe12-4574-881d-445b078b3e87', '6/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1140, 'Cochliobolus sativus extract (Injectable)', '40161182', 'Cochliobolus sativus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1141, 'Cocoa butter/Phenylephrine (Rectal)', '951112', 'cocoa butter', 'cfb1d1d9-d45d-4ead-bd73-48456dcff3df', '7/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1142, 'Cocoa butter/Phenylephrine/Shark liver oil (Rectal)', '951112', 'cocoa butter', '2504b132-20cf-4b7e-8074-407c1adbdb19', '10/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1143, 'Cocoa butter/Zinc Oxide (Rectal)', '951112', 'cocoa butter', '5516f800-d3fa-4b90-a3eb-c0bdf3183b9b', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1144, 'CODAR AR (Oral Liquid)', '1192710', 'Chlorpheniramine', 'acc21b1e-729c-4004-820f-5edbde869458', '6/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1145, 'CODAR GF (Oral Liquid)', '1201620', 'Codeine', '6eda2c06-fb11-4a58-98fb-4eafe1d1df5f', '6/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1146, 'Codeine (Oral Liquid)', '1201620', 'Codeine', '3b04ed3f-1a3d-4e8f-b91b-216c63d40b88', '7/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1147, 'Codeine (Oral Pill)', '1201620', 'Codeine', '5819bdf7-300e-45b8-8f3a-447b53656293', '6/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1148, 'Codeine/Dexbrompheniramine/Pseudoephedrine (Oral Liquid)', '1201620', 'Codeine', '9f8fc672-3589-498d-82a7-e243f4e0dec0', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1149, 'Codeine/guaiFENesin (Oral Liquid)', '1201620', 'Codeine', 'fe126254-6ee6-48c3-965c-96e4276a5314', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1150, 'Codeine/guaiFENesin/Pseudoephedrine (Oral Liquid)', '1201620', 'Codeine', '48a209ca-7f1b-4b66-9e49-943f0e7605a3', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1151, 'Codeine/Phenylephrine (Oral Liquid)', '1201620', 'Codeine', 'e2d73253-1777-4993-b693-323f0450c1c4', '3/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1152, 'Codeine/Phenylephrine/Promethazine (Oral Liquid)', '1201620', 'Codeine', 'c09ba689-4377-4946-b8b0-5f64d5e90d07', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1153, 'Codeine/Promethazine (Oral Liquid)', '1201620', 'Codeine', '47d4eb4f-6dd4-44b9-aea1-19c4bfc1d425', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1154, 'Codeine/Pseudoephedrine/Pyrilamine (Oral Liquid)', '1201620', 'Codeine', 'f11abf48-ec05-44d6-9057-1c81a433efbd', '6/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1155, 'Codeine/Pseudoephedrine/Triprolidine (Oral Liquid)', '1201620', 'Codeine', 'dd62a5eb-dd5a-4329-8696-07acb555af10', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1156, 'CODRIX (Oral Pill)', '1125315', 'Acetaminophen', '632c566c-39fb-4321-ac56-aea83780fa02', '6/2/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1157, 'COLACE (Oral Pill)', '941258', 'Docusate', '7793fced-e8ee-44e2-b212-dd2a59a5f462', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1158, 'Colchicine (Oral Pill)', '1101554', 'Colchicine', 'cb5f9d85-6b81-49f8-bcd6-17b7bfbc10f2', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1159, 'COLCRYS (Oral Pill)', '1101554', 'Colchicine', 'a0688f33-f00f-4a68-abc3-73ec887a471a', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1160, 'Colesevelam (Oral Liquid)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', '2/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1161, 'Colesevelam (Oral Pill)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', '2/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1162, 'COLESTID (Oral Granules)', '1501617', 'Colestipol', '21b37725-fc0c-4365-a7dc-1a473d42502d', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1163, 'Colestipol (Oral Granules)', '1501617', 'Colestipol', '21b37725-fc0c-4365-a7dc-1a473d42502d', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1164, 'Colestipol (Oral Pill)', '1501617', 'Colestipol', 'fa6c3e11-84e9-433d-aa74-7cd34336bbed', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1165, 'Colistin (Injectable)', '901845', 'Colistin', 'ab241809-0d2f-44ba-829c-26be67ee623f', '2/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1166, 'Colistin/Hydrocortisone/Neomycin/THONZONIUM (Otic)', '901845', 'Colistin', '317cc880-73fe-4561-897e-41489108b3ba', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1167, 'COLLAGENASE (Topical)', '980311', 'COLLAGENASE', 'a7bf0341-49ff-4338-a339-679a3f3f953d', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1168, 'Colloidal oatmeal (Topical)', '986261', 'Colloidal oatmeal', '9f211875-4ffb-493d-a011-40c3a2b86615', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1169, 'COLOCORT (Rectal)', '975125', 'Hydrocortisone', 'a5b47406-b933-4f6b-96dc-db837bcccf77', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1170, 'COLY MYCIN M (Injectable)', '901845', 'Colistin', '6d6e13e2-dc33-4b7b-84d0-66146a57c552', '4/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1171, 'COLY MYCIN S (Otic)', '901845', 'Colistin', '317cc880-73fe-4561-897e-41489108b3ba', '2/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1172, 'COMBIGAN (Ophthalmic)', '915542', 'brimonidine', 'feaf1480-a4b8-4486-992a-96be3a596243', '11/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1173, 'COMBIVIR (Oral Pill)', '1704183', 'Lamivudine', '16da660b-9981-4d24-a14a-94c7744fce4f', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1174, 'COMETRIQ (Oral Pill)', '43012292', 'cabozantinib', '1a0c3bea-c87b-4d25-bb44-5f0174da6b34', '12/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1175, 'Common sagebrush pollen extract (Injectable)', '40161598', 'common sagebrush pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1176, 'COMPAZINE (Oral Pill)', '752061', 'Prochlorperazine', 'a8c5db51-e8b2-4594-8b05-aaa78ca0682d', '4/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1177, 'COMPAZINE (Rectal)', '752061', 'Prochlorperazine', '9bdba30b-53b4-427a-af74-7a39b52130b2', '8/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1178, 'COMPLERA (Oral Pill)', '1703069', 'emtricitabine', '54c8bec2-d565-489c-8d7c-afd3cdf78df5', '3/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1179, 'COMTAN (Oral Pill)', '782211', 'entacapone', '95976f1d-1b36-4f08-a98f-36d5d7883d7b', '7/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1180, 'CONGESTAC (Oral Pill)', '1163944', 'Guaifenesin', '03d29b11-deba-3727-e054-00144ff8d46c', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1181, 'CONSTULOSE (Oral Liquid)', '987245', 'Lactulose', '461ec39f-eeb4-4460-9b5c-62367d47162b', '4/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1182, 'CONTAC COLD AND FLU NON DROWSY MAXIMUM STRENGTH (Oral Pill)', '1125315', 'Acetaminophen', '8ed2df70-fdb1-11e3-a3ac-0800200c9a66', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1183, 'CONTROL RX (Toothpaste)', '19069022', 'Sodium Fluoride', 'b334c974-055f-458f-bac0-c28372be53c3', '2/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1184, 'Cootamundra wattle pollen extract (Injectable)', '40169140', 'Cootamundra wattle pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1185, 'Copper Sulfate (Injectable)', '19057346', 'Copper Sulfate', '941ad1e2-6052-4df4-8cfe-5af4a99703e4', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1186, 'CORDRAN (Topical)', '956266', 'Flurandrenolide', 'a0949773-c75f-4ef0-a69c-1abd978340d0', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1187, 'COREG (Oral Pill)', '1346823', 'carvedilol', 'fdb12700-116b-4203-8d74-9a94b9401fe6', '10/28/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1188, 'CORGARD (Oral Pill)', '1313200', 'Nadolol', 'c2e709d2-96a2-41ea-b5e9-9ce4ccb91f59', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1189, 'CORICIDIN HBP CHEST CONGESTION (Oral Pill)', '1119510', 'Dextromethorphan', 'e33f2319-2181-46db-a094-3e874b324c0a', '3/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1190, 'CORICIDIN HBP COLD & FLU (Oral Pill)', '1125315', 'Acetaminophen', '763a5334-a741-4678-9947-603776622450', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1191, 'CORICIDIN HBP COUGH AND COLD (Oral Pill)', '1192710', 'Chlorpheniramine', 'ee666963-e686-4374-b52b-a677f1cd4114', '5/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1192, 'CORMAX (Topical)', '998415', 'Clobetasol', '29735bf2-e08e-4f60-a640-0e3b9ccca80f', '7/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1193, 'Corn pollen extract (Injectable)', '40161610', 'corn pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1194, 'Cornstarch/Kaolin/Zinc Oxide (Topical)', '40230159', 'cornstarch', '5654facc-ad51-4501-a505-9c0b2035e653', '9/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1195, 'CORTAID (Topical)', '975125', 'Hydrocortisone', 'f3f31285-4dde-4708-b715-6da36a4f2a14', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1196, 'CORTEF (Oral Pill)', '975125', 'Hydrocortisone', '9ce19944-dd88-4a7b-84ca-b07f4ec23bad', '8/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1197, 'CORTENEMA (Rectal)', '975125', 'Hydrocortisone', 'a307448a-ccc4-41a8-977a-11f28f0bded9', '3/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1198, 'CORTICOOL (Topical)', '975125', 'Hydrocortisone', 'ad772e39-02c1-4995-bd8e-46fa63be2c5a', '11/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1199, 'Corticotropin (Injectable)', '1541079', 'Corticotropin', '7b48ddec-e815-45f4-9ca0-5c0daaf56f30', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1200, 'CORTIFOAM (Rectal)', '975125', 'Hydrocortisone', '36f623df-2ae3-4858-9783-c058097951f4', '6/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1201, 'Cortisone (Oral Pill)', '1507705', 'Cortisone', '5d59b43c-f10d-463f-92df-6171d02b7a45', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1202, 'CORTISPORIN (Topical)', '975125', 'Hydrocortisone', 'e86a5293-312d-4425-bf95-35e4d7149aed', '4/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1203, 'CORTISPORIN OINTMENT (Topical)', '915175', 'Bacitracin', '097a7a8d-04d4-4736-c8b7-0796117457bf', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1204, 'CORTISPORIN-TC (Otic)', '901845', 'Colistin', '0869fd8d-6dd7-4dc2-b33c-20d72dc47718', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1205, 'CORTIZONE-10 (Topical)', '975125', 'Hydrocortisone', 'c0dccf64-44fd-4cbf-a9cd-50b3150ee205', '4/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1206, 'CORTOMYCIN (Otic)', '975125', 'Hydrocortisone', '41cfa382-d4ae-43c5-83a5-1ecc635d109b', '12/2/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1207, 'CORTOMYCIN OINTMENT (Ophthalmic)', '915175', 'Bacitracin', '7c50e7f2-1208-4f19-9807-4ab0dd314d3b', '12/2/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1208, 'CORTROSYN (Injectable)', '19008009', 'Cosyntropin', '746856e9-3930-4f6a-b8e6-a03845d6dd0b', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1209, 'COSOPT (Ophthalmic)', '981709', 'dorzolamide', '06c062ca-add7-4ddf-ba7c-7b5dd531e9ec', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1210, 'Cosyntropin (Injectable)', '19008009', 'Cosyntropin', '39af194b-c854-4abf-893a-a47856fe42a1', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1211, 'COUMADIN (Injectable)', '1310149', 'Warfarin', 'c0f238ff-2804-4150-9766-22a5111b4e74', '1/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1212, 'COUMADIN (Oral Pill)', '1310149', 'Warfarin', '91fa852c-b43d-4a55-983b-74aa6827125d', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1213, 'COZAAR (Oral Pill)', '1367500', 'Losartan', '9199238d-8b24-4ca8-bd24-c200853416f6', '10/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1214, 'CREOMULSION (Oral Liquid)', '1119510', 'Dextromethorphan', '0e810cf2-fdb9-4d32-be57-8046318fb029', '1/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1215, 'CREON (Oral Pill)', '919204', 'Amylases', '45b9a46b-3294-4604-8aea-60624d663020', '5/29/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1216, 'Cresol/Formaldehyde (Irrigation)', '19087223', 'Cresol', '6989bddc-910e-47e6-aa8f-619a330e81b8', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1217, 'CREST MOUTHWASH (Mouthwash)', '989301', 'Cetylpyridinium', '41dc2d29-376d-4e8e-84c0-acf0e6ad1205', '9/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1218, 'CRESTOR (Oral Pill)', '1510813', 'rosuvastatin', '4f2f91bb-f119-4e29-8499-f36f436707b3', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1219, 'CRITIC-AID CLEAR (Topical)', '907879', 'Miconazole', 'cbc5d976-850a-476e-b179-b7a5a8675524', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1220, 'CRITIC-AID CLEAR MOISTURE (Topical)', '19033354', 'Petrolatum', '0b6da97e-519b-4579-9895-f4ede5c48b47', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1221, 'CRITIC-AID SKIN (Paste)', '911064', 'Zinc Oxide', 'caaac1f0-437d-4185-8670-9f11b9cefe63', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1222, 'CRIXIVAN (Oral Pill)', '1711523', 'Indinavir', '01c5574c-1056-49c6-af20-e950db3f4139', '6/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1223, 'Cromolyn (Inhalant)', '1152631', 'Cromolyn', '8fe37a7a-edd6-4733-bb7e-e01c1906aeba', '9/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1224, 'Cromolyn (Ophthalmic)', '1152631', 'Cromolyn', '5d8ed6be-ecc9-4e26-b6c1-4eaef46c0fa7', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1225, 'Cromolyn (Oral Liquid)', '1152631', 'Cromolyn', '169a439e-aa20-4cdf-bbe0-6b17934e8355', '6/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1226, 'Crotamiton (Topical)', '969276', 'crotamiton', '56465446-7f78-4ad1-acb3-08a4d60e5715', '2/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1227, 'Cultivated oat pollen extract (Injectable)', '40161642', 'cultivated oat pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1228, 'Cultivated rye grass pollen extract (Injectable)', '40228147', 'cultivated rye grass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1229, 'Cupric oxide/Folic Acid/Niacinamide/Zinc Oxide (Oral Pill)', '19073229', 'Cupric oxide', '91d306d7-ef63-4f35-84a4-36e8469eac98', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1230, 'CUPRIMINE (Oral Pill)', '19028050', 'Penicillamine', '80e736d3-2017-4d68-94b4-38255c3c59c6', '8/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1231, 'CUTIVATE (Topical)', '1149380', 'fluticasone', '9953df12-a2b4-4d22-b204-746fc29f7a5f', '3/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1232, 'CUVPOSA (Oral Liquid)', '963353', 'Glycopyrrolate', 'd200bd44-9856-4104-a29e-a4cca3db6737', '6/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1233, 'CYANOKIT (Injectable)', '1377023', 'Hydroxocobalamin', '416c7978-5661-6e63-6546-6f7265766572', '8/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1234, 'Cyclobenzaprine (Oral Pill)', '778711', 'cyclobenzaprine', '54a6b01c-5a7c-4710-93fa-69fd2c2549e3', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1235, 'Cyclobenzaprine/Magnesium Oxide (Oral Pill)', '778711', 'cyclobenzaprine', 'c2b6213c-3397-42cf-8080-59d6a5c31d0a', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1236, 'CYCLOGYL (Ophthalmic)', '910232', 'Cyclopentolate', '1d008c76-7210-4ace-90fa-7cd22762e12e', '8/5/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1237, 'CYCLOMYDRIL (Ophthalmic)', '910232', 'Cyclopentolate', '8268b70f-3f10-48dd-bb24-baaeb27a1325', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1238, 'Cyclopentolate (Ophthalmic)', '910232', 'Cyclopentolate', '0504a84a-0ba4-483b-9682-9bf3818410ee', '2/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1239, 'Cyclopentolate/Phenylephrine (Ophthalmic)', '910232', 'Cyclopentolate', '8268b70f-3f10-48dd-bb24-baaeb27a1325', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1240, 'Cyclophosphamide (Injectable)', '1310317', 'Cyclophosphamide', '591d9955-3d9c-4cdc-a308-2f1288376b9f', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1241, 'Cyclophosphamide (Oral Pill)', '1310317', 'Cyclophosphamide', '15d30249-4714-4b13-b8ca-5dff38424282', '5/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1242, 'cycloSERINE (Oral Pill)', '1710446', 'Cycloserine', '0071f9f3-a29b-4ba6-9555-69f672501cbc', '9/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1243, 'cycloSPORINE (Oral Pill)', '19010482', 'Cyclosporine', 'a8e29b54-e4ab-4bb9-ab6c-e4414a3f025b', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1244, 'CYMBALTA (Oral Pill)', '715259', 'duloxetine', '67927928-c20f-4e12-a327-d26561d7810a', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1245, 'Cyproheptadine (Oral Liquid)', '1110727', 'Cyproheptadine', '54686520-506f-7765-7220-436f736d6963', '8/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1246, 'Cyproheptadine (Oral Pill)', '1110727', 'Cyproheptadine', 'f90faaa3-f40f-4653-8fb8-144d61c6b1d4', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1247, 'CYSTADANE (Oral Liquid)', '1520218', 'Betaine', '05964dae-8b84-467c-af97-c82706a3cad2', '5/17/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1248, 'Cysteamine (Oral Pill)', '910888', 'Cysteamine', 'b7b6e290-5168-46dc-9e7f-5995420ec1c1', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1249, 'Cysteine (Injectable)', '19010955', 'Cysteine', '85669228-2bb1-4095-b90e-a467d357b9bb', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1250, 'Cytarabine (Injectable)', '1311078', 'Cytarabine', 'ee6decae-7e1b-45cf-b2d0-c15946d8fa1f', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1251, 'Cytarabine liposome (Injectable)', '40175460', 'Cytarabine liposome', '9d05d299-b9b0-4bf6-95cf-904dcc4e1f84', '1/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1252, 'CYTOGAM (Injectable)', '586491', 'cytomegalovirus immune globulin', 'd72d56e3-1f27-4ec1-a49d-7c0f8f5bc512', '12/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1253, 'Cytomegalovirus immune globulin (Injectable)', '586491', 'cytomegalovirus immune globulin', 'd72d56e3-1f27-4ec1-a49d-7c0f8f5bc512', '12/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1254, 'CYTOMEL (Oral Pill)', '1505346', 'Triiodothyronine', '248d01a9-a79a-474a-b244-49b24e5b9873', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1255, 'CYTOTEC (Oral Pill)', '1150871', 'Misoprostol', '04c42f2b-d049-4892-b003-bdf346cb4ab4', '8/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1256, 'CYTOVENE (Injectable)', '1757803', 'Ganciclovir', '38e8f819-985c-4d20-aafd-3ba953af26ca', '8/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1257, 'Dabigatran etexilate (Oral Pill)', '40228152', 'dabigatran etexilate', '5db7f199-8752-4d24-85f7-e34ca8f4d02e', '4/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1258, 'Dabrafenib (Oral Pill)', '43532299', 'dabrafenib', '803beaaa-33f9-48cc-9a95-c2e887e095b4', '2/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1259, 'Dacarbazine (Injectable)', '1311409', 'Dacarbazine', 'b6b97e41-5f15-498c-abfb-d8443ea4d216', '2/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1260, 'DACOGEN (Injectable)', '19024728', 'decitabine', 'acaf6e50-7cd3-4431-98ef-d1c07e3ed8c2', '10/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1261, 'DALIRESP (Oral Pill)', '40236897', 'Roflumilast', 'c9a1d0a8-581f-4f91-a2b8-f419192d0ebf', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1262, 'DALLERGY DROPS (Oral Liquid)', '1192710', 'Chlorpheniramine', 'd7ef44ce-626d-41b3-8114-98d2ce1ae31a', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1263, 'DALLERGY REFORMULATED MAR 2014 (Oral Liquid)', '990413', 'chlorcyclizine', '16353978-488f-4248-908a-ad03eee60cbf', '6/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1264, 'DALLERGY REFORMULATED MAR 2014 (Oral Pill)', '990413', 'chlorcyclizine', 'f567b8ff-d476-4e14-838e-8f62467790cf', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1265, 'DALLERGY REFORMULATED NOV 2011 (Chewable)', '990413', 'chlorcyclizine', '70f9d9c5-6204-4ddc-be82-d6c9e59d70e5', '11/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1266, 'DALLERGY REFORMULATED NOV 2011 (Oral Liquid)', '990413', 'chlorcyclizine', '5585cf36-d7e7-40ce-982e-e8c6a58e85d1', '1/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1267, 'Dalteparin (Injectable)', '1301065', 'Dalteparin', '23527b8b-9b28-4e6d-9751-33b143975ac7', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1268, 'DANTRIUM (Injectable)', '711714', 'Dantrolene', '4df35098-8702-46be-ac67-30cfdf1aa570', '5/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1269, 'DANTRIUM (Oral Pill)', '711714', 'Dantrolene', '57b4eec1-49e1-432c-95ae-0fe36e32d64b', '10/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1270, 'Dantrolene (Injectable)', '711714', 'Dantrolene', '8f7b3ac0-604d-4c78-b545-5e0f8ea3d698', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1271, 'Dantrolene (Oral Pill)', '711714', 'Dantrolene', '57b4eec1-49e1-432c-95ae-0fe36e32d64b', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1272, 'Dapagliflozin (Oral Pill)', '44785829', 'dapagliflozin', 'fc6ae30e-868b-4ac9-b69d-900922503998', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1273, 'Dapsone (Oral Pill)', '1711759', 'Dapsone', 'aec21561-42bd-4706-86e6-ff0e1e915079', '9/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1274, 'DAPTOmycin (Injectable)', '1786617', 'Daptomycin', 'e33053a5-38cd-4a34-8566-208f94f55714', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1275, 'DARAPRIM (Oral Pill)', '1760039', 'Pyrimethamine', '5368616d-6520-6f6e-2053-686b72656c69', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1276, 'Dark leaved mugwort pollen extract (Injectable)', '40170722', 'dark leaved mugwort pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1277, 'Darunavir (Oral Pill)', '1756831', 'darunavir', '69b6f72d-fe6b-4347-8801-99ece7e2a29b', '5/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1278, 'DARVON-N (Oral Pill)', '1153664', 'Propoxyphene', 'c6c48eee-240b-4425-8691-35462523652e', '1/25/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1279, 'Dasatinib (Oral Pill)', '1358436', 'dasatinib', '0e7f054c-7a27-4192-bd1c-6115d8be858f', '6/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1280, 'Daunorubicin Liposomal (Injectable)', '19051599', 'Daunorubicin Liposomal', 'bf2b4eaf-5227-42d9-af78-88d921e565f6', '5/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1281, 'DAUNOXOME (Injectable)', '19051599', 'Daunorubicin Liposomal', 'bf2b4eaf-5227-42d9-af78-88d921e565f6', '5/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1282, 'DAYHIST-1 (Oral Pill)', '1197677', 'Clemastine', '1257b2e0-4ae6-4aab-b1f3-c93fd70116c6', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1283, 'DAYPRO (Oral Pill)', '1118045', 'oxaprozin', '755ca241-0d01-41ba-a735-e37365352a71', '1/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1284, 'DDAVP (Injectable)', '1517070', 'desmopressin', '651f6fee-a2c7-431b-8d5d-58b156c72244', '3/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1285, 'DDAVP (Nasal)', '1517070', 'desmopressin', '95e53e87-2d52-4e37-93ea-89f440938f7a', '7/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1286, 'DDAVP (Oral Pill)', '1517070', 'desmopressin', '1bb9b8d5-eed6-45cb-b1b9-e43d3ee6fecd', '9/4/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1287, 'DEBACTEROL (Mucosal)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1288, 'DEBACTEROL (Topical)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1289, 'DEBROX (Otic)', '958999', 'carbamide peroxide', '755d3234-2df4-4464-a2c5-b04276065fc5', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1290, 'DECARA (Oral Pill)', '19095164', 'Cholecalciferol', '3822c324-e22a-4ac4-ac1c-9b63983b516a', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1291, 'DECAVAC (Injectable)', '529303', '"diphtheria toxoid vaccine, inactivated"', 'f7faec1c-046f-45c9-b9c0-ef65d377ba87', '4/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1292, 'Decitabine (Injectable)', '19024728', 'decitabine', '0b9599e8-9018-42ee-b247-e2a944c36510', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1293, 'DECONEX (Oral Pill)', '1163944', 'Guaifenesin', '51c84f58-f1b9-4fa8-916b-78c6eec61861', '3/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1294, 'Deferiprone (Oral Pill)', '19011091', 'deferiprone', 'dc8cbc3d-026c-0db5-42e8-8e93d374dd23', '4/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1295, 'Deferoxamine (Injectable)', '1711947', 'Deferoxamine', 'a7174843-5965-49fc-b842-f7eff7b48bbc', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1296, 'DELATESTRYL (Injectable)', '1636780', 'Testosterone', '67e2cc36-a379-11dc-8314-0800200c9a66', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1297, 'Delavirdine (Oral Pill)', '1747157', 'Delavirdine', '992306f0-c612-41dd-a4df-35d1fd360033', '7/7/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1298, 'DELSYM COUGH PLUS CHEST CONGESTION DM (Oral Liquid)', '1119510', 'Dextromethorphan', '8252cdec-b668-4450-b045-e093479ab542', '11/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1299, 'DELSYM COUGH RELIEF PLUS SOOTHING ACTION (Oral Lozenge)', '1119510', 'Dextromethorphan', 'cac708a5-af6c-4c60-beb4-32e792f588c5', '7/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1300, 'DELSYM NIGHT TIME COUGH AND COLD REFORMULATED JAN 2012 (Oral Liquid)', '1125315', 'Acetaminophen', 'f8437225-5e77-4dae-82f5-e706f7965c53', '12/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1301, 'DELTASONE (Oral Pill)', '1551099', 'Prednisone', '18bebd56-4848-32ae-e054-00144ff88e88', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1302, 'DEMADEX (Injectable)', '942350', 'torsemide', 'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', '2/16/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1303, 'DEMADEX (Oral Pill)', '942350', 'torsemide', 'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', '2/16/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1304, 'Demeclocycline (Oral Pill)', '1714527', 'Demeclocycline', '4ff23e3b-e111-47fd-9776-1d89d6da049b', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1305, 'DEMEROL (Injectable)', '1102527', 'Meperidine', '53ddfe26-5a7e-4f39-8904-829a03538f63', '12/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1306, 'DEMEROL (Oral Pill)', '1102527', 'Meperidine', '6c2b41c3-732c-477f-8790-0eecea43b2da', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1307, 'DEMSER (Oral Pill)', '1401581', 'Metyrosine', '32fb2f2f-34b5-4cd5-9145-c3ab37c5ca92', '3/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1308, 'DENAVIR (Topical)', '981654', 'penciclovir', '8d119057-f299-43ea-b516-e84a09cab890', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1309, 'DENDRACIN NEURODENDRAXCIN (Topical)', '939881', 'Capsaicin', '05742cd5-ece2-4007-bdf0-46b76d23df74', '2/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1310, 'Denileukin diftitox (Injectable)', '19051642', 'denileukin diftitox', '42dfffb1-d0f3-42d5-944c-64f092fc436e', '3/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1311, 'DENTA 5000 PLUS (Toothpaste)', '19069022', 'Sodium Fluoride', '00b09487-043e-4e8c-badd-116dc56eef15', '7/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1312, 'DENTICARE DENTI FOAM (Oral Foam)', '19069022', 'Sodium Fluoride', 'c92bb4ea-e7e0-49ec-8329-2cc215c35ab8', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1313, 'DENTICARE DENTI FREEZE GEL (Oral Gel)', '917006', 'Benzocaine', '8489b2e8-4647-4838-88b9-817b59ef83b0', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1314, 'DENTICARE DENTI FREEZE OINTMENT (Oral Ointment)', '917006', 'Benzocaine', '522754bc-5d11-48b1-99fd-1edcf3cd13fc', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1315, 'DENTICARE NEUTRAL (Mouthwash)', '19069022', 'Sodium Fluoride', '1da64824-9389-4109-bea9-b91600caf023', '7/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1316, 'DENTICARE PRO GEL (Oral Gel)', '19069022', 'Sodium Fluoride', 'b4dbb9f5-4355-4d85-ae8b-a46e4fb2af78', '4/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1317, 'Deoxycorticosterone (Injectable)', '19017895', 'Deoxycorticosterone', '5e9f71f1-09d4-4313-ad66-5cfffe428ba8', '7/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1318, 'DEPAKOTE (Oral Pill)', '745466', 'Valproate', 'd3f7c414-db83-4a7a-a7aa-745c5606cdba', '5/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1319, 'DEPO-ESTRADIOL (Injectable)', '1548195', 'Estradiol', '9a4229fd-fecd-4ac1-9c4f-6d442533457f', '8/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1320, 'DEPO-MEDROL (Injectable)', '1506270', 'Methylprednisolone', '823b0010-2b57-4e76-b5ac-4a8c2963438f', '5/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1321, 'DEPO-PROVERA (Injectable)', '1500211', 'Medroxyprogesterone', '2425f944-15d7-4b84-95a0-6538e843f130', '10/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1322, 'DEPO-TESTOSTERONE (Injectable)', '1636780', 'Testosterone', 'fe808a56-7542-4d23-97b4-d98a3ef63016', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1323, 'DEPOCYT (Injectable)', '40175460', 'Cytarabine liposome', '9d05d299-b9b0-4bf6-95cf-904dcc4e1f84', '1/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1324, 'DEPODUR (Injectable)', '19112635', 'Morphine Liposomal', 'cc8f105c-c8ee-4c57-86ee-ee6bf917cf78', '1/31/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1325, 'DERMA GRAN (Topical)', '985247', 'Aluminum Hydroxide', '464bdaf6-e64b-401f-9d14-f6148bb16653', '11/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1326, 'DERMA-SMOOTHE FS (Topical)', '996541', 'fluocinolone', 'bc61c619-a71c-46f5-80f1-9e9ee71134aa', '8/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1327, 'DERMACORT (Topical)', '975125', 'Hydrocortisone', 'a0962a88-8a49-414c-aecf-db94ec033f16', '11/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1328, 'DERMAREST ECZEMA (Topical)', '975125', 'Hydrocortisone', '0292ab62-5088-45fa-a056-70c2fcc19ef7', '5/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1329, 'DERMAREST PSORIASIS (Topical)', '964407', 'Salicylic Acid', 'aa786552-9ed8-41ef-aa20-0ac254555c41', '5/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1330, 'DERMASORB AF (Topical)', '980867', 'Clioquinol', 'b1f875e9-a95b-47ff-80cc-54a2d7a2c08c', '12/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1331, 'DERMASORB HC (Topical)', '975125', 'Hydrocortisone', 'eaaf8c06-6aac-4488-a4be-2f8912e30363', '11/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1332, 'DERMASORB TA (Topical)', '903963', 'Triamcinolone', '5b1d1510-118f-4b82-9119-386d572971d2', '12/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1333, 'DERMASORB XM (Topical)', '906914', 'Urea', '95e5f86e-897b-4ef9-a514-6b003387f84c', '11/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1334, 'DERMATOP (Topical)', '928110', 'prednicarbate', 'ccc7985a-da29-475f-8a53-0f76ba20b86d', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1335, 'DERMAZENE (Topical)', '975125', 'Hydrocortisone', 'cc657bc6-31db-47cb-970d-796d77ccf0ed', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1336, 'DERMOPLAST ANTIBACTERIAL (Topical)', '916802', 'Benzethonium', '2fbb256e-6b36-4923-b57d-58575f5abf2e', '5/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1337, 'DERMOPLAST PAIN (Topical)', '917006', 'Benzocaine', '0648c46c-a3db-4b82-971b-50a46098ac7e', '5/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1338, 'DERMOTIC (Otic)', '996541', 'fluocinolone', 'd2ffb64b-1614-4e2f-8125-9660ea3754f2', '3/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1339, 'DESENEX (Topical)', '907879', 'Miconazole', 'c2ec4973-07d6-480f-b47a-ac57b4b703f1', '12/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1340, 'DESFERAL (Injectable)', '1711947', 'Deferoxamine', 'a7174843-5965-49fc-b842-f7eff7b48bbc', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1341, 'Desflurane (Inhalant)', '19002770', 'desflurane', '7f977eb6-c7c4-4dc5-ab3b-07414dbe5da5', '3/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1342, 'Desipramine (Oral Pill)', '716968', 'Desipramine', '7500ac1b-a1ca-46ed-8f4e-5998310c676e', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1343, 'DESITIN (Topical)', '911064', 'Zinc Oxide', 'bee0ed35-a0ca-45d4-9fed-b890369e323e', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1344, 'Desloratadine (Oral Disintegrating)', '1103006', 'desloratadine', '84b20dcb-e15b-44a2-b692-1eea5adb996e', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1345, 'Desloratadine (Oral Pill)', '1103006', 'desloratadine', '91ce2b02-8f8e-4929-a962-b8f88a40b70a', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1346, 'Desmopressin (Injectable)', '1517070', 'desmopressin', 'fd7672cb-4c15-403c-8e04-68369ad9bb77', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1347, 'Desmopressin (Nasal)', '1517070', 'desmopressin', 'c9e4aedb-27d6-4499-9245-93937d3a375f', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1348, 'Desmopressin (Oral Pill)', '1517070', 'desmopressin', '7a26b415-77cd-4b2f-9c76-fa52d2eb6be6', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1349, 'Desogestrel/Ethinyl Estradiol (Oral Pill)', '1588000', 'Desogestrel', 'fed687f4-1ffa-49ec-92c9-4d09de17a833', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1350, 'DESONATE (Topical)', '917205', 'Desonide', '8d7c46ed-e6c3-465b-be3d-16ecab43a9e7', '8/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1351, 'Desonide (Topical)', '917205', 'Desonide', 'a7e5f030-b849-4805-94e6-f45631eaa37f', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1352, 'DESOWEN (Topical)', '917205', 'Desonide', 'a7e5f030-b849-4805-94e6-f45631eaa37f', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1353, 'Desoximetasone (Topical)', '917336', 'Desoximetasone', '950f08b4-467f-4f01-ab99-834cac94875e', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1354, 'DESOXYN (Oral Pill)', '704053', 'Methamphetamine', 'f03a68d5-ed00-8a2d-af68-28be909ea85f', '3/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1355, 'DESPEC REFORMULATED JUN 2008 (Oral Liquid)', '1163944', 'Guaifenesin', '5e7c3fe6-ea77-4472-8a4c-4a015ad01fd5', '5/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1356, 'DESQUAM (Soap)', '918172', 'Benzoyl Peroxide', '0e775c30-7294-4e99-bcc5-3b3b01a62fc5', '6/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1357, 'DETROL (Oral Pill)', '913782', 'tolterodine', 'fa938543-29b3-46ce-a176-5563bc8f2f80', '8/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1358, 'DEWEES CARMINATIVE (Oral Liquid)', '908464', 'magnesium carbonate', '163bceeb-ca74-413e-88b9-5c7bc9bbeb0d', '3/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1359, 'Dexamethasone (Injectable)', '1518254', 'Dexamethasone', '685c33e5-c6e0-4717-b3bb-4c2cd0fcb063', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1360, 'Dexamethasone (Ophthalmic)', '1518254', 'Dexamethasone', '863fb43c-dd33-485b-9385-744db7a98b83', '12/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1361, 'Dexamethasone (Oral Liquid)', '1518254', 'Dexamethasone', 'a817ab46-54ec-4e3f-886b-04ce6ac1caf9', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1362, 'Dexamethasone (Oral Pill)', '1518254', 'Dexamethasone', '428cc7bb-e0f9-466c-b38f-11ac22cda752', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1363, 'Dexamethasone/Neomycin/Polymyxin B (Ophthalmic)', '1518254', 'Dexamethasone', '449a6fd8-c2ac-40d0-b74a-e5c7fc6670f3', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1364, 'Dexamethasone/Tobramycin (Ophthalmic)', '1518254', 'Dexamethasone', '1b6887e4-9deb-494a-939d-49ce77ef2c1b', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1365, 'Dexbrompheniramine (Chewable)', '1188052', 'dexbrompheniramine', 'f0b90cc2-901c-4498-b892-d8883182b6fd', '8/13/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1366, 'Dexbrompheniramine (Oral Pill)', '1188052', 'dexbrompheniramine', '0d203b5c-8b10-428b-8703-17be6b4ce6eb', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1367, 'Dexbrompheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', '1188052', 'dexbrompheniramine', 'a3b34f38-87da-4a38-ac73-66d28cc8647e', '1/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1368, 'Dexbrompheniramine/Phenylephrine (Oral Liquid)', '1188052', 'dexbrompheniramine', '16353978-488f-4248-908a-ad03eee60cbf', '6/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1369, 'Dexbrompheniramine/Phenylephrine (Oral Pill)', '1188052', 'dexbrompheniramine', 'f567b8ff-d476-4e14-838e-8f62467790cf', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1370, 'Dexbrompheniramine/Pseudoephedrine (Oral Pill)', '1188052', 'dexbrompheniramine', '82f9f52c-797e-4842-9c9a-40213181d99a', '6/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1371, 'Dexchlorpheniramine (Oral Liquid)', '1188114', 'dexchlorpheniramine', '1950f4d6-7fc2-44cd-9f7d-1359315353fc', '9/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1372, 'Dexchlorpheniramine/Phenylephrine (Oral Pill)', '1188114', 'dexchlorpheniramine', 'c1d6e914-74cc-4cdf-9587-7eaaa4a386e5', '4/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1373, 'Dexchlorpheniramine/Pseudoephedrine (Oral Liquid)', '1188114', 'dexchlorpheniramine', '93e0411b-68c2-4b5c-aa74-b1d94b5b2206', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1374, 'Dexchlorpheniramine/Pseudoephedrine (Oral Pill)', '1188114', 'dexchlorpheniramine', '9d08d801-6cca-4a1c-ab53-5979f16e3110', '3/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1375, 'DEXEDRINE (Oral Pill)', '719311', 'Dextroamphetamine', '9ee6fd99-88ea-4cea-8370-a8945581325f', '3/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1376, 'DEXFERRUM (Injectable)', '1381661', 'Iron-Dextran Complex', '77f5ae2a-8cd3-4f01-bddd-8158f932c8db', '4/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1377, 'DEXILANT (Oral Pill)', '19039926', 'dexlansoprazole', 'd62d754e-2310-4912-b022-603ae925710d', '2/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1378, 'Dexlansoprazole (Oral Pill)', '19039926', 'dexlansoprazole', 'd62d754e-2310-4912-b022-603ae925710d', '2/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1379, 'Dexmedetomidine (Injectable)', '19061088', 'Dexmedetomidine', 'c1b8eb58-596b-481d-beb6-ba9d2237abf4', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1380, 'Dexmethylphenidate (Oral Pill)', '731533', 'dexmethylphenidate', '07efe5d5-9857-490a-9a31-9dd07ea9386e', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1381, 'Dexpanthenol (Injectable)', '988294', 'dexpanthenol', '0ed47f4b-5182-40b7-a440-9e7b06819d95', '9/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1382, 'Dexpanthenol/Niacinamide/Riboflavin/Thiamine/Vitamin B6 (Injectable)', '988294', 'dexpanthenol', '282ccec8-9bcd-4571-9b91-bbb96ef2620d', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1383, 'Dexrazoxane (Injectable)', '1353011', 'Dexrazoxane', '77702d60-d1ea-4e4c-a837-aaa813b66064', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1384, 'Dextran 70/Hypromellose (Ophthalmic)', '1319156', 'Dextran 70', '9dba4117-a6e1-40ef-ab9e-b2f21e032766', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1385, 'Dextran 70/Polyethylene Glycol 400/Povidone/Tetrahydrozoline (Ophthalmic)', '1319156', 'Dextran 70', '593d1899-6c87-4366-9c1b-9f6933598b8a', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1386, 'Dextroamphetamine (Oral Liquid)', '719311', 'Dextroamphetamine', '7658071e-ee2c-4d23-94ce-1906959ec036', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1387, 'Dextroamphetamine (Oral Pill)', '719311', 'Dextroamphetamine', 'd6394df5-f2c9-47eb-b57e-f3e9cfd94f84', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1388, 'Dextroamphetamine XR (Oral Pill)', '719311', 'Dextroamphetamine', '669a308e-ce09-4ac8-84d9-ee252c5d3223', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1389, 'Dextromethorphan (Oral Liquid)', '1119510', 'Dextromethorphan', '4edc0605-25fc-4a66-8f68-798d1d71446b', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1390, 'Dextromethorphan (Oral Lozenge)', '1119510', 'Dextromethorphan', '00ad5b08-5371-4a2f-be49-4254106d7f64', '12/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1391, 'Dextromethorphan (Oral Pill)', '1119510', 'Dextromethorphan', '76118c4c-3008-4173-b114-a8a5553243e3', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1392, 'Dextromethorphan XR (Oral Liquid)', '1119510', 'Dextromethorphan', '5d12a1b8-f1fb-41ca-9a4f-0595a585cbb5', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1393, 'Dextromethorphan/Doxylamine (Oral Liquid)', '1119510', 'Dextromethorphan', 'd26d12d6-b44a-4f33-bf8b-bc0f9c55d2fe', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1394, 'Dextromethorphan/Doxylamine/Pseudoephedrine (Oral Liquid)', '1119510', 'Dextromethorphan', '784843f7-2d13-4831-a50d-d109a371966d', '7/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1395, 'Dextromethorphan/guaiFENesin (Oral Granules)', '1119510', 'Dextromethorphan', '98679846-e383-4341-96a7-7df2a35ca5ff', '11/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1396, 'Dextromethorphan/guaiFENesin (Oral Liquid)', '1119510', 'Dextromethorphan', '6cbf83f6-cbf4-4e5b-a383-6d71124547bc', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1397, 'Dextromethorphan/guaiFENesin (Oral Pill)', '1119510', 'Dextromethorphan', '64797c73-2a3b-4cff-9311-c0eb663872c2', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1398, 'Dextromethorphan/guaiFENesin/Phenylephrine (Oral Liquid)', '1119510', 'Dextromethorphan', 'f8c86c63-281b-40dc-9f64-ba88961bd906', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1399, 'Dextromethorphan/guaiFENesin/Phenylephrine (Oral Pill)', '1119510', 'Dextromethorphan', '5fd655a8-f298-4d35-80df-933c165568aa', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1400, 'Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Liquid)', '1119510', 'Dextromethorphan', '18b42a89-22b9-46d6-9a08-8642b7bbca5e', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1401, 'Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Pill)', '1119510', 'Dextromethorphan', '18043cd4-1062-6059-e054-00144ff88e88', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1402, 'Dextromethorphan/Menthol (Oral Lozenge)', '1119510', 'Dextromethorphan', 'cac708a5-af6c-4c60-beb4-32e792f588c5', '5/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1403, 'Dextromethorphan/Phenylephrine (Oral Liquid)', '1119510', 'Dextromethorphan', '20e45243-3989-413a-bcf1-49d754ff2e44', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1404, 'Dextromethorphan/Phenylephrine/Pyrilamine (Oral Liquid)', '1119510', 'Dextromethorphan', '3b5ca328-d462-490d-a28d-8a1a47299668', '3/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1405, 'Dextromethorphan/Phenylephrine/Pyrilamine (Oral Pill)', '1119510', 'Dextromethorphan', '480b04c4-40ee-41d7-842b-d53ba074dcb8', '5/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1406, 'Dextromethorphan/Phenylephrine/Thonzylamine (Oral Liquid)', '1119510', 'Dextromethorphan', 'd1c74d4c-71bb-4934-9a4e-556366c07fca', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1407, 'Dextromethorphan/Phenylephrine/Triprolidine (Oral Liquid)', '1119510', 'Dextromethorphan', '836d062c-29f0-4fd7-b65c-771a3bbd52c4', '3/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1408, 'Dextromethorphan/Promethazine (Oral Liquid)', '1119510', 'Dextromethorphan', 'c13f5f93-d291-4d0d-80fe-44dba4c5401e', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1409, 'DHE-45 (Injectable)', '1126557', 'Dihydroergotamine', 'aec0308f-f583-4e27-9bb8-21800bde7faa', '1/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1410, 'DHS ZINC (Shampoo)', '944360', 'zinc pyrithione', '62e13b0d-2455-46c2-bff3-1aa88b092327', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1411, 'DI-DAK-SOL (Topical)', '44784806', 'Hypochlorite', 'fdf5975e-20fa-41e4-8cd6-3d1d7c7b2d2c', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1412, 'DIABETIC TUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'e70bcb6c-6ffb-474f-b388-7a6c8cc8c146', '11/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1413, 'DIAMODE (Oral Pill)', '991876', 'Loperamide', '069e7979-a223-4819-b6cf-ea2731bf156b', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1414, 'Diazepam (Injectable)', '723013', 'Diazepam', '0fb9bdfb-4d92-483e-acfe-4c9b2a84441c', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1415, 'Diazepam (Oral Liquid)', '723013', 'Diazepam', '78d5a77d-5ca7-4f16-b4d0-fce86456593c', '3/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1416, 'Diazepam (Oral Pill)', '723013', 'Diazepam', '66ea2936-8b6c-4b72-b077-ecf88e83fee7', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1417, 'Diazoxide (Oral Liquid)', '1523280', 'Diazoxide', 'b16c7832-2fd9-49af-b923-1dc0d91fd6e2', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1418, 'Dibasic potassium phosphate/Potassium phosphate (Injectable)', '19076714', 'Dibasic potassium phosphate', 'e7d6dfe1-d8ad-4daf-9c6a-5f42e3e19138', '7/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1419, 'Dibucaine (Rectal)', '923840', 'Dibucaine', 'bcf33951-d3a4-46c5-b208-56adc0011047', '1/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1420, 'Dibucaine (Topical)', '923840', 'Dibucaine', 'fc11a231-1d2f-42ba-8ece-34495a14ab44', '9/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1421, 'Diclofenac (Ophthalmic)', '1124300', 'Diclofenac', '980b3b80-44cb-44b5-89cc-d451a3b20ae3', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1422, 'Diclofenac (Oral Liquid)', '1124300', 'Diclofenac', 'd7335594-50c9-4ae2-a3e3-b9a375187b62', '4/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1423, 'Diclofenac (Oral Pill)', '1124300', 'Diclofenac', '7a7e69c1-6eea-4f27-b2ed-3e5fb176fdae', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1424, 'Diclofenac (Topical)', '1124300', 'Diclofenac', '43d7d5d1-a593-4b97-ae24-f3e92be90004', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1425, 'Diclofenac/Misoprostol (Oral Pill)', '1124300', 'Diclofenac', '27ccf64c-fc2b-44d3-bf57-397417b406f8', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1426, 'Dicloxacillin (Oral Pill)', '1724666', 'Dicloxacillin', '24e821aa-85b8-4f5a-aa13-83ff132952ca', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1427, 'Dicyclomine (Oral Liquid)', '924724', 'Dicyclomine', 'd59fa254-7959-47c9-bb77-ab7946a1a127', '5/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1428, 'Dicyclomine (Oral Pill)', '924724', 'Dicyclomine', 'b8c72fd8-6030-4c0a-80a6-d36cf698a576', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1429, 'Didanosine (Oral Pill)', '1724869', 'Didanosine', '79d6a5ea-77d3-4547-aa67-1b465141b1f5', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1430, 'DIDREX (Oral Pill)', '719128', 'Benzphetamine', 'fe6d8813-25d9-4e56-84c7-ca6c3111a19a', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1431, 'Dienogest/Estradiol (Oral Pill)', '19054876', 'dienogest', '02c91fba-9c47-43ef-ac78-e82369798834', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1432, 'Diethylpropion (Oral Pill)', '725822', 'Diethylpropion', '31b58e5e-60af-4466-bd20-4b648e867e64', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1433, 'DIFFERIN (Topical)', '981774', 'adapalene', 'e616d076-9e99-46ea-b69a-585867334142', '12/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1434, 'DIFICID (Oral Pill)', '40239985', 'fidaxomicin', 'dd966338-c820-4270-b704-09ef75fa3ceb', '5/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1435, 'Diflorasone (Topical)', '960988', 'Diflorasone', '5b92dbac-3f28-4c72-b529-7455e1b7b366', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1436, 'DIFLUCAN (Oral Pill)', '1754994', 'Fluconazole', '9d45bff1-5615-4be0-8b7e-d749f919ea36', '2/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1437, 'Diflunisal (Oral Pill)', '1126128', 'Diflunisal', '3baf108a-e9c1-4a2a-8e69-34aa69af1de3', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1438, 'DIGIFAB (Injectable)', '19045317', 'digoxin antibodies Fab fragments', 'c05ee6a5-c98b-45f4-83fd-40781639d653', '7/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1439, 'DIGITEK (Oral Pill)', '1326303', 'Digoxin', 'de7843bb-2cbd-4a76-8cd7-838ed1a12826', '6/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1440, 'DIGOX (Oral Pill)', '1326303', 'Digoxin', 'd2b7a781-8ef2-482b-b359-ef47d12f3e8e', '10/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1441, 'Digoxin (Injectable)', '1326303', 'Digoxin', '58678fd6-afe3-4a4c-a37f-356444194cd6', '1/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1442, 'Digoxin (Oral Liquid)', '1326303', 'Digoxin', '7b03a2d7-f17c-4954-85c9-fb78cfec7d76', '8/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1443, 'Digoxin (Oral Pill)', '1326303', 'Digoxin', '73b5f256-f362-4206-a021-db117930ff53', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1444, 'Digoxin antibodies Fab fragments (Injectable)', '19045317', 'digoxin antibodies Fab fragments', 'c05ee6a5-c98b-45f4-83fd-40781639d653', '7/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1445, 'Dihematoporphyrin Ether (Injectable)', '19089602', 'Dihematoporphyrin Ether', 'f5fdda24-da7d-4e61-936e-9d1a55056b82', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1446, 'Dihydrocodeine/guaiFENesin (Oral Liquid)', '1189596', 'dihydrocodeine', '61e61344-bf91-4742-be57-d74b30cfa4ad', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1447, 'Dihydrocodeine/guaiFENesin/Phenylephrine (Oral Liquid)', '1189596', 'dihydrocodeine', 'a3d94294-e66b-4384-9e9a-489a98bd5964', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1448, 'Dihydroergotamine (Injectable)', '1126557', 'Dihydroergotamine', 'fe826e6a-75c8-43ed-9c36-f8263ec35aff', '1/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1449, 'Dihydroergotamine (Nasal)', '1126557', 'Dihydroergotamine', '977de209-c53a-4cb4-9f3f-1e850600a9dc', '3/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1450, 'DILANTIN (Chewable)', '740910', 'Phenytoin', '95d29970-f8ef-4799-b489-ebe2285de4de', '4/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1451, 'DILANTIN (Oral Pill)', '740910', 'Phenytoin', '0c2e0671-bb5e-4704-a242-83c5b9a0bbb0', '7/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1452, 'DILANTIN XR (Oral Pill)', '740910', 'Phenytoin', 'ecab970d-83e9-4aad-92de-dbb73d7a151f', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1453, 'DILATRATE XR (Oral Pill)', '1383925', 'Isosorbide Dinitrate', '2a4cd065-a1dd-4b88-9f7a-7ba93502f972', '11/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1454, 'DILAUDID (Injectable)', '1126658', 'Hydromorphone', 'c88f81ac-1643-4c08-ae2c-63cbe956db7e', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1455, 'DILAUDID (Oral Liquid)', '1126658', 'Hydromorphone', '3afae8b9-bb24-447a-bc7f-041c8326a438', '7/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1456, 'DILAUDID (Oral Pill)', '1126658', 'Hydromorphone', '4daba60f-af60-4c7e-916e-f2ad7e7532c5', '7/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1457, 'Diltiazem (Injectable)', '1328165', 'Diltiazem', 'f5ea3383-5da4-4219-9802-3737a2eaeef4', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1458, 'Diltiazem (Oral Pill)', '1328165', 'Diltiazem', 'a174f7b4-4b61-4f8f-b0ec-44b8eb8826e1', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1459, 'dimenhyDRINATE (Chewable)', '928744', 'Dimenhydrinate', '09936316-8667-4950-b017-19e3a05385a4', '1/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1460, 'dimenhyDRINATE (Injectable)', '928744', 'Dimenhydrinate', 'bc71539e-1a33-4709-8a24-c2894e8dbc1c', '1/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1461, 'dimenhyDRINATE (Oral Pill)', '928744', 'Dimenhydrinate', '14ccdb11-5706-4007-aa27-a60ef3f09ce7', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1462, 'Dimercaprol (Injectable)', '1728903', 'Dimercaprol', 'bee9a137-160f-47e8-a551-ca461ae4f51e', '5/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1463, 'DIMETAPP COLD (Chewable)', '1130863', 'Brompheniramine', '655b4796-6ffc-c27f-b66e-d2ae0c7ad053', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1464, 'DIMETAPP LONG ACTING COUGH PLUS COLD (Oral Liquid)', '1192710', 'Chlorpheniramine', '059a3e6e-ea98-b0c5-ba27-b7cbbdedc917', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1465, 'DIMETAPP NIGHTTIME COLD & CONGESTION (Oral Liquid)', '1129625', 'Diphenhydramine', 'df83f907-4695-7257-f503-6e92dc97a2f2', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1466, 'Dimethicone (Topical)', '916662', 'dimethicone', '3b0aacd3-348d-4d47-93c6-c56ea3b94ce7', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1467, 'Dimethicone/Menthol (Topical)', '916662', 'dimethicone', '33cc1470-f0c2-4e25-bc49-ca23e3b195f0', '9/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1468, 'Dimethicone/Menthol/Pramoxine (Topical)', '916662', 'dimethicone', '7c0f98df-6900-4fe5-abee-8378799ea754', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1469, 'Dimethicone/Miconazole/Zinc Oxide (Topical)', '916662', 'dimethicone', '4114c685-acd1-4c65-842b-1cb7840852dc', '11/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1470, 'Dimethicone/Petrolatum (Topical)', '916662', 'dimethicone', '0b5753aa-b591-4d6e-8341-fcc9456299b6', '12/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1471, 'Dimethicone/Pramoxine (Topical)', '916662', 'dimethicone', 'd5a58662-a628-4e3d-b2f9-b9c7ac12f772', '12/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1472, 'Dimethicone/Zinc Oxide (Topical)', '916662', 'dimethicone', '54d7250e-6aaa-4fc8-88b3-2fee58ebaf73', '6/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1473, 'Dimethyl Sulfoxide (Irrigation)', '928980', 'Dimethyl Sulfoxide', '58b25d79-78f2-4953-b0c6-61658dc4ef0d', '6/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1474, 'Dinoprost (Injectable)', '19029421', 'Dinoprost', '069a7c28-5442-4fb7-83a1-bcf6ce147a21', '5/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1475, 'Dinoprostone (Implant)', '1329415', 'Dinoprostone', 'f1391c7c-233e-44d8-8838-36cc12f01044', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1476, 'Dinoprostone (Vaginal)', '1329415', 'Dinoprostone', 'fae013fc-e199-43f3-86ef-66d34017c534', '10/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1477, 'DIOVAN (Oral Pill)', '1308842', 'valsartan', '9e70df98-38fe-4634-a49c-c5f0b562e0b7', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1478, 'DIOVAN HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', '1bbdcc66-c8c0-4710-a447-d12cc78b5aa8', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1479, 'DIPENTUM (Oral Pill)', '916282', 'olsalazine', '75a96561-6f52-4c11-a105-391fbbfe4827', '10/10/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1480, 'DIPHENHIST (Oral Pill)', '1129625', 'Diphenhydramine', 'ae7957ee-72b3-46f8-966c-526ac894af92', '1/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1481, 'diphenhydrAMINE (Chewable)', '1129625', 'Diphenhydramine', 'b06d03d1-3d61-4a46-91f4-5e3ad2e8b2b1', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1482, 'diphenhydrAMINE (Injectable)', '1129625', 'Diphenhydramine', '4c40fb96-819a-4e11-9500-f11cbd51fd6c', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1483, 'diphenhydrAMINE (Oral Disintegrating)', '1129625', 'Diphenhydramine', '826c5868-c9bf-42b2-a97e-2e7ae6fae057', '7/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1484, 'diphenhydrAMINE (Oral Liquid)', '1129625', 'Diphenhydramine', 'bea08963-16c9-4c27-b0d6-5734b91a3900', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1485, 'diphenhydrAMINE (Oral Pill)', '1129625', 'Diphenhydramine', 'a19f1edc-d2cf-45fc-8233-d882441b0247', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1486, 'diphenhydrAMINE (Topical)', '1129625', 'Diphenhydramine', 'baa7ae0b-dfce-4f56-a26b-5bfe31099b66', '9/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1487, 'DiphenhydrAMINE/Ibuprofen (Oral Pill)', '1129625', 'Diphenhydramine', '3cc319ee-4908-4739-887c-8c5131208368', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1488, 'DiphenhydrAMINE/Naproxen (Oral Pill)', '1129625', 'Diphenhydramine', '82891458-ab0d-459a-8602-dcebd22c3010', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1489, 'DiphenhydrAMINE/Phenylephrine (Oral Liquid)', '1129625', 'Diphenhydramine', '40ae8bfc-4007-4483-bb08-cf32f2e802c6', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1490, 'DiphenhydrAMINE/Phenylephrine (Oral Pill)', '1129625', 'Diphenhydramine', 'd5cbf5f5-746a-443c-9fa4-b3a7745d0dab', '4/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1491, 'DiphenhydrAMINE/Pramoxine (Topical)', '1129625', 'Diphenhydramine', '70c5bb8c-24d2-448b-a3b1-92c7f4754614', '12/6/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1492, 'DiphenhydrAMINE/Zinc Acetate (Topical)', '1129625', 'Diphenhydramine', '020e139a-6f0a-4c18-8169-d95e9b5dc7f4', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1493, '"Diphtheria toxoid vaccine, inactivated/Tetanus toxoid vaccine, inactivated (Injectable)"', '529303', '"diphtheria toxoid vaccine, inactivated"', 'ce88effe-7ff2-418f-acb3-3cb5d5d2bf95', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1494, 'DIPRIVAN (Injectable)', '753626', 'Propofol', 'e3105799-a4b6-f3f4-e6e2-b2b29bbdb538', '6/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1495, 'DIPROLENE (Topical)', '920458', 'Betamethasone', 'dbe069ce-f93e-4f67-bcb2-dfbb932a1f15', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1496, 'Dipyridamole (Injectable)', '1331270', 'Dipyridamole', 'c76c3c6f-c3e0-4e35-ab01-5468585e0d9d', '7/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1497, 'Dipyridamole (Oral Pill)', '1331270', 'Dipyridamole', 'dcf785b2-e923-43bf-93bb-00a9501479f4', '2/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1498, 'DISALCID (Oral Pill)', '1137460', 'Salsalate', '30371119-beaf-4ade-a9d5-12adc09f7827', '10/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1499, 'Disopyramide (Oral Pill)', '1335606', 'Disopyramide', 'f5e0c230-db38-4476-8357-9a227ccff1bc', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1500, 'Disulfiram (Oral Pill)', '735850', 'Disulfiram', 'f0ca0e1f-9641-48d5-9367-e5d1069e8680', '3/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1501, 'DIUREX (Oral Pill)', '1134439', 'Caffeine', 'e02a39f9-1c8c-4d38-b394-3f5b7062932c', '9/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1502, 'DIUREX AQUAGELS (Oral Pill)', '1172206', 'pamabrom', '22122002-c367-480b-b9f5-0504f918cc98', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1503, 'DIUREX MAX (Oral Pill)', '1172206', 'pamabrom', '37dfece3-d570-4ab2-ba95-af6eb1f3acd4', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1504, 'DIURIL (Injectable)', '992590', 'Chlorothiazide', '1d9fa4e6-6516-45cd-a316-292c6a529ecc', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1505, 'DIVIGEL (Topical)', '1548195', 'Estradiol', '22191eca-c98d-4a07-844e-11edb0f04b8d', '11/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1506, 'DOAN''S (Oral Pill)', '1168079', 'Magnesium Salicylate', 'd98ee9c8-40e2-4abb-b5c1-45e73e7dd23b', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1507, 'DOBUTamine (Injectable)', '1337720', 'Dobutamine', 'a0882db1-2532-4b80-b753-68f013fe79e7', '11/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1508, 'DOCEtaxel (Injectable)', '1315942', 'docetaxel', '70aeb960-426c-4805-b956-476bebccd926', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1509, 'Docosanol (Topical)', '980955', 'docosanol', 'c39b38a7-dcdd-4c32-8f35-b565c4d3cec6', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1510, 'Docusate (Oral Liquid)', '941258', 'Docusate', '1fcb6361-7598-4ac9-b04d-faf4397197eb', '2/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1511, 'Docusate (Oral Pill)', '941258', 'Docusate', 'c49fb9f2-489e-48d1-b377-5cd3e2fabeba', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1512, 'Docusate (Rectal)', '941258', 'Docusate', '1235366d-b572-3a41-e054-00144ff8d46c', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1513, '"Docusate/Sennosides, USP (Oral Pill)"', '941258', 'Docusate', '16b2ff3b-0a96-4521-9b41-c7adcee27f8b', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1514, 'DOCUSOL (Rectal)', '941258', 'Docusate', '0d9355f0-d19f-4404-9b9e-bb2c874e39d6', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1515, 'DOCUSOL PLUS (Rectal)', '917006', 'Benzocaine', '08d1d3ed-1427-4a14-a2c0-91d46e258e07', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1516, 'Dodecyl sulfate/Oxyquinoline (Vaginal)', '43012263', 'dodecyl sulfate', '1e4a1caa-e6ba-44ef-8347-07e6385a7c9e', '12/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1517, 'Dog hair extract (Injectable)', '40170475', 'dog hair extract', 'ea1e43ad-632d-4e07-887f-c80f4e9798af', '6/9/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1518, 'DOK (Oral Pill)', '941258', 'Docusate', '7f48d80a-df42-4776-ad22-2d7a47bd03e1', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1519, 'DOLOGEN (Oral Pill)', '1125315', 'Acetaminophen', 'dad63da3-cd1f-42a8-93d5-44b39aae1268', '8/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1520, 'DOLOGESIC (Oral Liquid)', '1125315', 'Acetaminophen', '738e7767-42de-4076-acf2-9152484c2007', '6/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1521, 'DOLORACIN (Topical)', '939881', 'Capsaicin', 'ce4747e3-d8a4-48e6-910f-0f287c0c38fd', '9/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1522, 'Dolutegravir (Oral Pill)', '43560385', 'dolutegravir', '63df5af3-b8ac-4e76-9830-2dbb340af922', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1523, 'DOMEBORO (Topical)', '19030692', 'aluminum sulfate', '28c39200-2f7c-954b-3ce7-7349b2738812', '7/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1524, 'DONATUSSIN DROPS (Oral Liquid)', '1163944', 'Guaifenesin', '9ebee4c3-c0fb-417e-901f-eaaf678654f9', '1/7/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1525, 'Donepezil (Oral Disintegrating)', '715997', 'donepezil', '6bbb7b73-910b-4664-8856-4c6adbbb48cb', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1526, 'Donepezil (Oral Pill)', '715997', 'donepezil', '11ac01f4-d26e-47b2-9660-d514ab097fdb', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1527, 'DONNATAL (Oral Liquid)', '914335', 'Atropine', '85c207ad-83bb-20e8-ef73-9a374eb8ccb6', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1528, 'DONNATAL (Oral Pill)', '914335', 'Atropine', 'c93cccdc-2f92-4cb3-9d14-06acdd51d94c', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1529, 'DONNATAL XR (Oral Pill)', '914335', 'Atropine', '2064014b-6f8e-4232-88c2-d1870042abc7', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1530, 'DOPamine (Injectable)', '1337860', 'Dopamine', 'e061fb3e-afd7-4188-b5fb-617ac1d3e38d', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1531, 'DOPRAM (Injectable)', '738152', 'Doxapram', 'b8eb330a-a75b-46cb-b694-5be9327ed2eb', '4/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1532, 'Dornase Alfa (Inhalant)', '1125443', 'Dornase Alfa', 'd8c78a7e-ff99-48f3-8952-643ec2ea0f86', '1/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1533, 'DORYX (Oral Pill)', '1738521', 'Doxycycline', '1292fa83-e2a1-4fda-b0dd-ccf763265fe1', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1534, 'Dorzolamide (Ophthalmic)', '981709', 'dorzolamide', 'f16732ba-2cd8-473d-b79f-f48f29869c8d', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1535, 'Dorzolamide/Timolol (Ophthalmic)', '981709', 'dorzolamide', '06c062ca-add7-4ddf-ba7c-7b5dd531e9ec', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1536, 'DOVONEX (Topical)', '908921', 'calcipotriene', '92d53473-e33d-4490-9390-ec333dbf7676', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1537, 'Doxapram (Injectable)', '738152', 'Doxapram', 'b8eb330a-a75b-46cb-b694-5be9327ed2eb', '4/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1538, 'Doxazosin (Oral Pill)', '1363053', 'Doxazosin', '7d5b94bd-bd39-414d-855e-b8e6f22e593e', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1539, 'Doxepin (Oral Liquid)', '738156', 'Doxepin', 'fa31c1a5-91ed-4726-ab58-fbe98056fe5e', '12/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1540, 'Doxepin (Oral Pill)', '738156', 'Doxepin', 'c97a2f91-fe58-4d78-afc2-1a4ceb1f9344', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1541, 'Doxepin (Topical)', '738156', 'Doxepin', '64311378-2da2-4835-a222-5df5204c59c2', '2/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1542, 'Doxercalciferol (Oral Pill)', '1512446', 'Doxercalciferol', '1bb3ce2f-c77a-436f-980f-a02668f99fed', '2/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1543, 'Doxorubicin liposome (Injectable)', '19051649', 'doxorubicin liposome', '1d5beebf-77f3-47ca-a9a1-5f64f42fed07', '5/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1544, 'DOXY (Injectable)', '1738521', 'Doxycycline', 'b0894010-39bd-459f-8563-cf83343105ee', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1545, 'Doxycycline (Injectable)', '1738521', 'Doxycycline', 'f9b9ca8a-5cfc-446a-8330-36cf96625a57', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1546, 'Doxycycline (Oral Pill)', '1738521', 'Doxycycline', '1292fa83-e2a1-4fda-b0dd-ccf763265fe1', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1547, 'Doxylamine (Oral Pill)', '738818', 'Doxylamine', '8051a431-94ab-4593-bfca-f28ea988b474', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1548, 'Doxylamine/Phenylephrine (Oral Pill)', '738818', 'Doxylamine', '8f6622e1-b40d-4d1c-9322-463775728a25', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1549, 'Doxylamine/Pseudoephedrine (Oral Liquid)', '738818', 'Doxylamine', 'fe74017b-3387-4e72-9e2d-9eb46465c3df', '4/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1550, 'DR. SCHOLL''S (Topical)', '964407', 'Salicylic Acid', 'fd446f5f-c086-4b58-b350-a8ff3c92259f', '6/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1551, 'DR. SCHOLL''S DISCS (Topical)', '964407', 'Salicylic Acid', 'f5d4c321-dec2-49f1-bfe2-30a053166880', '6/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1552, 'DR. SMITH''S DIAPER RASH (Topical)', '911064', 'Zinc Oxide', '7705b182-acf7-4195-9996-7d9fcdfbf055', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1553, 'DRAMAMINE (Chewable)', '928744', 'Dimenhydrinate', '09936316-8667-4950-b017-19e3a05385a4', '1/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1554, 'DRAMAMINE (Oral Pill)', '928744', 'Dimenhydrinate', 'f9302a5a-295a-4501-9332-e3f5eb387362', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1555, 'DRAMAMINE LESS DROWSY (Oral Pill)', '994341', 'Meclizine', 'fa6a0969-7427-4b87-bc04-a2792665c218', '9/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1556, 'DRISDOL (Oral Pill)', '19045045', 'Ergocalciferol', '0d501431-82d3-4f8e-94c4-5eabcefc00ad', '7/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1557, 'DRISTAN 12-HOUR NASAL SPRAY (Nasal)', '925636', 'Oxymetazoline', '9ddfb021-fa96-94a6-a413-839ce5a7e744', '3/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1558, 'DRITHOCREME (Topical)', '952538', 'Anthralin', '4d624774-3618-423c-89bd-492f4795ad19', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1559, 'Dronedarone (Oral Pill)', '40163615', 'dronedarone', '236d4549-f44b-4677-b857-acedd10b9920', '12/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1560, 'Droperidol (Injectable)', '739323', 'Droperidol', '7bd2c1cf-31c0-49c7-a856-f238a46f6f1f', '11/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1561, 'Drospirenone/Estradiol (Oral Pill)', '1512674', 'drospirenone', '761834c2-6b61-4583-84c2-f1ca4a97c4f2', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1562, 'Drospirenone/Ethinyl Estradiol (Oral Pill)', '1512674', 'drospirenone', '8edef6f6-c278-4595-a00e-55a773b15733', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1563, 'Drospirenone/Ethinyl Estradiol/Levomefolic Acid (Oral Pill)', '1512674', 'drospirenone', '8132454a-6135-4bac-b206-83a55eb8dbc6', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1564, 'DROXIA (Oral Pill)', '1377141', 'hydroxyurea', '740e054b-faac-7c27-f06d-a56efb699355', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1565, 'Droxidopa (Oral Pill)', '44814542', 'Droxidopa', '2179f02c-48d7-48eb-8007-5ae43d8d16bc', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1566, 'DUAVEE (Oral Pill)', '44506794', 'bazedoxifene', 'e1b75458-2e5b-46b9-92c6-fa6daba3770f', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1567, 'DUEXIS (Oral Pill)', '953076', 'Famotidine', '558b9f26-37b2-423b-932d-25a37afe57ec', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1568, 'DULCOLAX (Oral Pill)', '924939', 'Bisacodyl', '8527ae95-fdfd-4b62-9f56-598c2656aeb6', '11/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1569, 'DULCOLAX (Rectal)', '924939', 'Bisacodyl', '1bf775a9-bd9e-41a6-acef-9a3795fbf25c', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1570, 'DULoxetine (Oral Pill)', '715259', 'duloxetine', '752d7078-6cc5-4cb8-b5d2-5fc0851320a4', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1571, 'DUONEB (Inhalant)', '1154343', 'Albuterol', '926d8687-5a1f-4550-b33a-b56f9d015994', '6/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1572, 'DURACLON (Injectable)', '1398937', 'Clonidine', '8c126bb8-732a-4949-8754-2f50b5543638', '3/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1573, 'DURAMORPH (Injectable)', '1110410', 'Morphine', 'ebb18761-e5c4-4238-bb84-f9549f500210', '11/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1574, 'DURAPREP (Topical)', '19125582', 'iodine povacrylex', '3a73b934-ea39-43c2-86bf-dfb88353b8bd', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1575, 'DURICEF (Oral Liquid)', '1769535', 'Cefadroxil', '4ad759f3-72dd-412e-9500-055335cda6cf', '5/22/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1576, 'DURICEF (Oral Pill)', '1769535', 'Cefadroxil', '4ad759f3-72dd-412e-9500-055335cda6cf', '5/22/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1577, 'Dutasteride (Oral Pill)', '989482', 'Dutasteride', '813507ec-1fc1-420f-ac5c-5c794b1059cd', '12/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1578, 'Dutasteride/Tamsulosin (Oral Pill)', '989482', 'Dutasteride', 'f96c6acd-4d02-4ece-bd54-2d5a35aab7f5', '5/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1579, 'DYAZIDE (Oral Pill)', '974166', 'Hydrochlorothiazide', '7330f40d-b269-425b-a4e3-e7263a088fb7', '2/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1580, 'Dyclonine (Oral Lozenge)', '992308', 'dyclonine', '6fde9446-0f8d-4bba-98dc-3e3a1f170488', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1581, 'DYNA-HEX (Topical)', '1790812', 'Chlorhexidine', '6cc89ac1-baef-40bb-85a3-d9ae9e3e7a63', '1/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1582, 'DYNACIN (Oral Pill)', '1708880', 'Minocycline', 'f174edbd-3ac0-4e27-a116-3b74804721bb', '12/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1583, 'Dyphylline (Oral Pill)', '1140088', 'Dyphylline', '6d7ed7c0-9646-11de-a404-0002a5d5c51b', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1584, 'Dyphylline/guaiFENesin (Oral Liquid)', '1140088', 'Dyphylline', 'd35db38b-8b0e-4872-ab18-09795c5e07e9', '8/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1585, 'DYRENIUM (Oral Pill)', '904542', 'Triamterene', '5012f997-9fb2-4c3d-99fd-4f7efd7c39af', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1586, 'DYSPORT (Injectable)', '40165377', 'abobotulinumtoxinA', '71313a04-1349-4c26-b840-a39e4a3ddaed', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1587, 'Eastern cottonwood pollen extract (Injectable)', '40161793', 'eastern cottonwood pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1588, 'Echothiophate (Ophthalmic)', '958368', 'Echothiophate', 'e4bb53c7-9061-43fc-878f-dc1b19801bfc', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1589, 'Econazole (Topical)', '940864', 'Econazole', '050155b7-e8fe-4eee-9516-716399f559f6', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1590, 'ECONOCHLOR (Ophthalmic)', '990069', 'Chloramphenicol', '29bd93cf-6524-45b9-b4b3-c9665da89e34', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1591, 'ECONOPRED (Ophthalmic)', '1550557', 'prednisolone', '2d6c3ea4-5189-4f6e-bb6a-c9379f441d7a', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1592, 'ECOTRIN (Oral Pill)', '1112807', 'Aspirin', 'f950d4eb-39b9-4ef7-b5f3-0cf45d4d6bc0', '7/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1593, 'ECPIRIN (Oral Pill)', '1112807', 'Aspirin', '0ad0996b-31fb-305a-e054-00144ff88e88', '12/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1594, 'ECZEMIN (Topical)', '927478', 'pramoxine', 'b108cbf1-55f4-49c8-93d1-13c0326cc487', '12/6/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1595, 'ED SPAZ (Oral Disintegrating)', '923672', 'Hyoscyamine', 'f33a4774-9fbb-4782-a7e1-068e83b7504d', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1596, 'EDARBI (Oral Pill)', '40235485', 'azilsartan', '75b16bfc-38c1-4133-bd7d-13258d54edec', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1597, 'EDARBYCLOR (Oral Pill)', '40235485', 'azilsartan', 'e60f795b-fce3-4361-aa03-f143451689d1', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1598, 'EDECRIN (Oral Pill)', '987406', 'Ethacrynate', 'd65ed93d-77c8-45d1-af3d-06e9e5d65930', '1/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1599, 'EDECRIN SODIUM (Injectable)', '987406', 'Ethacrynate', '9e6e2048-0d65-4c23-8324-95767cbf86f1', '8/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1600, 'Edetate Calcium (Injectable)', '43013616', 'Edetate Calcium', 'f960dbfa-b00c-4f3e-ad32-ed6a5deea831', '4/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1601, 'Edetic Acid (Injectable)', '1741008', 'Edetic Acid', '290c3e9c-c0c6-440a-1a9c-46e3e2b07a77', '3/1/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1602, 'EDLUAR (Sublingual)', '744740', 'zolpidem', 'a32884d0-85b5-11de-8a39-0800200c9a66', '11/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1603, 'Edrophonium (Injectable)', '740924', 'Edrophonium', '98a5a2f6-3194-4202-963f-0fcd28ecadbc', '4/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1604, 'EESCULA (Ophthalmic)', '915829', 'isopropyl unoprostone', '53d05ced-51dd-11de-8a39-0800200c9a66', '1/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1605, 'Efavirenz (Oral Pill)', '1738135', 'efavirenz', '04b5c345-c446-43a4-83f0-509bc287e10b', '3/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1606, 'Efavirenz/Emtricitabine/Tenofovir disoproxil (Oral Pill)', '1738135', 'efavirenz', '5c6c7ba4-6d42-4e07-a127-b3cf72c866ad', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1607, 'EFFACLAR DUO (Topical)', '918172', 'Benzoyl Peroxide', '6cdd0ab1-d30f-40d3-bf3a-5d7d178b1d31', '1/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1608, 'EFFIENT (Oral Pill)', '40163718', 'prasugrel', 'cb684ad9-0b72-406f-8a07-a419254ccd36', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1609, 'Eflornithine (Topical)', '978236', 'Eflornithine', 'e872db73-7cd7-4886-9b0f-6710700e3765', '9/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1610, 'EFUDEX (Topical)', '955632', 'Fluorouracil', '35de1c1c-bef5-46c5-b6f8-ea032147411c', '5/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1611, 'EGG YOLK PHOSPHOLIPIDS/Glycerin/Soybean Oil (Injectable)', '19013789', 'EGG YOLK PHOSPHOLIPIDS', 'dd269651-30e8-43f0-880f-484346eaafeb', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1612, 'EGRIFTA (Injectable)', '40231628', 'tesamorelin', '3de31cec-31dc-4ac4-9717-367a687d22f2', '3/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1613, 'ELDEPRYL (Oral Pill)', '766209', 'Selegiline', '106429ad-859a-4b29-babf-42cb85f7236e', '7/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1614, 'ELELYSO (Injectable)', '42800246', 'taliglucerase alfa', 'fa3cbd5d-677c-4b19-9032-d9182cb69a83', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1615, 'ELESTAT (Ophthalmic)', '943634', 'epinastine', 'a9628ec7-bbeb-4cfa-932f-645a8aca8987', '1/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1616, 'ELESTRIN (Topical)', '1548195', 'Estradiol', '8e1a3641-25ca-41bd-a940-51ae0ec64ed9', '7/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1617, 'Eletriptan (Oral Pill)', '1189697', 'eletriptan', '523b947a-4e92-42ff-886c-4317af8d7b56', '3/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1618, 'ELIDEL (Topical)', '915935', 'Pimecrolimus', 'e4027e5a-0f9b-4070-b196-f60172f45c4c', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1619, 'Eliglustat (Oral Pill)', '45775782', 'eliglustat', '819f828a-b888-4e46-83fc-94d774a28a83', '9/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1620, 'ELIMITE (Topical)', '922868', 'Permethrin', '4de55a80-67d6-42c0-a6fc-57b89400c5b3', '11/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1621, 'ELIPHOS (Oral Pill)', '951469', 'calcium acetate', '9fc1ada4-9ef4-48e9-8203-32aa857d0429', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1622, 'ELIQUIS (Oral Pill)', '43013024', 'apixaban', 'a454cd24-0c6d-46e8-b1e4-197388606175', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1623, 'ELIXOPHYLLIN (Oral Liquid)', '1237049', 'Theophylline', '2676f761-4fe5-40a9-a07d-ed2542847883', '3/13/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1624, 'ELLA (Oral Pill)', '40225722', 'ulipristal', '052bfe45-c485-49e5-8fc4-51990b2efba4', '7/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1625, 'ELMIRON (Oral Pill)', '924151', 'Pentosan Polysulfate', '3b172ad2-074f-4534-af1f-89d951647ee9', '7/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1626, 'ELOCON (Topical)', '905233', 'Mometasone', 'aa905762-80be-45be-89d5-b32564e82f92', '4/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1627, 'ELOCTATE (Injectable)', '45776421', 'factor VIII (b-domain deleted recombinant) FC fusion protein', 'bec39fa0-1524-4e6b-897f-db0ef093085e', '7/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1628, 'ELOXATIN (Injectable)', '1318011', 'oxaliplatin', '3c740b43-f396-4998-bc66-6964a21f7161', '3/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1629, 'ELTA SEAL MOISTURE BARRIER (Topical)', '911064', 'Zinc Oxide', '9ebe3684-d591-464f-9828-379a8b627728', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1630, 'Elvitegravir (Oral Pill)', '42874212', 'elvitegravir', 'be87c3bc-97bb-49cb-8053-9b0c756a1965', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1631, 'EMADINE (Ophthalmic)', '903893', 'emedastine', '98a010d5-4905-4abf-a9d2-c85a07daa23b', '7/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1632, 'EMBEDA XR (Oral Pill)', '1110410', 'Morphine', 'dfe97a3d-247d-4dda-a641-1a95196cd8d8', '3/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1633, 'EMCYT (Oral Pill)', '1349025', 'Estramustine', 'a9b01bc6-95ac-46f9-befa-d845a74d53c1', '6/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1634, 'Emedastine (Ophthalmic)', '903893', 'emedastine', '98a010d5-4905-4abf-a9d2-c85a07daa23b', '7/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1635, 'EMEND (Oral Pill)', '936748', 'aprepitant', 'ec44482e-6194-4829-a3f7-ebe8d48a41a5', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1636, 'EMETROL (Oral Liquid)', '956691', 'Fructose', 'd0ce87b8-d484-4307-95a9-05705a6caf85', '4/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1637, 'EMLA (Topical)', '989878', 'Lidocaine', 'b466c7eb-bca3-4686-ada6-325103ab06f3', '3/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1638, 'Empagliflozin (Oral Pill)', '45774751', 'empagliflozin', 'faf3dd6a-9cd0-39c2-0d2e-232cb3f67565', '7/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1639, 'Emtricitabine (Oral Liquid)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', '11/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1640, 'Emtricitabine (Oral Pill)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', '11/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1641, 'Emtricitabine/Rilpivirine/Tenofovir disoproxil (Oral Pill)', '1703069', 'emtricitabine', '54c8bec2-d565-489c-8d7c-afd3cdf78df5', '3/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1642, 'Emtricitabine/Tenofovir disoproxil (Oral Pill)', '1703069', 'emtricitabine', '8bd3debe-d414-450f-b8d9-a70fb1dd5341', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1643, 'EMTRIVA (Oral Liquid)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', '11/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1644, 'EMTRIVA (Oral Pill)', '1703069', 'emtricitabine', 'd6599395-3944-44f9-97f2-e0424c6b6a1f', '11/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1645, 'Enalapril (Oral Liquid)', '1341927', 'Enalapril', '94c9a9d6-957f-4667-8f09-509e99bac777', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1646, 'Enalapril (Oral Pill)', '1341927', 'Enalapril', '5cc4f6f0-8925-81e1-b210-b5a4509a25a9', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1647, 'Enalapril/Hydrochlorothiazide (Oral Pill)', '1341927', 'Enalapril', '7cb92cf2-46f2-4379-937c-168d230e43a4', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1648, 'Enalaprilat (Injectable)', '1342001', 'Enalaprilat', 'd3d573a7-50d5-46a8-9f92-baad3ae0831e', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1649, 'ENDODAN REFORMULATED MAY 2009 (Oral Pill)', '1112807', 'Aspirin', '23a60947-6058-4bf7-a3ee-ae396e55d939', '6/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1650, 'ENDRATE (Injectable)', '1741008', 'Edetic Acid', '290c3e9c-c0c6-440a-1a9c-46e3e2b07a77', '3/1/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1651, 'ENEMEEZ (Rectal)', '941258', 'Docusate', '0b06445d-0839-497e-bdff-e0fe224a7738', '8/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1652, 'ENEMEEZ PLUS (Rectal)', '917006', 'Benzocaine', '1670ca59-7275-4ac6-bef4-674a7b24c7b3', '8/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1653, 'English plantain pollen extract (Injectable)', '40160939', 'English plantain pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1654, 'ENJUVIA (Oral Pill)', '1586808', '"synthetic conjugated estrogens, B"', 'b7aba0b2-72d1-4429-bb64-98b92e9d9433', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1655, 'ENLON (Injectable)', '740924', 'Edrophonium', '98a5a2f6-3194-4202-963f-0fcd28ecadbc', '4/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1656, 'ENLON-PLUS (Injectable)', '914335', 'Atropine', 'bdeb47eb-e538-498d-ae98-14d5db29eab0', '12/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1657, 'Enoxaparin (Injectable)', '1301025', 'Enoxaparin', '2cc08d08-555a-4135-b6da-9f8cf7b11ad7', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1658, 'Entacapone (Oral Pill)', '782211', 'entacapone', '01ea62f4-bfac-485a-bb4b-a9abb345749f', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1659, 'Entecavir (Oral Pill)', '1711246', 'entecavir', 'e527b81a-5e15-4b58-91ed-3df45f3ac589', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1660, 'ENTEREG (Oral Pill)', '19059654', 'alvimopan', '77a67dc6-35d3-48ff-9d18-292d4d442f70', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1661, 'ENTEX LQ (Oral Liquid)', '1163944', 'Guaifenesin', '0accdd47-9712-4faa-aae4-ad1e641b26a1', '4/19/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1662, 'ENTOCORT (Oral Pill)', '939259', 'Budesonide', '98a4eca1-904c-4355-957a-b5a141573cc2', '11/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1663, 'ENTYVIO (Injectable)', '45774639', 'vedolizumab', '6e94621c-1a95-4af9-98d1-52b9e6f1949c', '5/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1664, 'ENULOSE (Oral Liquid)', '987245', 'Lactulose', 'a9b8bc93-af0f-44e6-a5f2-ff001542a81f', '2/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1665, 'Enzalutamide (Oral Pill)', '42900250', 'enzalutamide', 'b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1666, 'EPANED (Oral Liquid)', '1341927', 'Enalapril', '94c9a9d6-957f-4667-8f09-509e99bac777', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1667, 'ePHEDrine (Injectable)', '1143374', 'Ephedrine', '16f212c3-d504-4d3c-813e-cc23a04aaa88', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1668, 'ePHEDrine (Oral Pill)', '1143374', 'Ephedrine', 'b63d6ef1-ccce-4cd7-80f7-6d674dbf432f', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1669, 'ePHEDrine/guaiFENesin (Oral Pill)', '1143374', 'Ephedrine', '699e7629-5e8a-4dac-b494-fe42698ee460', '6/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1670, 'Epicoccum nigrum extract (Injectable)', '40162020', 'Epicoccum nigrum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1671, 'EPIDUO (Topical)', '981774', 'adapalene', '67002593-3bd3-4e91-a48f-9f7483e579a0', '2/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1672, 'EPIFOAM (Topical)', '975125', 'Hydrocortisone', 'b22b8b41-2f1e-11e4-8c21-0800200c9a66', '9/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1673, 'Epinastine (Ophthalmic)', '943634', 'epinastine', 'df001833-f478-ee51-325a-9e1b56199567', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1674, 'EPINEPHrine (Injectable)', '1343916', 'Epinephrine', '3ed35d7d-616c-43cd-9776-705821afc1f0', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1675, 'EPINEPHrine/Lidocaine (Injectable)', '1343916', 'Epinephrine', '169e2102-199a-46b6-80ae-8bb5ff2a5c69', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1676, 'EPINEPHrine/Lidocaine (Transdermal)', '1343916', 'Epinephrine', '82b5bf2c-7dc9-40bd-9fb4-b5b1b5be0470', '9/14/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1677, 'Epirubicin (Injectable)', '1344354', 'Epirubicin', 'bc0a3a39-4ac3-47de-a388-9c3672e3e130', '3/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1678, 'EPIVIR (Oral Pill)', '1704183', 'Lamivudine', '3b1f8ee3-d582-4faa-a7f2-0fbc45721298', '9/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1679, 'EPIVIR HBV (Oral Pill)', '1704183', 'Lamivudine', '83009c27-f54b-47df-b8b2-e2e4e0b8f4e8', '10/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1680, 'Eplerenone (Oral Pill)', '1309799', 'eplerenone', 'c7bc9486-8e61-4ba1-827f-2cd8c304b454', '8/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1681, 'Epoetin Alfa (Injectable)', '1301125', 'Epoetin Alfa', '9bbe9a5b-ad1d-41a4-9699-ff6dc776bce1', '1/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1682, 'Epoprostenol (Injectable)', '1354118', 'Epoprostenol', 'd669ff68-ddcf-42f6-913c-d8f1aedbd9c4', '12/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1683, 'Eprosartan/Hydrochlorothiazide (Oral Pill)', '1346686', 'eprosartan', 'b1dfcac3-ef66-4d3e-9d58-37d3f516eb31', '1/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1684, 'EPZICOM (Oral Pill)', '1736971', 'abacavir', '080e3423-5962-4465-8e78-cd8793699336', '9/1/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1685, 'EQUAGESIC (Oral Pill)', '1112807', 'Aspirin', '941e1ec2-1f14-4153-a5ea-cf7669d5efd1', '1/25/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1686, 'Ergocalciferol (Oral Liquid)', '19045045', 'Ergocalciferol', '7dec2cd0-b4cf-45b7-924c-cbb003f5f8f8', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1687, 'Ergocalciferol (Oral Pill)', '19045045', 'Ergocalciferol', '88218156-081a-4809-8143-f97bdab194ba', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1688, '"Ergoloid mesylates, USP (Oral Pill)"', '745268', '"ergoloid mesylates, USP"', '1344cf98-7d79-4ab4-9a63-2e632d9afbd4', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1689, 'ERGOMAR (Sublingual)', '1145379', 'Ergotamine', '1bfd4827-5123-4dbb-8f94-7b097f5bfd5c', '9/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1690, 'Ergotamine (Inhalant)', '1145379', 'Ergotamine', 'e713859d-f454-4f7e-a535-868b8d5f2c88', '9/1/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1691, 'Ergotamine (Sublingual)', '1145379', 'Ergotamine', '1bfd4827-5123-4dbb-8f94-7b097f5bfd5c', '9/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1692, 'ERIVEDGE (Oral Pill)', '42709321', 'vismodegib', 'eb368bb6-80e3-4df9-8a85-91df0a2ada6a', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1693, 'Erlotinib (Oral Pill)', '1325363', 'erlotinib', '5783976b-0862-44e5-9b19-0f41d236d5c3', '1/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1694, 'ERTACZO (Topical)', '939134', 'sertaconazole', '821073f7-33f6-464d-baed-f66d97987d6d', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1695, 'ERY (Topical)', '1746940', 'Erythromycin', '9a63da11-01be-4c63-a260-e6bdbb4a7a69', '11/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1696, 'ERY-TAB (Oral Pill)', '1746940', 'Erythromycin', 'e7dd481b-5c2a-412e-86df-dfe1376ce38c', '4/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1697, 'ERYC (Oral Pill)', '1746940', 'Erythromycin', 'c3f7cd94-d842-4f6b-a582-a38c751a790a', '12/19/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1698, 'ERYGEL (Topical)', '1746940', 'Erythromycin', '26eb3e52-e857-4ab6-841e-fd47a838e4f4', '1/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1699, 'ERYPED (Oral Liquid)', '1746940', 'Erythromycin', '04775721-ab87-4b66-808c-d67a21032385', '8/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1700, 'ERYTHROCIN STEARATE (Oral Pill)', '1746940', 'Erythromycin', '81698259-aab4-42ec-a549-b32e9c9565d0', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1701, 'Erythromycin (Ophthalmic)', '1746940', 'Erythromycin', 'dc3ee55d-114e-44f2-adb2-fb0c24eba732', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1702, 'Erythromycin (Oral Pill)', '1746940', 'Erythromycin', '83b88647-1b7c-444f-ab20-cdb5afd265bf', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1703, 'Erythromycin (Topical)', '1746940', 'Erythromycin', 'aa993373-f75f-440f-bdae-59892557ba2c', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1704, 'Erythromycin Ethylsuccinate (Oral Liquid)', '1746940', 'Erythromycin', '04775721-ab87-4b66-808c-d67a21032385', '8/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1705, 'Erythromycin Ethylsuccinate (Oral Pill)', '1746940', 'Erythromycin', '6d8c343b-30d9-4cdb-8f55-2a20983a71c1', '5/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1706, 'Erythromycin Ethylsuccinate/SulfiSOXAZOLE (Oral Liquid)', '1746940', 'Erythromycin', 'eb6ea746-3228-4969-8a26-653288662fd7', '8/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1707, 'Erythromycin stearate (Oral Pill)', '1746940', 'Erythromycin', '26f2704c-92ae-41c5-badc-dbebfb2eed35', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1708, 'Escitalopram (Oral Liquid)', '715939', 'Escitalopram', '82d793ee-4039-45fc-ac83-4bd5235f00aa', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1709, 'Escitalopram (Oral Pill)', '715939', 'Escitalopram', '83b762b9-bb12-43fe-bdc4-00d5c4fd98ce', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1710, 'ESGIC (Oral Pill)', '1125315', 'Acetaminophen', '8aa576ac-c870-4ac0-a9a5-5539b38f653d', '11/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1711, 'Eslicarbazepine (Oral Pill)', '44507780', 'eslicarbazepine', '3d0c9554-eaeb-4694-8089-00133fcadce3', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1712, 'Esmolol (Injectable)', '19063575', 'esmolol', '94f069f9-dd52-4a69-a103-ebdb4294f088', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1713, 'Esomeprazole (Injectable)', '904453', 'Esomeprazole', 'dce12085-d6c4-48a5-959b-e771c413c9c5', '2/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1714, 'Esomeprazole (Oral Pill)', '904453', 'Esomeprazole', 'ea79f802-e9ac-480b-91e6-1e3900b11803', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1715, 'Esomeprazole/Naproxen (Oral Pill)', '904453', 'Esomeprazole', 'baa47781-7151-4c75-a9a2-d2eac0a7d55e', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1716, 'ESOTERICA (Topical)', '976778', 'hydroquinone', '0de38654-f598-4cca-9e1e-47af1f21d21c', '10/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1717, 'Estazolam (Oral Pill)', '748010', 'Estazolam', '50914a46-eab6-4c83-97cf-6ab0234c8126', '8/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1718, 'ESTRACE (Oral Pill)', '1548195', 'Estradiol', 'a3803ba3-4eee-4e2e-ac8c-821a4e6720cc', '9/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1719, 'ESTRACE (Vaginal)', '1548195', 'Estradiol', 'dfc41fcd-c5ba-4b25-b647-cf04d3988b3e', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1720, 'Estradiol (Injectable)', '1548195', 'Estradiol', 'c5f32941-3427-4a38-bc3d-38337b41d9d3', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1721, 'Estradiol (Oral Pill)', '1548195', 'Estradiol', 'a3803ba3-4eee-4e2e-ac8c-821a4e6720cc', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1722, 'Estradiol (Topical)', '1548195', 'Estradiol', '9a0aa631-133d-406b-9d32-8a1a99af4e50', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1723, 'Estradiol (Vaginal)', '1548195', 'Estradiol', 'dfc41fcd-c5ba-4b25-b647-cf04d3988b3e', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1724, 'Estradiol/Norethindrone (Oral Pill)', '1548195', 'Estradiol', 'b85df980-7df1-4973-bee3-ae51274b588f', '10/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1725, 'Estramustine (Oral Pill)', '1349025', 'Estramustine', 'a9b01bc6-95ac-46f9-befa-d845a74d53c1', '6/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1726, '"Estrogens, Conjugated (USP) (Oral Pill)"', '1549080', '"Estrogens, Conjugated (USP)"', '55495ca7-54a3-4f52-935d-63432d14db4d', '5/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1727, '"Estrogens, Conjugated (USP)/MedroxyPROGESTERone (Oral Pill)"', '1549080', '"Estrogens, Conjugated (USP)"', '198d547d-c985-46bc-a66f-e3182a294cb5', '3/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1728, '"Estrogens, Esterified (USP) (Oral Pill)"', '1551673', '"Estrogens, Esterified (USP)"', 'efb195b9-b995-48f3-a4cb-b7e09d56350e', '1/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1729, '"Estrogens, Esterified (USP)/MethylTESTOSTERone (Oral Pill)"', '1551673', '"Estrogens, Esterified (USP)"', '316650b7-5770-4f1a-867d-68a72c60c8f2', '5/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1730, 'Estropipate (Vaginal)', '1525278', 'estropipate', 'ea3d70e5-dccd-4302-964b-b5cb1394b514', '9/28/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1731, 'Eszopiclone (Oral Pill)', '757352', 'Eszopiclone', 'e711e994-a489-d14b-9a50-60557b9ed137', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1732, 'Ethacrynate (Injectable)', '987406', 'Ethacrynate', '9e6e2048-0d65-4c23-8324-95767cbf86f1', '8/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1733, 'Ethacrynate (Oral Pill)', '987406', 'Ethacrynate', 'd65ed93d-77c8-45d1-af3d-06e9e5d65930', '1/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1734, 'Ethambutol (Oral Pill)', '1749301', 'Ethambutol', 'b2f95b0b-9de3-4c0b-a46e-a7eee6428b4b', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1735, 'ETHAMOLIN (Injectable)', '19095285', 'ethanolamine oleate', 'a9c1d8c5-443e-400e-a42c-16a25fb47231', '4/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1736, 'Ethanol (Injectable)', '955372', 'Ethanol', '6361091f-c341-4bc7-a2a5-bd6ea73cc028', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1737, 'Ethanol (Soap)', '955372', 'Ethanol', '44f4034a-0e13-49ae-98e6-1fb627a0e930', '10/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1738, 'Ethanol (Topical)', '955372', 'Ethanol', '7aebcd0c-1b86-4c82-b7cb-e0e02648b9a0', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1739, 'Ethanol/Glucose (Injectable)', '955372', 'Ethanol', '14a2b1ab-f94b-45f1-b5c3-dce751648e93', '11/9/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1740, 'Ethanolamine oleate (Injectable)', '19095285', 'ethanolamine oleate', 'a9c1d8c5-443e-400e-a42c-16a25fb47231', '4/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1741, 'Ethinyl Estradiol (Oral Pill)', '1549786', 'Ethinyl Estradiol', '2b8b5145-77ad-4817-8f9e-77fd7938242e', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1742, 'Ethinyl Estradiol/Ethynodiol (Oral Pill)', '1549786', 'Ethinyl Estradiol', 'ae3c20e4-8850-4559-9ca3-06a98b3dabab', '10/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1743, 'Ethinyl Estradiol/Levonorgestrel (Oral Pill)', '1549786', 'Ethinyl Estradiol', '709031e4-4c20-4ea7-beff-6c459709a433', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1744, 'Ethinyl Estradiol/Norethindrone (Chewable)', '1549786', 'Ethinyl Estradiol', '51267e7f-2ff6-482d-bb68-04f75a6999d9', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1745, 'Ethinyl Estradiol/Norethindrone (Oral Pill)', '1549786', 'Ethinyl Estradiol', '0beef9d3-8326-48cf-b89a-fa794902c6c1', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1746, 'Ethinyl Estradiol/Norgestimate (Oral Pill)', '1549786', 'Ethinyl Estradiol', '7841b848-ba6b-41b8-8c32-fde3eda6e8e6', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1747, 'Ethinyl Estradiol/Norgestrel (Oral Pill)', '1549786', 'Ethinyl Estradiol', 'aa7f4a83-71cf-4306-b0a1-01784f67bae2', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1748, 'Ethosuximide (Oral Liquid)', '750119', 'Ethosuximide', '8a5cc930-0b36-48a8-9ad0-de633b208742', '3/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1749, 'Ethosuximide (Oral Pill)', '750119', 'Ethosuximide', 'cb5577e2-e906-438f-b13d-e55709a0e7fd', '6/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1750, 'Etidronate (Oral Pill)', '1552929', 'Etidronate', 'fa07734d-b381-4f33-a555-53b6614f4b08', '4/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1751, 'Etodolac (Oral Pill)', '1195492', 'Etodolac', '4d682f98-1e8a-4c2b-6df3-169d2ed10dc1', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1752, 'ETOPOFOS (Injectable)', '1350504', 'Etoposide', 'e28c05f0-081f-406d-8bfb-9160a6908307', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1753, 'Etoposide (Injectable)', '1350504', 'Etoposide', '4f850eb2-3542-43a0-90e8-bb37fa05cf15', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1754, 'Etoposide (Oral Pill)', '1350504', 'Etoposide', '508a418e-985f-4208-9324-2230655bb5c2', '7/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1755, 'Etravirine (Oral Pill)', '1758536', 'etravirine', '73667241-b95a-49b0-9c51-a4289f20d5c2', '3/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1756, 'Eucalyptol/Menthol/Methyl salicylate/Thymol (Mouthwash)', '19050346', 'Eucalyptol', '0c3ee0f2-6637-42fd-9f72-01ec4de3c7ba', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1757, 'EURAX (Topical)', '969276', 'crotamiton', '56465446-7f78-4ad1-acb3-08a4d60e5715', '2/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1758, 'European house dust mite extract/White oak pollen extract (Injectable)', '40242103', 'European house dust mite extract', '3bfb5be4-542a-4b86-beac-688a07fc830c', '10/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1759, 'European olive pollen extract (Injectable)', '40161710', 'european olive pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1760, 'EVAMIST (Topical)', '1548195', 'Estradiol', 'd8c4a929-c039-4c7d-a3bc-986ae31fc8a6', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1761, 'EVOCLIN (Topical)', '997881', 'Clindamycin', 'daa3d9d1-c906-41f3-83a2-c47f2283da48', '10/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1762, 'EVOXAC (Oral Pill)', '954819', 'cevimeline', 'bf6bebde-81ef-4a49-bd8b-2b7444f7adbf', '3/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1763, 'EX-LAX MAXIMUM RELIEF FORMULA (Oral Pill)', '938268', '"sennosides, USP"', '800366b2-e974-4791-9a0d-c341c80ac859', '3/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1764, 'EXAPRIN (Oral Pill)', '1125315', 'Acetaminophen', '9fe82229-cc3e-4d79-a448-014fe3d0055b', '11/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1765, 'EXCEDRIN (Oral Pill)', '1125315', 'Acetaminophen', '58375804-3c14-4af9-805b-68458e2fed8c', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1766, 'EXCEDRIN BACK & BODY (Oral Pill)', '1125315', 'Acetaminophen', '4b77be54-e962-4e6b-a244-e3d53a8fecd9', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1767, 'EXCEDRIN PM (Oral Pill)', '1125315', 'Acetaminophen', '375ba5bf-16c1-4912-9aa1-a8e7196aed31', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1768, 'EXCEDRIN PM TRIPLE ACTION (Oral Pill)', '1125315', 'Acetaminophen', 'b3812d27-40af-40d7-864a-dfa4ae34cb9e', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1769, 'EXCEDRIN TENSION HEADACHE (Oral Pill)', '1125315', 'Acetaminophen', 'cc17ee50-1401-4b31-8c01-e153b4291c7a', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1770, 'EXELDERM (Topical)', '940535', 'sulconazole', '9b963f0d-b041-43be-9434-7161eab49adb', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1771, 'Exemestane (Oral Pill)', '1398399', 'exemestane', '61d86c55-9946-273f-4f22-42d3fc33d143', '8/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1772, 'EXFORGE (Oral Pill)', '1332418', 'Amlodipine', '15ba7c1c-dd10-4d09-b6e2-284c1b67f4da', '1/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1773, 'EXFORGE HCT (Oral Pill)', '1332418', 'Amlodipine', '782bcaf4-0aa4-4527-b36f-d350ceb95637', '4/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1774, 'EXPAREL (Injectable)', '40244151', 'Bupivacaine liposome', 'bb5a9e59-0f51-11df-8a39-0800200c9a66', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1775, 'EXUBERA (Inhalant)', '1588986', '"insulin human, rDNA origin"', '4e25a881-dfc3-44a2-9ede-49f7443776d8', '4/18/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1776, 'EYE STREAM (Ophthalmic)', '19010309', 'Water', 'ff9560df-d834-57a8-37b0-3f10e82f5a5d', '9/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1777, 'EZ-OX (Inhalant)', '19025274', 'Oxygen', 'cc02c6b7-c397-4929-9322-bef702c9255c', '2/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1778, 'Ezetimibe (Oral Pill)', '1526475', 'ezetimibe', 'cb18564f-663f-4da2-9dd9-700ea9bdd398', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1779, 'Ezetimibe/Simvastatin (Oral Pill)', '1526475', 'ezetimibe', '65e1c3ae-a462-4345-8a28-c7d2c0388af8', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1780, 'Factor VIII (b-domain deleted recombinant) FC fusion protein (Injectable)', '45776421', 'factor VIII (b-domain deleted recombinant) FC fusion protein', 'bec39fa0-1524-4e6b-897f-db0ef093085e', '7/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1781, 'Factor VIII (Injectable)', '1352213', 'Factor VIII', '80fa03d2-cd4c-4155-9b57-1396c4fa42da', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1782, 'Factor XIII (Injectable)', '19106100', 'factor XIII', '8664978e-1814-4930-aca5-97a24455f6df', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1783, 'FALLBACK SOLO (Oral Pill)', '1589505', 'Levonorgestrel', '38c26cb9-052e-426f-9916-c13e7a5e62d0', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1784, 'False ragweed pollen extract (Injectable)', '40161714', 'false ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1785, 'Famciclovir (Oral Pill)', '1703603', 'famciclovir', 'eeeee9c4-8566-4100-8ca4-3df936a3365d', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1786, 'Famotidine (Injectable)', '953076', 'Famotidine', 'e3b13e23-122b-4bd4-95cf-b5a14b7afc05', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1787, 'Famotidine (Oral Disintegrating)', '953076', 'Famotidine', 'adb54fe50fcc4a01afc64aa3d3db45bb', '12/1/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1788, 'Famotidine (Oral Liquid)', '953076', 'Famotidine', 'a8010e10-68fd-455f-968f-d62a1c3e0ffd', '1/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1789, 'Famotidine (Oral Pill)', '953076', 'Famotidine', '387088a6-8eaa-fc49-8050-a546d0f0fd32', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1790, 'Famotidine/Ibuprofen (Oral Pill)', '953076', 'Famotidine', '558b9f26-37b2-423b-932d-25a37afe57ec', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1791, 'FANAPT (Oral Pill)', '19017241', 'iloperidone', '43452bf8-76e7-47a9-a5d8-41fe84d061f0', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1792, 'FARESTON (Oral Pill)', '1342346', 'Toremifene', '2cab8dd1-3a10-48e6-86ce-0e5275ed49e5', '11/29/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1793, 'FARXIGA (Oral Pill)', '44785829', 'dapagliflozin', 'fc6ae30e-868b-4ac9-b69d-900922503998', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1794, 'FASPRIN (Oral Disintegrating)', '1112807', 'Aspirin', '73859ea9-01a0-4c3d-97d4-17b9d3378899', '12/1/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1795, 'FAST FREEZE (Topical)', '938205', 'Camphor', '60c94da8-6c00-4544-a9a6-a3e87ebabd68', '11/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1796, 'Febuxostat (Oral Pill)', '19017742', 'febuxostat', 'ae1e0d8a-03fc-419b-9d44-afa68fbd5681', '1/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1797, 'Felbamate (Oral Liquid)', '795661', 'felbamate', '2e325d79-d0a4-4af7-b09b-96ee5a5b2a37', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1798, 'Felbamate (Oral Pill)', '795661', 'felbamate', 'ce919497-c2f3-4362-bfb7-cf4e82e10a5c', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1799, 'FELBATOL (Oral Liquid)', '795661', 'felbamate', '2f522701-397a-11de-8a39-0800200c9a66', '11/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1800, 'FELBATOL (Oral Pill)', '795661', 'felbamate', '2f522701-397a-11de-8a39-0800200c9a66', '11/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1801, 'FELDENE (Oral Pill)', '1146810', 'Piroxicam', '9d3e528b-a748-4bc5-b604-e7e9c5ab9183', '12/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1802, 'FEM PH (Vaginal)', '929549', 'Acetic Acid', '77237c50-aeb5-44a0-a1e6-ce1551b49f75', '5/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1803, 'Fenofibrate (Oral Pill)', '1551803', 'Fenofibrate', '194cd14a-d952-4507-91be-3f1d5371d3b8', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1804, 'FENOGLIDE (Oral Pill)', '1551803', 'Fenofibrate', '35e89d4e-45cf-4374-bf93-fca8d40d783b', '11/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1805, 'Fenoprofen (Oral Pill)', '1153928', 'Fenoprofen', 'ef59e72f-6218-4f42-8f00-d10a6a14223a', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1806, 'fentaNYL (Buccal)', '1154029', 'Fentanyl', 'ad7ac196-4c6e-4aab-8742-bdb9f38f4be6', '1/24/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1807, 'fentaNYL (Injectable)', '1154029', 'Fentanyl', '73cede3f-aff0-40b8-8a58-f5fc269d1b8d', '8/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1808, 'fentaNYL (Oral Lozenge)', '1154029', 'Fentanyl', '8c3a8b2e-3ec2-4fad-bb9f-838822d97e6f', '4/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1809, 'fentaNYL (Sublingual)', '1154029', 'Fentanyl', 'f969e2bc-6297-4e29-89d3-a3685a2c7c6b', '1/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1810, 'FERRALET 90 (Oral Pill)', '19011773', 'Ascorbic Acid', '2c9fd33d-4b38-42be-ad36-b1521ded47e1', '5/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1811, 'Ferric carboxymaltose (Injectable)', '43560392', 'ferric carboxymaltose', '517b4a19-45b3-4286-9f6a-ced4e10447de', '8/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1812, 'Ferric citrate (Oral Pill)', '45776202', 'ferric citrate', 'aadd18e0-3752-11e4-8510-0800200c9a66', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1813, '"Ferric oxide, saccharated (Injectable)"', '1395773', '"ferric oxide, saccharated"', 'f1ab1a22-2b99-4d27-8b5a-9c3bcd5e3040', '1/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1814, 'Ferric subsulfate solution (Topical)', '19095786', 'ferric subsulfate solution', 'e93bce8b-de3b-4477-be41-d361e68849c6', '11/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1815, 'FERRIPROX (Oral Pill)', '19011091', 'deferiprone', 'dc8cbc3d-026c-0db5-42e8-8e93d374dd23', '4/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1816, 'FERRLECIT (Injectable)', '1399177', 'Sodium ferric gluconate complex', 'b25b34ab-9cf1-4a2b-bdf2-5eaf66625999', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1817, 'Ferrous fumarate (Chewable)', '1595799', 'Ferrous fumarate', '5bdeee62-962f-4466-a1f4-ba0713d45478', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1818, 'Ferrous fumarate (Oral Pill)', '1595799', 'Ferrous fumarate', '4cafa90a-9903-40d0-b8be-6ad78018b4b6', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1819, 'Ferrous fumarate/Folic Acid (Oral Pill)', '1595799', 'Ferrous fumarate', '30138a3b-2759-48ee-afac-70eb294292f7', '10/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1820, 'Ferrous gluconate (Oral Pill)', '1396012', 'ferrous gluconate', '304fdee6-0290-4717-be3d-b367bec7e411', '9/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1821, 'Ferrous sulfate (Oral Liquid)', '1396131', 'ferrous sulfate', 'a017eb78-8c70-4b59-b7c0-22ec6945c1a1', '8/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1822, 'Ferrous sulfate (Oral Pill)', '1396131', 'ferrous sulfate', '91ff2cb4-1fb9-4125-9435-c9d008161203', '11/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1823, 'FEVERALL (Rectal)', '1125315', 'Acetaminophen', '3ade895b-5dca-4d81-9415-8091923162ff', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1824, 'FEXMID (Oral Pill)', '778711', 'cyclobenzaprine', '615f1e2f-63ec-4e20-bb74-293b5baf1d43', '10/24/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1825, 'Fexofenadine (Oral Disintegrating)', '1153428', 'fexofenadine', '06115cea-5a44-409d-85ed-bb71743491c1', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1826, 'Fexofenadine (Oral Liquid)', '1153428', 'fexofenadine', 'c5f2ac86-b6be-486d-b1d3-7704f56c3245', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1827, 'Fexofenadine (Oral Pill)', '1153428', 'fexofenadine', 'd1d8d0ec-2bdd-fb07-a051-d6353e3c240c', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1828, 'FIBER TAB (Oral Pill)', '940426', 'calcium polycarbophil', 'bee100da-b9c9-4261-b6e6-7b3db5715625', '9/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1829, 'FIBERCON (Oral Pill)', '940426', 'calcium polycarbophil', '80e507f2-d9bd-bc7b-2249-f5bfc8ac1845', '2/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1830, 'FIBRICOR (Oral Pill)', '1551803', 'Fenofibrate', 'b3149443-4baf-429b-a751-4a34a27f0249', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1831, 'Fibrinogen concentrate (human) (Injectable)', '19044986', 'fibrinogen concentrate (human)', '903dc8d0-39da-462c-9dac-004e0c7a26cc', '2/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1832, 'Fibrinogen/Thrombin (Transdermal)', '19054702', 'Fibrinogen', '5918e503-b457-48ab-b68b-243e29651d06', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1833, 'Fidaxomicin (Oral Pill)', '40239985', 'fidaxomicin', 'dd966338-c820-4270-b704-09ef75fa3ceb', '5/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1834, 'FINACEA (Topical)', '986790', 'Azelate', '6c5e836c-2851-4524-b91d-12ffadffd9ba', '5/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1835, 'Finasteride (Oral Pill)', '996416', 'Finasteride', 'c59f8018-fff8-4884-a3c8-bc306e2c8f64', '8/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1836, 'FIORICET (Oral Pill)', '1125315', 'Acetaminophen', '5d248332-87ff-45c2-be92-e9e8386a4749', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1837, 'FIORICET WITH CODEINE (Oral Pill)', '1125315', 'Acetaminophen', 'df9801fc-03fe-41da-a6b3-0f76788217c9', '12/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1838, 'FIORINAL (Oral Pill)', '1112807', 'Aspirin', 'a00c6776-e9ef-411b-9396-915c3787559a', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1839, 'FLANAX ANTACID (Oral Liquid)', '985247', 'Aluminum Hydroxide', '8d2e51f6-4b70-4b3d-856b-072fc5af2f72', '10/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1840, 'flavoxATE (Oral Pill)', '954853', 'Flavoxate', '22a99f74-2718-48b3-b686-caf102d3071c', '10/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1841, 'Flecainide (Oral Pill)', '1354860', 'Flecainide', 'b764c8b8-7e23-4016-830f-68312d84f3d3', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1842, 'FLEET ENEMA (Rectal)', '991710', '"Sodium Phosphate, Dibasic"', '0a201d6d-0e45-43ca-8e09-e8b0e10ed2f4', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1843, 'FLEET GLYCERIN SUPPOSITORIES ADULT (Rectal)', '961145', 'Glycerin', '28ebc9ae-0ffa-4bc7-859d-e084505917cf', '11/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1844, 'FLEET MINERAL OIL (Rectal)', '908523', 'Mineral Oil', '2528cb5e-437e-41f0-9c34-e9ce57404d8b', '2/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1845, 'FLEET SOF-LAX (Oral Pill)', '941258', 'Docusate', 'be5f87ac-044f-4b38-95c2-140bb60e1ba0', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1846, 'FLEXALL (Topical)', '901656', 'Menthol', '9361fcaa-ccf8-43ec-9c1e-2294377d19db', '6/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1847, 'FLEXBUMIN (Injectable)', '1344143', '"Albumin Human, USP"', '98b96ee2-86d2-4056-bdda-4d75d72d891f', '10/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1848, 'FLO-PRED (Oral Liquid)', '1550557', 'prednisolone', '980b3c11-a502-4235-bbff-af83a17ebcdf', '1/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1849, 'FLOMAX (Oral Pill)', '924566', 'tamsulosin', '0bef87bd-42fc-428f-b683-e0538b78f8d0', '3/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1850, 'Fluconazole (Injectable)', '1754994', 'Fluconazole', 'd3ca59bd-ae00-48ab-89aa-87c7f56e9989', '6/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1851, 'Fluconazole (Oral Liquid)', '1754994', 'Fluconazole', '29bd0efa-fb16-4e69-bb96-8f6bcf80b9f7', '1/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1852, 'Fluconazole (Oral Pill)', '1754994', 'Fluconazole', '82af879c-9ecf-4f9a-b00f-779ab4104a2f', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1853, 'Flucytosine (Oral Pill)', '1755112', 'Flucytosine', '58189ec7-118b-458a-8e4f-7867a97cfcbd', '11/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1854, 'Fludarabine (Injectable)', '1395557', 'fludarabine', '763d6c6d-cfed-4813-8cc5-41e78d357845', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1855, 'Fludrocortisone (Oral Pill)', '1555120', 'Fludrocortisone', 'bf927cd9-1891-4de4-b4be-743a26363a64', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1856, 'FLUMADINE (Oral Liquid)', '1763339', 'Rimantadine', '9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', '7/19/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1857, 'FLUMADINE (Oral Pill)', '1763339', 'Rimantadine', '9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', '11/29/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1858, 'Flumazenil (Injectable)', '19055153', 'Flumazenil', 'e6237019-490f-4162-bfe0-6e2d08c0a1be', '8/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1859, 'Fluocinolone (Implant)', '996541', 'fluocinolone', '4400e471-7402-11df-93f2-0800200c9a66', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1860, 'Fluocinolone (Otic)', '996541', 'fluocinolone', 'd2ffb64b-1614-4e2f-8125-9660ea3754f2', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1861, 'Fluocinolone (Shampoo)', '996541', 'fluocinolone', 'a52763d0-7024-48a8-9cca-3127333dfb01', '11/2/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1862, 'Fluocinolone (Topical)', '996541', 'fluocinolone', '8d55d846-c833-4040-b02d-ac7783311dd6', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1863, 'Fluocinolone/Hydroquinone/Tretinoin (Topical)', '996541', 'fluocinolone', 'a35fa709-5eb5-4429-b38f-f1e0019bf0ee', '4/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1864, 'Fluocinolone/Neomycin (Topical)', '996541', 'fluocinolone', 'e96ae9cf-e829-466f-b66d-ede83b4d8b3d', '7/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1865, 'Fluocinonide (Topical)', '955252', 'Fluocinonide', 'edb61362-d48f-487a-b15f-5ea3089d2f30', '6/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1866, 'FLUOR A DAY (Oral Liquid)', '19069022', 'Sodium Fluoride', '4c854364-e732-4dec-b1d1-b8a97e4e1176', '8/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1867, 'FLUOR A DAY CHEWABLE (Chewable)', '19069022', 'Sodium Fluoride', '4c854364-e732-4dec-b1d1-b8a97e4e1176', '8/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1868, 'FLUOR-OP (Ophthalmic)', '955583', 'Fluorometholone', '545776fe-63df-44ab-ace3-f3d73d2e0092', '8/7/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1869, 'Fluorescein/Proparacaine (Ophthalmic)', '996625', 'Fluorescein', 'dae037ad-dcb8-42e6-8996-e575922d7631', '1/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1870, 'FLUORIDEX (Toothpaste)', '19069022', 'Sodium Fluoride', 'd05f94c8-3020-4f7c-877a-d64d6841a122', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1871, 'FLUORIDEX DAILY DEFENSE SENSITIVITY (Toothpaste)', '927322', 'potassium nitrate', 'fed4c40e-e9ce-4e99-8223-325af383eaa8', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1872, 'FLUORITAB (Chewable)', '19069022', 'Sodium Fluoride', 'cd18915a-0b63-4fed-aebe-0c2fe60d8505', '10/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1873, 'Fluorometholone (Ophthalmic)', '955583', 'Fluorometholone', 'b810b4c3-ac7a-4ba5-85bf-ebfaf3b1dabf', '2/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1874, 'Fluorometholone/Tobramycin (Ophthalmic)', '955583', 'Fluorometholone', 'cbdf11f4-d84c-4c4a-aac2-f8c23304fb02', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1875, 'FLUOROPLEX (Topical)', '955632', 'Fluorouracil', '258bb79a-56b3-4f46-ade6-7331ec031074', '11/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1876, 'Fluorouracil (Injectable)', '955632', 'Fluorouracil', 'beb8c6c5-4b6e-4770-b6d4-718e33c7a2ff', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1877, 'Fluorouracil (Topical)', '955632', 'Fluorouracil', '58fa81e2-9dbc-4cef-82d4-e5dc4aec5b26', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1878, 'FLUoxetine (Oral Liquid)', '755695', 'Fluoxetine', '142f9b27-65a7-4add-bdcc-2468695fedff', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1879, 'FLUoxetine (Oral Pill)', '755695', 'Fluoxetine', '23899405-007b-48d9-82a9-a530b8e90784', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1880, 'FLUoxetine/OLANZapine (Oral Pill)', '755695', 'Fluoxetine', '2f6ceda3-3edc-4427-98a6-23e3c930c44d', '3/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1881, 'Fluoxymesterone (Oral Pill)', '1555887', 'Fluoxymesterone', '5328c194-5650-4d1f-9e28-8cea038cce81', '10/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1882, 'fluPHENAZine (Injectable)', '756018', 'Fluphenazine', '2a8ef5f7-c806-470d-96ff-3b3827dc8938', '12/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1883, 'fluPHENAZine (Oral Liquid)', '756018', 'Fluphenazine', '0860b3f3-3116-40f8-bcb0-e5c47731bdc8', '12/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1884, 'fluPHENAZine (Oral Pill)', '756018', 'Fluphenazine', '33bffb02-f1cc-4554-a3b7-9f2291feb4ac', '9/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1885, 'FLURA-DROPS (Oral Liquid)', '19069022', 'Sodium Fluoride', 'ddb4c0d6-6739-2a4b-8a90-1c8aec94f4ab', '5/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1886, 'Flurandrenolide (Topical)', '956266', 'Flurandrenolide', 'a0949773-c75f-4ef0-a69c-1abd978340d0', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1887, 'Flurazepam (Oral Pill)', '756349', 'Flurazepam', '2f2db2f5-49d3-4d47-a08a-628df49d2120', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1888, 'Flurbiprofen (Ophthalmic)', '1156378', 'Flurbiprofen', '5a4d5684-b20a-4fde-a808-404c7b9d25b3', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1889, 'Flurbiprofen (Oral Pill)', '1156378', 'Flurbiprofen', 'c9449292-e81e-486a-84e1-bb9dd0f612c5', '6/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1890, 'Flutamide (Oral Pill)', '1356461', 'Flutamide', 'bae781d4-7101-4008-9af2-6e76b5e1c408', '9/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1891, 'Fluticasone (Topical)', '1149380', 'fluticasone', '0e20d1cc-5c7a-4e0d-810b-b94c4d6dd1c0', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1892, 'Fluvastatin (Oral Pill)', '1549686', 'fluvastatin', 'e38126a5-9d6a-422f-812c-a01610108162', '8/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1893, 'fluvoxaMINE (Oral Pill)', '751412', 'Fluvoxamine', '727a5eb4-ac82-444d-8381-44c34ee3b895', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1894, 'FLUXID (Oral Disintegrating)', '953076', 'Famotidine', 'adb54fe50fcc4a01afc64aa3d3db45bb', '12/1/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1895, 'FML (Ophthalmic)', '955583', 'Fluorometholone', 'c374d65a-35b5-4c9e-9069-5148875dc4df', '2/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1896, 'FML FORTE LIQUIFILM (Ophthalmic)', '955583', 'Fluorometholone', 'b810b4c3-ac7a-4ba5-85bf-ebfaf3b1dabf', '2/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1897, 'FML-S (Ophthalmic)', '955583', 'Fluorometholone', '9d71d7fd-2b25-4163-922f-018ed8c5171f', '2/23/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1898, 'FOILLE (Topical)', '917006', 'Benzocaine', 'e2eca808-e97b-43e0-aa51-7025cc61c7a8', '3/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1899, 'FOLBIC (Oral Pill)', '19111620', 'Folic Acid', '99121923-2b2d-427a-865a-e8b7dd052569', '12/13/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1900, 'FOLCAPS (Oral Pill)', '19111620', 'Folic Acid', '47d368ab-5165-4ce3-b993-f5d72bb5b238', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1901, 'Folic Acid (Injectable)', '19111620', 'Folic Acid', 'e215318c-4f8b-4711-ae76-f370d1da0f3b', '9/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1902, 'Folic Acid (Oral Pill)', '19111620', 'Folic Acid', 'f2c543b3-1b17-4072-8b86-ddecaf3445d6', '6/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1903, 'Folic Acid/Heme iron polypeptide/Polysaccharide iron complex/Vitamin B 12 (Oral Pill)', '19111620', 'Folic Acid', 'a7c1400a-d230-45db-afff-d5f70b091ee9', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1904, 'Folic Acid/Polysaccharide iron complex/Vitamin B 12 (Oral Pill)', '19111620', 'Folic Acid', 'ed2308e3-5310-41bd-9333-615c26183493', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1905, 'Folic Acid/Vitamin B 12/Vitamin B6 (Oral Pill)', '19111620', 'Folic Acid', '8751d1f4-7ed7-40ce-bc4d-bde94d96a859', '2/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1906, 'Follitropin Alfa (Injectable)', '1542948', 'Follitropin Alfa', 'ae85b9c3-e7eb-4981-a5d9-346050e8f189', '5/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1907, 'FOLTABS (Oral Pill)', '19111620', 'Folic Acid', 'a0c87255-6105-4ae6-a698-dae0115265ab', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1908, 'Fomepizole (Injectable)', '19022479', 'fomepizole', 'a306cd11-9acf-45f1-91ec-9fef2b08fdb1', '8/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1909, 'FORADIL (Inhalant)', '1196677', 'formoterol', '04212000-ec03-42a3-8b9e-3a28237f415e', '3/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1910, 'FORANE (Inhalant)', '782043', 'Isoflurane', '3d30eb8d-a62e-475f-926b-78ba63bee9c8', '12/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1911, 'FORMA-RAY (Topical)', '1756524', 'Formaldehyde', '74a85045-d668-4c98-8302-099a063cca3a', '10/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1912, 'FORMADON (Topical)', '1756524', 'Formaldehyde', '36b221c6-4318-4e2a-8cd0-d5558b04cdc6', '10/7/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1913, 'Formaldehyde (Topical)', '1756524', 'Formaldehyde', '74a85045-d668-4c98-8302-099a063cca3a', '10/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1914, 'Formoterol (Inhalant)', '1196677', 'formoterol', '04212000-ec03-42a3-8b9e-3a28237f415e', '3/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1915, 'FORTICAL (Nasal)', '1537655', 'salmon calcitonin', 'e662c321-8c1b-4829-b4c9-459284f654c3', '9/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1916, 'FOSAMAX (Oral Pill)', '1557272', 'Alendronate', 'e6ffadda-2ace-4e99-8bb4-75631c54f39b', '3/10/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1917, 'FOSAMAX PLUS D (Oral Pill)', '1557272', 'Alendronate', 'd4a71df1-7488-46a2-8ded-dd0db56de618', '12/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1918, 'Fosamprenavir (Oral Pill)', '1736829', 'fosamprenavir', '009575f9-74e8-4a6d-9fa6-3cae72fd01c3', '5/26/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1919, 'Foscarnet (Injectable)', '1724700', 'Foscarnet', 'a09299d5-9c55-4cef-aed0-3a6a45532289', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1920, 'FOSCAVIR (Injectable)', '1724700', 'Foscarnet', '90e3da4e-3b1f-428b-99ca-e4bed1c80028', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1921, 'Fosinopril (Oral Pill)', '1363749', 'Fosinopril', 'cfd96e4b-fcf1-4959-aaf4-7aabe0d80ab5', '7/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1922, 'Fosinopril/Hydrochlorothiazide (Oral Pill)', '1363749', 'Fosinopril', '7f60424f-b90c-459c-ae53-b732ee3d67b5', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1923, 'FOSRENOL (Chewable)', '990028', 'lanthanum carbonate', '21bc55ec-5f23-4d0b-9488-d5b08b7c0fc2', '4/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1924, 'FRAGMIN (Injectable)', '1301065', 'Dalteparin', '23527b8b-9b28-4e6d-9751-33b143975ac7', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1925, 'FRESHKOTE (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '6397ebc5-0670-4dc0-8660-6c0f733e6fd1', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1926, 'FROVA (Oral Pill)', '1189458', 'frovatriptan', '8ce8bf0a-8b21-41a5-bbea-71302312c2c5', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1927, 'Frovatriptan (Oral Pill)', '1189458', 'frovatriptan', '35941e47-106d-414d-9529-0a56af7396d5', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1928, 'Fructose/Glucose/Phosphoric acid (Oral Liquid)', '956691', 'Fructose', '24d87e9b-58d5-4753-a123-6e1a5336e4ed', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1929, 'Fructose/Glucose/Sodium citrate (Oral Liquid)', '956691', 'Fructose', '728376f5-6cab-404e-b519-f6c595291d6f', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1930, 'FUNGI-NAIL (Topical)', '914244', 'Undecylenate', 'bc737ee2-0651-4f02-8157-bbed81507c35', '4/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1931, 'FUNGICURE MAXIMUM STRENGTH (Topical)', '914244', 'Undecylenate', '0eca7b88-8c23-4fff-a07b-7f850832ff10', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1932, 'FUNGOID (Topical)', '907879', 'Miconazole', '250d0a66-01d1-4aba-8f24-4cb4ca529fda', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1933, 'Furosemide (Injectable)', '956874', 'Furosemide', '71b48f4d-9936-448c-9e3a-33f1182e1039', '7/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1934, 'Furosemide (Oral Liquid)', '956874', 'Furosemide', '9ca6640e-dbfb-4bcd-bf3e-c8c68b7d41a1', '4/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1935, 'Furosemide (Oral Pill)', '956874', 'Furosemide', 'ea5805d3-400b-4978-b27d-bd2b5b1cb636', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1936, 'Fusarium oxysporum vasinfectum extract (Injectable)', '40167646', 'Fusarium oxysporum vasinfectum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1937, 'G-ZYNCOF (Oral Liquid)', '1119510', 'Dextromethorphan', 'c1aa7060-0f32-4ea1-8e2e-1aa131bd55fc', '12/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1938, 'Gabapentin (Oral Liquid)', '797399', 'gabapentin', '3255245c-6ae6-46ab-a1c1-0b8d4d4cdaa2', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1939, 'Gabapentin (Oral Pill)', '797399', 'gabapentin', '9508cb1b-3f9f-48bd-8f34-a6fbb68c9a4a', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1940, 'GABITRIL (Oral Pill)', '715458', 'tiagabine', '175f2d9f-449b-4d95-a4b9-94f891f8e3ae', '8/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1941, 'Galantamine (Oral Liquid)', '757627', 'Galantamine', 'd5b0e225-e94d-4324-afb2-b6e51c949dd0', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1942, 'Galantamine (Oral Pill)', '757627', 'Galantamine', '7dc963dd-84d6-45f3-857f-46a44fe9edc8', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1943, 'Gallium nitrate (Injectable)', '19097605', 'gallium nitrate', '8bc2ddf8-d695-46b3-bf76-9f85ce6027e3', '3/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1944, 'GALZIN (Oral Pill)', '979096', 'Zinc Acetate', 'a0c72bff-20f3-4241-b966-34a95178d1a3', '6/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1945, 'Gamma-Aminobutyrate/Melatonin/Valerian root extract (Oral Pill)', '19123846', 'gamma-Aminobutyrate', 'b450210c-516d-4068-b792-8bed31b26e32', '12/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1946, 'GAMMAGARD (Injectable)', '19117912', 'Immunoglobulin G', '9d42adca-0dd7-4df7-864d-5a7feee52130', '3/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1947, 'Ganciclovir (Injectable)', '1757803', 'Ganciclovir', '35addab5-09db-4f8a-9c69-6fbce33ecc37', '4/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1948, 'Ganciclovir (Oral Pill)', '1757803', 'Ganciclovir', '3406db8a-5ae9-4120-94bd-036701adbeca', '7/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1949, 'GANITE (Injectable)', '19097605', 'gallium nitrate', '8bc2ddf8-d695-46b3-bf76-9f85ce6027e3', '3/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1950, 'GARAMYCIN (Ophthalmic)', '919345', 'Gentamicin Sulfate (USP)', 'aa2b006d-f67c-4c71-abce-55d55295b5bb', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1951, 'Garrys oak pollen extract (Injectable)', '40172997', 'Garrys oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1952, 'GAS-X (Chewable)', '966991', 'Simethicone', 'c70b8a69-f853-4981-aff5-389aa58f7169', '6/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1953, 'GAS-X (Oral Pill)', '966991', 'Simethicone', 'ee9a8404-0653-433f-90e5-7ac69bdab8df', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1954, 'GAS-X EXTRA STRENGTH (Oral Pill)', '966991', 'Simethicone', '980362cf-1d15-4286-8ab8-bfeac7d34f4a', '12/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1955, 'GASTROCROM (Oral Liquid)', '1152631', 'Cromolyn', '00623958-a8fe-47d1-a0d2-0aa4e2f7966e', '6/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1956, 'Gatifloxacin (Ophthalmic)', '1789276', 'gatifloxacin', '3dd6ac6b-877a-46c7-bbc8-c7119f341abe', '4/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1957, 'GATTEX (Injectable)', '43013171', 'teduglutide', '66b69c1e-b25c-44d3-b5ff-1c1de9a516fa', '1/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1958, 'GAVILAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '19672e23-1606-497e-a112-939af33af195', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1959, 'GAVILYTE-N (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '27195187-75a3-431f-90d9-84da1b94e849', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1960, 'GAVISCON (Chewable)', '985247', 'Aluminum Hydroxide', '7f367927-c366-465c-a059-e2cfb337d562', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1961, 'GAVISCON (Oral Liquid)', '985247', 'Aluminum Hydroxide', '2d74e5bc-1f10-4fb6-9258-cd906e360013', '8/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1962, 'GAVISCON CHEWABLE (Chewable)', '985247', 'Aluminum Hydroxide', '7f367927-c366-465c-a059-e2cfb337d562', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1963, 'Gefitinib (Oral Pill)', '1319193', 'gefitinib', '827d60e8-7e07-41b7-c28b-49ef1c4a5a41', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1964, 'GEL-KAM (Oral Gel)', '1036094', 'Stannous Fluoride', '8c2c3c5c-ddef-4a4d-8bc3-5a98c577e74c', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1965, 'GELATO PERIO RINSE (Mouthwash)', '1036094', 'Stannous Fluoride', 'f8721665-b304-4b1c-9bda-385d7671d099', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1966, 'GELATO SODIUM FLUORIDE (Oral Foam)', '19069022', 'Sodium Fluoride', 'bcf97201-341a-4aa5-9aa8-1d73bb55b881', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1967, 'GELATO SODIUM FLUORIDE (Oral Gel)', '19069022', 'Sodium Fluoride', 'a857af18-8eb8-47dc-bb26-73a321ed643c', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1968, 'GELATO SODIUM FLUORIDE (Toothpaste)', '19069022', 'Sodium Fluoride', '8b267c4d-4d07-421a-85c6-0451012d7dae', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1969, 'GELNIQUE (Topical)', '918906', 'oxybutynin', 'c6754623-b14c-4fc3-8719-48eee3119156', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1970, 'Gemcitabine (Injectable)', '1314924', 'gemcitabine', '6004fba9-49c0-4781-8134-44bf7cf196fd', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1971, 'Gemfibrozil (Oral Pill)', '1558242', 'Gemfibrozil', '22ea8379-50aa-4550-98f0-708d6da97e79', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1972, 'GENERLAC (Oral Liquid)', '987245', 'Lactulose', '2a2eee86-273e-4718-8f78-34f15e193040', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1973, 'GENTAK (Ophthalmic)', '919345', 'Gentamicin Sulfate (USP)', 'a357d23d-1f10-44ce-a2fa-a6a5e03e7739', '7/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1974, 'Gentamicin Sulfate (USP) (Injectable)', '919345', 'Gentamicin Sulfate (USP)', '1bf429e3-6e0c-4244-ba1a-af1a3a153c24', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1975, 'Gentamicin Sulfate (USP) (Ophthalmic)', '919345', 'Gentamicin Sulfate (USP)', 'c5fac820-18a1-452f-bc2c-58ed73babb0c', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1976, 'Gentamicin Sulfate (USP) (Topical)', '919345', 'Gentamicin Sulfate (USP)', '4cfbe37e-11d6-46fc-b287-0561387b17b7', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1977, 'GENTEAL (Ophthalmic)', '902251', 'hypromellose', '3c4ea323-2407-4f9d-b44f-eebf127924ba', '10/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1978, 'GENTEAL GEL DROPS (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'c9dcab71-3ec8-45ff-83f0-132c6c6e63bd', '10/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1979, 'Gentian Violet (Topical)', '959362', 'Gentian Violet', '7b4e6572-cb44-491d-8063-f7519307a8e5', '3/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1980, 'GENTLELAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '0d820dcc-440a-4036-86e9-fdb30cac9573', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1981, 'GEOCILLIN (Oral Pill)', '1740546', 'Carbenicillin', '02010995-9826-4a67-945b-f3022e6081df', '9/14/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1982, 'GEODON (Injectable)', '712615', 'ziprasidone', '036db1f2-52b3-42a0-acf9-817b7ba8c724', '2/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1983, 'GEODON (Oral Pill)', '712615', 'ziprasidone', 'a3aa96bb-2cc1-4316-b94c-61593e927505', '7/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1984, 'GERI-HYDROLAC (Topical)', '19011035', 'Lactate', '5d2efce6-3cb4-4c86-b899-c1611a25384e', '6/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1985, 'Giant ragweed pollen extract (Injectable)', '40161718', 'giant ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1986, 'Giant ragweed pollen extract/Western ragweed pollen extract (Injectable)', '40161718', 'giant ragweed pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1987, 'GIAZO (Oral Pill)', '934262', 'balsalazide', 'fc5146c6-448b-44c9-bb06-8bdfe484f2f1', '5/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1988, 'GILOTRIF (Oral Pill)', '43533090', 'Afatinib', 'fd638e5e-8032-e7ca-0179-95e96ab5d387', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1989, 'GILPHEX (Oral Pill)', '1163944', 'Guaifenesin', '80a33cba-9577-402a-84bc-1507c439c933', '4/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1990, 'GINGI MED (Mouthwash)', '1036094', 'Stannous Fluoride', 'e07e291b-2cdd-444a-a510-1e9199323f38', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1991, 'Glimepiride (Oral Pill)', '1597756', 'glimepiride', '1249298e-9d2c-41e6-94ac-95f8e75d6c26', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1992, 'glipiZIDE (Oral Pill)', '1560171', 'Glipizide', '2e51d1ae-a486-4d7a-b5ee-2324c8c42fb2', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1993, 'GlipiZIDE/metFORMIN (Oral Pill)', '1560171', 'Glipizide', '0e7bfe7f-c0c5-4ef1-a7bf-9b01712621f0', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1994, 'GLUCAGEN (Injectable)', '1560278', 'Glucagon', 'f09feb8e-6651-4708-a811-bb5264712059', '1/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1995, 'Glucagon (Injectable)', '1560278', 'Glucagon', 'ff16e4b1-3668-4cb4-91a4-77ee509cd6f6', '5/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1996, 'Glucarpidase (Injectable)', '42709319', 'glucarpidase', 'acaef5a6-b740-40e3-8ffe-74a75c74745c', '4/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1997, 'GLUCOPHAGE (Oral Pill)', '1503297', 'Metformin', '4a0166c7-7097-4e4a-9036-6c9a60d08fc6', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1998, 'Glucose (Injectable)', '1560524', 'Glucose', 'c8758d46-17c8-4fcd-9a0f-e73a2dad6860', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(1999, 'Glucose (Oral Gel)', '1560524', 'Glucose', '39edd887-b89f-4765-8fac-72df3ba3efc3', '9/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2000, 'Glucose (Oral Liquid)', '1560524', 'Glucose', 'fe237543-f1f9-42f9-a262-d34b581cfeb3', '12/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2001, 'Glucose/Magnesium acetate/Potassium Acetate/Sodium Chloride (Injectable)', '1560524', 'Glucose', '85c08b62-8de0-42d2-8cdc-fe42e6b605d7', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2002, 'Glucose/Potassium Chloride (Injectable)', '1560524', 'Glucose', '45de5402-5e61-4bbd-8bbc-5e3392c9920e', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2003, 'Glucose/Potassium Chloride/Sodium Chloride (Injectable)', '1560524', 'Glucose', '01321de3-bf0b-4460-9aee-511406ee101e', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2004, 'Glucose/Sodium Chloride (Injectable)', '1560524', 'Glucose', '7949edf6-3afd-48cb-9f02-5136d69f9e27', '12/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2005, 'GLUCOTROL (Oral Pill)', '1560171', 'Glipizide', '504567d2-e4f1-428d-b524-f29db76e6dfb', '1/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2006, 'Glutamine (Oral Liquid)', '19060985', 'Glutamine', 'cd3fb572-c5b1-43da-aea2-31208985f544', '7/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2007, 'GLUTOSE (Oral Gel)', '1560524', 'Glucose', '39edd887-b89f-4765-8fac-72df3ba3efc3', '9/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2008, 'GLY-OXIDE (Mucosal)', '958999', 'carbamide peroxide', '086a0b82-e947-41c9-89e7-ba06483960c9', '7/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2009, 'glyBURIDE (Oral Pill)', '1559684', 'Glyburide', 'f26d05c9-d01b-46ab-933d-a01ea488ec9b', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2010, 'GlyBURIDE/metFORMIN (Oral Pill)', '1559684', 'Glyburide', 'e57d2503-11d2-44cd-a4a6-6981db0dec34', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2011, 'Glycerin (Ophthalmic)', '961145', 'Glycerin', '00071697-4ac6-4962-8eee-388b8b52bd40', '11/23/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2012, 'Glycerin (Oral Gel)', '961145', 'Glycerin', '0d371e48-d722-4b77-b354-5a44179247bc', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2013, 'Glycerin (Rectal)', '961145', 'Glycerin', '5dcea9dc-51f7-4de8-ba41-1bebfd2a6671', '10/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2014, 'Glycerin (Topical)', '961145', 'Glycerin', 'a6d4c5a0-8276-4d02-9573-b439be2780a4', '3/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2015, 'Glycerin/Hypromellose/Polyethylene Glycol 400 (Ophthalmic)', '961145', 'Glycerin', 'ac9fb8ee-d0b9-43dc-900b-1362b56974cc', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2016, 'Glycerin/Naphazoline (Ophthalmic)', '961145', 'Glycerin', 'a26ef66e-2def-4c98-9959-d40d4cfe3108', '2/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2017, 'Glycerin/Naphazoline/Zinc Sulfate (Ophthalmic)', '961145', 'Glycerin', 'a710be3f-fa5b-46a6-87b5-5a4d1f807e1c', '4/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2018, 'Glycerin/Petrolatum/Phenylephrine/Pramoxine (Rectal)', '961145', 'Glycerin', 'fb170371-2e5d-43ca-a259-538a973ee3b8', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2019, 'Glycerin/Phenol (Mucosal)', '961145', 'Glycerin', '882c940c-b3c3-4aa4-8d64-e4260f066ff4', '3/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2020, 'Glycerin/Propylene glycol (Ophthalmic)', '961145', 'Glycerin', '5a435dbc-669f-49c9-abf2-5e35f1e3d578', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2021, 'Glycine (Irrigation)', '962398', 'Glycine', 'f4d83550-42de-44c7-b8d5-1d0debc6aec2', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2022, 'GLYCOLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '5e25cd00-69a8-4d83-b3a4-d97fffeaf893', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2023, 'Glycopyrrolate (Injectable)', '963353', 'Glycopyrrolate', 'd5a18d74-0d40-46e2-aa0a-41d18609a536', '6/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2024, 'Glycopyrrolate (Oral Liquid)', '963353', 'Glycopyrrolate', 'd200bd44-9856-4104-a29e-a4cca3db6737', '6/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2025, 'Glycopyrrolate (Oral Pill)', '963353', 'Glycopyrrolate', 'a9fe52b4-9290-4e26-a142-1506572bc217', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2026, 'GLYNASE (Oral Pill)', '1559684', 'Glyburide', 'a7fce80a-2f13-43cc-8e1c-561f7d3ec3d5', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2027, 'GLYTONE (Topical)', '976778', 'hydroquinone', 'f1fd0340-7975-435f-9de8-3064c6e2250e', '8/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2028, 'GOLD BOND ANTI-ITCH INTENSIVE RELIEF (Topical)', '916662', 'dimethicone', '7c0f98df-6900-4fe5-abee-8378799ea754', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2029, 'GOLD BOND BABY CORNSTARCH PLUS (Topical)', '40230159', 'cornstarch', '5654facc-ad51-4501-a505-9c0b2035e653', '9/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2030, 'GOLD BOND BODY POWDER EXTRA STRENGTH (Topical)', '901656', 'Menthol', 'dd74205d-4520-417e-b43f-6622c35c1971', '1/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2031, 'GOLD BOND BODY POWDER ORIGINAL STRENGTH (Topical)', '901656', 'Menthol', 'dd74205d-4520-417e-b43f-6622c35c1971', '1/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2032, 'GOLD BOND FOOT POWDER MAXIMUM STRENGTH (Topical)', '901656', 'Menthol', '9074c659-dea5-4656-8abb-01f0b1a6927e', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2033, 'GOLD BOND LOTION (Topical)', '916662', 'dimethicone', '33cc1470-f0c2-4e25-bc49-ca23e3b195f0', '1/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2034, 'GOLD BOND ULTIMATE ECZEMA RELIEF (Topical)', '986261', 'Colloidal oatmeal', '52744c77-278f-40b1-a356-14ae4366389b', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2035, 'Golimumab (Injectable)', '19041065', 'golimumab', '9e260a47-55af-4c92-8d88-a86ccc767fff', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2036, 'Gonadorelin (Injectable)', '19089810', 'Gonadorelin', '34d9ef24-7c00-4c5a-8851-dc9a9885eb8f', '8/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2037, 'GONAL F (Injectable)', '1542948', 'Follitropin Alfa', 'ae85b9c3-e7eb-4981-a5d9-346050e8f189', '5/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2038, 'GONIOSOFT (Ophthalmic)', '902251', 'hypromellose', 'b9885de2-bd4c-c5c8-7ce3-c3f1669e74ea', '12/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2039, 'GONIOVISC (Ophthalmic)', '902251', 'hypromellose', 'b8b57c41-aae6-4cbd-8fbf-0a1c6fa196d9', '4/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2040, 'GOODY''S BODY PAIN (Oral Powder)', '1125315', 'Acetaminophen', '055d0288-61d4-48bc-b91f-6ecc1969beb8', '11/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2041, 'GOODY''S EXTRA STRENGTH (Oral Powder)', '1125315', 'Acetaminophen', '16d774cc-4247-4bf8-9b5a-c338ffebda3d', '11/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2042, 'GOODY''S PM (Oral Powder)', '1125315', 'Acetaminophen', 'db5d6c2b-688e-4e88-a42d-0fa2b0d8140b', '12/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2043, 'Gramicidin/Neomycin/Polymyxin B (Ophthalmic)', '963742', 'Gramicidin', '94e3b620-f9b2-4c8b-9ee8-8b27207a2cab', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2044, 'Granisetron (Injectable)', '1000772', 'Granisetron', 'af68579f-c863-4535-94af-a4126b43c182', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2045, 'Granisetron (Oral Pill)', '1000772', 'Granisetron', '02dc4c34-04e8-4f16-8109-b04d600a9c61', '3/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2046, 'GRASTEK (Sublingual)', '40161488', 'Timothy grass pollen extract', '1d7f3e56-c233-47a4-9bcd-80098ffff47d', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2047, 'Green ash pollen extract/White ash pollen extract (Injectable)', '40161734', 'green ash pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2048, 'GRIS-PEG (Oral Pill)', '1763779', 'Griseofulvin', '20aa6571-ee10-4dc1-9be9-018aa0a680fc', '11/5/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2049, 'Griseofulvin (Oral Liquid)', '1763779', 'Griseofulvin', '82f52d21-eacd-4edf-8ad5-a8ef090ffa2a', '4/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2050, 'Griseofulvin (Oral Pill)', '1763779', 'Griseofulvin', '993f0609-0f63-4bd5-b383-a19a00945c7e', '1/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2051, 'Groundsel pollen extract (Injectable)', '40172352', 'groundsel pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2052, 'guaiFENesin (Oral Granules)', '1163944', 'Guaifenesin', 'fd8a69aa-eb75-4e7a-8b6e-3361f810c578', '6/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2053, 'guaiFENesin (Oral Liquid)', '1163944', 'Guaifenesin', '60e25a79-ec9a-4266-9f95-6f2848ce69cd', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2054, 'guaiFENesin (Oral Pill)', '1163944', 'Guaifenesin', '43829ee3-23a7-4430-8a08-a5df09fc564d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2055, 'guaiFENesin/HYDROcodone (Oral Liquid)', '1163944', 'Guaifenesin', '1d0c2c03-ca11-30b1-e054-00144ff8d46c', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2056, 'guaiFENesin/Phenylephrine (Oral Liquid)', '1163944', 'Guaifenesin', '9ebee4c3-c0fb-417e-901f-eaaf678654f9', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2057, 'guaiFENesin/Phenylephrine (Oral Pill)', '1163944', 'Guaifenesin', 'ae9f4939-6a79-4f68-a58e-89246e36e158', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2058, 'guaiFENesin/Pseudoephedrine (Oral Pill)', '1163944', 'Guaifenesin', '383281d7-0d25-4423-ace2-d2985f2c37d0', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2059, 'guanFACINE (Oral Pill)', '1344965', 'Guanfacine', 'c6e30fc7-5ad3-41c1-a673-b4db53f2b98f', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2060, 'Guanidine (Oral Pill)', '766337', 'Guanidine', '903fbd33-e5d9-41fb-9414-7bd6f42a8593', '8/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2061, 'GYNE-LOTRIMIN (Vaginal)', '1000632', 'Clotrimazole', '79ee7b42-9934-472c-8e08-cda31be9e72d', '3/29/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2062, 'GYNOL II (Vaginal)', '969444', 'Nonoxynol-9', 'eaf86a36-0573-4c39-9324-88919c4d009b', '12/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2063, '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine (Injectable)"', '529118', '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine"', '8143d01c-4911-40db-95b2-47f3ebea2a7d', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2064, 'Halcinonide (Topical)', '966468', 'Halcinonide', 'e60d0691-0628-4c98-9a17-f4a89822baf2', '1/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2065, 'HALDOL (Injectable)', '766529', 'Haloperidol', '27cfe684-7d11-4f37-9c8b-b2bdd6b5348e', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2066, 'HALLS (Oral Lozenge)', '901656', 'Menthol', '5f4af8e8-8550-45c7-a199-694efac9e7be', '4/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2067, 'Halobetasol (Topical)', '949759', 'halobetasol', 'c420da92-a3e3-4760-8cad-e50cbacebfeb', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2068, 'HALOG (Topical)', '966468', 'Halcinonide', 'e60d0691-0628-4c98-9a17-f4a89822baf2', '1/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2069, 'Haloperidol (Injectable)', '766529', 'Haloperidol', '7b01bd62-d0fa-4229-9a09-f90893dd6dbd', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2070, 'Haloperidol (Oral Liquid)', '766529', 'Haloperidol', '2d848e8c-de42-4a09-96f1-a2d250af059d', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2071, 'Haloperidol (Oral Pill)', '766529', 'Haloperidol', '0027b8a3-73bf-4005-a7e3-b035f451a861', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2072, 'HALOTESTIN (Oral Pill)', '1555887', 'Fluoxymesterone', '09bafc2d-1893-4618-86dc-e9403407cd41', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2073, 'Hard maple pollen extract (Injectable)', '40161785', 'hard maple pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2074, 'Hard maple pollen extract/Red maple pollen extract/Silver maple pollen extract (Injectable)', '40161785', 'hard maple pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2075, 'HARVONI (Oral Pill)', '45775020', 'ledipasvir', '1a1c555d-2fdf-4150-8ace-dbc770c226bf', '12/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2076, 'Hazelnut pollen extract (Injectable)', '40161789', 'hazelnut pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2077, 'HEAD & SHOULDERS (Shampoo)', '944360', 'zinc pyrithione', '83f0f5e0-2883-4c68-a6bc-f22f6c9d9f80', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2078, 'HEALTHYLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '9b14e26f-17cb-4890-bb47-9db79f352bd2', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2079, 'Heavy mineral oil (Oral Liquid)', '998394', 'Heavy mineral oil', '9f943fdf-5058-4e18-ba96-6be112bf72ca', '3/13/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2080, 'HECORIA (Oral Pill)', '950637', 'Tacrolimus', '95b03516-34b0-4438-a05c-918d80f70091', '12/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2081, 'HECTOROL (Oral Pill)', '1512446', 'Doxercalciferol', 'dc676bc5-f3f7-4755-92e1-1814498c1f4f', '1/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2082, 'Helium (Inhalant)', '19067073', 'Helium', 'e1d2805c-1ede-4de5-b06e-f5cffc3ffd3c', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2083, 'Helium/Oxygen (Inhalant)', '19067073', 'Helium', '3d03af31-bb94-4dd5-bccd-9592cd0bc74c', '8/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2084, 'HEMANGEOL (Oral Liquid)', '1353766', 'Propranolol', 'b6f9dd2a-632b-87eb-70f0-b2064d7ed48a', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2085, 'HEMOBAN (Mucosal)', '957393', 'aluminum chloride', '7054c4ea-fee2-4627-aff2-e99ceb1080c7', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2086, 'HEMOCYTE (Oral Pill)', '1595799', 'Ferrous fumarate', 'b8ea96eb-099a-41c0-b894-dd4fc9428863', '10/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2087, 'HEMOCYTE-F (Oral Pill)', '1595799', 'Ferrous fumarate', 'c484c59d-4178-4283-8e6c-e3a4567a78f1', '10/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2088, 'HEMOFIL (Injectable)', '1352213', 'Factor VIII', 'b8953ff7-3bba-4a0b-a486-f26fb81f05d9', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2089, '"Heparin, porcine (Injectable)"', '19055137', '"heparin, porcine"', '7014808d-cec9-4b2c-8eb5-940493e356ab', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2090, 'HEPSERA (Oral Pill)', '1729323', 'adefovir', '80595d45-2224-47d1-bd5c-4b11a824e5bd', '6/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2091, 'HERCEPTIN (Injectable)', '1387104', 'trastuzumab', '492dbdb2-077e-4064-bff3-372d6af0a7a2', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2092, 'HESPAN (Injectable)', '19077117', 'Hetastarch', '6d1c2560-f289-49a9-9471-71199492fd8e', '2/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2093, 'Hetastarch (Injectable)', '19077117', 'Hetastarch', '6d1c2560-f289-49a9-9471-71199492fd8e', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2094, 'HETLIOZ (Oral Pill)', '44814600', 'tasimelteon', 'ca4a9b63-708e-49e9-8f9b-010625443b90', '12/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2095, 'Hexachlorophene (Soap)', '1768734', 'Hexachlorophene', '41ee3eb5-c3b6-4b50-87c6-04a723ca4c35', '7/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2096, 'HEXALEN (Oral Pill)', '1368823', 'Altretamine', '90a5e59a-bee8-404a-ad69-fabddeaf27f9', '1/11/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2097, 'Hexylresorcinol (Oral Lozenge)', '969004', 'Hexylresorcinol', 'e282ba65-b674-45d5-82c2-ab4e4a95243b', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2098, 'HIBERIX (Injectable)', '529118', '"Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine"', '745ff8df-1618-4b76-9aa1-6f42752c0dda', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2099, 'HIBICLENS (Soap)', '1790812', 'Chlorhexidine', '910c0491-ec27-4164-a7ab-d89e82a2bdb5', '10/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2100, 'HIBISTAT (Topical)', '1790812', 'Chlorhexidine', 'c6f941d6-527e-4fb8-9581-8532dd84e7a8', '7/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2101, 'HIPREX (Oral Pill)', '904356', 'Methenamine', '7488ad5c-376d-47a2-8c23-47eff94547fb', '3/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2102, 'Histamine (Injectable)', '19069019', 'Histamine', '1159c24c-d9ce-49a2-b0bd-dc27c710f146', '5/20/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2103, 'Histamine (Topical)', '19069019', 'Histamine', '3801584a-6212-4ad0-8d6e-ef60e7edae14', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2104, 'Histamine/Menthol (Topical)', '19069019', 'Histamine', 'd123deae-d9ef-45ce-81ed-2d79384b1298', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2105, 'HISTEX PE (Oral Liquid)', '1135766', 'Phenylephrine', '26c2117e-804e-4132-8707-fc0302fb9090', '3/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2106, 'HISTEX SYRUP (Oral Liquid)', '1105889', 'Triprolidine', 'cc466d33-cf3e-4f1c-a794-6d3d79903adf', '3/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2107, 'Homatropine (Ophthalmic)', '1101703', 'homatropine', '7d64b0e4-10c3-44b6-ac95-ededde5fda71', '1/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2108, 'Homatropine/HYDROcodone (Oral Liquid)', '1101703', 'homatropine', '0184de92-e728-4390-95f6-a463f583416a', '1/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2109, 'Homatropine/HYDROcodone (Oral Pill)', '1101703', 'homatropine', '6c0bba34-07db-42f5-9e5e-ad79b71b4276', '10/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2110, '"House dust mite extract, Dermatophagoides farinae (Injectable)"', '40161821', '"house dust mite extract, Dermatophagoides farinae"', 'cbe1d24d-df77-4940-baf8-623993fa731b', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2111, '"House dust mite extract, Dermatophagoides pteronyssinus (Injectable)"', '40161835', '"house dust mite extract, Dermatophagoides pteronyssinus"', 'cbe1d24d-df77-4940-baf8-623993fa731b', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2112, 'House fly extract (Injectable)', '40175853', 'house fly extract', '470d7a58-b8ee-4f97-a5e2-3e8c65096231', '12/18/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2113, 'HumaLOG (Injectable)', '1550023', 'Insulin Lispro', 'c5f75765-86b8-4926-b8c3-b42133ca7ac8', '9/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2114, 'HUMAN ALBUMIN GRIFOLS (Injectable)', '1344143', '"Albumin Human, USP"', 'a43c5ed6-7423-4ee5-8acb-5fccc2d7b6cc', '3/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2115, 'Human Secretin (Injectable)', '19084212', 'Human Secretin', 'b4dfe70f-0a86-4488-9ba1-dcd8f86cbfcd', '8/15/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2116, 'Humicola grisea extract (Injectable)', '40228383', 'Humicola grisea extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2117, 'HUMULIN R (Injectable)', '1596977', '"Regular Insulin, Human"', '9ec3e28a-cea9-4e45-9057-e5bf8e37014c', '12/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2118, 'HURRICAINE (Mucosal)', '917006', 'Benzocaine', '159d412c-6d1a-45d4-88c0-8c93960f946e', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2119, 'HURRICAINE (Oral Gel)', '917006', 'Benzocaine', '1f3d68f6-afd6-42e7-b3e5-210228c8e7de', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2120, 'Hyaluronate (Injectable)', '787787', 'hyaluronate', 'f2b381d4-b181-4e88-a543-075917fc34ed', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2121, 'Hyaluronate/Urea (Topical)', '787787', 'hyaluronate', 'ce953fdf-a73a-4f7e-8946-959346990626', '12/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2122, 'Hyaluronidase (Injectable)', '19073699', 'Hyaluronidase', '21fbd12e-4a12-4ad1-ad01-964cd5ec9996', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2123, '"Hyaluronidase, Human (Injectable)"', '19088713', '"Hyaluronidase, Human"', '1e547159-daa7-4b5d-9ad5-5261ea866e13', '6/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2124, 'HYBRISIL (Topical)', '1506270', 'Methylprednisolone', 'f8432414-d8a6-4597-a226-61fd09a80e0c', '4/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2125, 'HYCET (Oral Liquid)', '1125315', 'Acetaminophen', '00ff75bc-aebe-4c55-adea-1c49cf1addb3', '12/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2126, 'HYCODAN (Oral Liquid)', '1101703', 'homatropine', '08bb4884-403b-4163-bee7-5aa40992ac4e', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2127, 'hydrALAZINE (Injectable)', '1373928', 'Hydralazine', 'f34904dc-c945-4de4-8594-34e4f4ac1983', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2128, 'hydrALAZINE (Oral Pill)', '1373928', 'Hydralazine', 'b96e789d-0f29-42fe-818f-3ff2f579e5fd', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2129, 'HydrALAZINE/Hydrochlorothiazide/Reserpine (Oral Pill)', '1373928', 'Hydralazine', 'bdd0658e-38fb-4726-9720-09c502138ab0', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2130, 'HydrALAZINE/Isosorbide Dinitrate (Oral Pill)', '1373928', 'Hydralazine', 'e1e63cd5-d1e4-4af5-bad5-1ad41ea46b00', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2131, 'HYDREA (Oral Pill)', '1377141', 'hydroxyurea', '050bd2a2-a125-721a-e366-255c5466f018', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2132, 'HYDRO (Topical)', '906914', 'Urea', 'c1fc0ed7-6383-455a-98c3-ef44b312fc0d', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2133, 'Hydrochlorothiazide (Oral Pill)', '974166', 'Hydrochlorothiazide', 'f82b7d4f-8cf2-4502-b066-d2d7c3a7a6fe', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2134, 'Hydrochlorothiazide/Irbesartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '72fa8cd4-bc2a-4a7d-8feb-2d60e077d801', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2135, 'Hydrochlorothiazide/Lisinopril (Oral Pill)', '974166', 'Hydrochlorothiazide', '00f67e1a-6999-4295-9c9f-fcb1ce9711b8', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2136, 'Hydrochlorothiazide/Losartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '90b479ce-1a28-4b14-b33a-7ba374305079', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2137, 'Hydrochlorothiazide/Methyldopa (Oral Pill)', '974166', 'Hydrochlorothiazide', '5bf74178-66b8-44d4-a87d-1fd760b94ad3', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2138, 'Hydrochlorothiazide/Metoprolol (Oral Pill)', '974166', 'Hydrochlorothiazide', 'faaf13ce-5d8d-4c57-a49f-a7a73daa41a5', '5/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2139, 'Hydrochlorothiazide/Moexipril (Oral Pill)', '974166', 'Hydrochlorothiazide', '621614de-4a5c-43c8-af77-e98128f01c8b', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2140, 'Hydrochlorothiazide/Olmesartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '91d45442-4232-4111-9dd8-0d787085af6d', '12/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2141, 'Hydrochlorothiazide/Quinapril (Oral Pill)', '974166', 'Hydrochlorothiazide', 'ae34a8e0-5f82-4aa8-d71c-b7a3f720925c', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2142, 'Hydrochlorothiazide/Spironolactone (Oral Pill)', '974166', 'Hydrochlorothiazide', '66134130-5718-483b-a076-36ecdb0add34', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2143, 'Hydrochlorothiazide/Telmisartan (Oral Pill)', '974166', 'Hydrochlorothiazide', 'b88054b3-fafa-4b4e-acf5-5294e5555720', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2144, 'Hydrochlorothiazide/Triamterene (Oral Pill)', '974166', 'Hydrochlorothiazide', '5171e219-38cb-4f4d-b33b-abbd713bf642', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2145, 'Hydrochlorothiazide/Valsartan (Oral Pill)', '974166', 'Hydrochlorothiazide', '6b6ad6c8-22f8-456b-bc54-a02fb6cbea8c', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2146, 'HYDROcodone/Ibuprofen (Oral Pill)', '1174888', 'Hydrocodone', 'd86ced85-6767-4218-bf88-e294b44d1e74', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2147, 'HYDROcodone/Pseudoephedrine (Oral Liquid)', '1174888', 'Hydrocodone', 'd8344453-c7c0-4e4b-aab7-8447ef28322a', '12/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2148, 'Hydrocortisone (Injectable)', '975125', 'Hydrocortisone', 'b2b4c961-363d-49fe-b354-d59b39fd517a', '5/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2149, 'Hydrocortisone (Oral Pill)', '975125', 'Hydrocortisone', 'd4d2912e-d1e8-4b40-af88-59c87fa12318', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2150, 'Hydrocortisone (Rectal)', '975125', 'Hydrocortisone', 'a5b47406-b933-4f6b-96dc-db837bcccf77', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2151, 'Hydrocortisone (Topical)', '975125', 'Hydrocortisone', '94a776de-aa08-4274-ab07-48de6e934791', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2152, 'Hydrocortisone/Iodoquinol (Topical)', '975125', 'Hydrocortisone', '3d7278ee-2c8e-4df1-9372-d43403122945', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2153, 'Hydrocortisone/Lidocaine (Rectal)', '975125', 'Hydrocortisone', '0db13203-e001-42fc-b3a2-7f189d171de3', '1/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2154, 'Hydrocortisone/Neomycin/Polymyxin B (Ophthalmic)', '975125', 'Hydrocortisone', '64e4cb91-f5bd-4a2f-b92d-0a1341f40d35', '6/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2155, 'Hydrocortisone/Neomycin/Polymyxin B (Otic)', '975125', 'Hydrocortisone', 'f1995e7d-81c0-42c0-89fe-50634b6e2274', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2156, 'Hydrocortisone/Neomycin/Polymyxin B (Topical)', '975125', 'Hydrocortisone', 'e492b2b0-ad73-4866-c996-a1fcb12dbcad', '4/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2157, 'Hydrocortisone/Pramoxine (Rectal)', '975125', 'Hydrocortisone', 'fecf8380-3bb5-11e5-98c5-0002a5d5c51b', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2158, 'Hydrocortisone/Pramoxine (Topical)', '975125', 'Hydrocortisone', '26beacc7-75b2-4592-a643-3b50ed860f23', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2159, 'Hydroflumethiazide (Oral Pill)', '1376289', 'Hydroflumethiazide', '6153ef9e-77f0-4233-a5bc-3e3d1f732323', '10/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2160, 'Hydrofluoric Acid/Phosphoric acid/Sodium Fluoride (Oral Gel)', '976309', 'Hydrofluoric Acid', '11d08dc0-fa26-4506-830c-d809f50c5411', '12/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2161, 'Hydrofluoric Acid/Sodium Fluoride (Oral Foam)', '976309', 'Hydrofluoric Acid', '8f73af62-6124-4bf6-915d-4b913add7ad1', '2/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2162, 'Hydrogen Peroxide (Mouthwash)', '1776430', 'Hydrogen Peroxide', 'b1325ab5-6667-4f22-a625-8e91fe543c11', '3/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2163, 'Hydrogen Peroxide (Mucosal)', '1776430', 'Hydrogen Peroxide', 'f82230e0-a6eb-4d1e-8fea-0bf386d97c58', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2164, 'Hydrogen Peroxide (Topical)', '1776430', 'Hydrogen Peroxide', '97fae8f6-bf62-4b4f-8d5c-5a3f6f7bd784', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2165, 'HYDROMET (Oral Liquid)', '1101703', 'homatropine', 'a324c912-a3ef-4296-b9a8-b0fec687eb06', '10/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2166, 'HYDROmorphone (Injectable)', '1126658', 'Hydromorphone', '7122ccea-f35c-4816-b90a-6f12fdc808dd', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2167, 'HYDROmorphone (Oral Liquid)', '1126658', 'Hydromorphone', 'cc574063-6ede-4da7-82c4-7450c92b229b', '7/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2168, 'HYDROmorphone (Oral Pill)', '1126658', 'Hydromorphone', 'd42f2e61-f65a-42f2-bec5-2d248d788e78', '9/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2169, 'HYDROmorphone (Rectal)', '1126658', 'Hydromorphone', '1bfbba46-1979-4797-a29e-d67718131686', '9/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2170, 'Hydroquinone (Topical)', '976778', 'hydroquinone', '50c30793-472a-4196-ba41-5074686f7edc', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2171, 'HYDROSKIN (Topical)', '975125', 'Hydrocortisone', '5d96dccc-5117-4a47-b0af-f2a2c09a0c8f', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2172, 'Hydroxocobalamin (Injectable)', '1377023', 'Hydroxocobalamin', 'd35ad609-70d3-4eb2-8276-c9631ca815d1', '1/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2173, 'Hydroxychloroquine (Oral Pill)', '1777087', 'Hydroxychloroquine', '1959d645-6b82-4f4d-b1f2-af644dec7c8f', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2174, 'Hydroxyethyl starch 130-0.4 (Injectable)', '43012293', 'hydroxyethyl starch 130-0.4', 'be7729c9-f7cf-483b-bafe-0d42d6b62f06', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2175, 'Hydroxypropylcellulose (Implant)', '19002257', 'hydroxypropylcellulose', 'cc7a6a52-0b77-4df7-8403-dd21c1334f6c', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2176, 'Hydroxyurea (Oral Pill)', '1377141', 'hydroxyurea', 'b9514ae5-79ae-4cc2-9d7f-c8f7806d1694', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2177, 'hydrOXYzine (Injectable)', '777221', 'Hydroxyzine', '7def1daa-c800-4263-9526-eac8d53e4636', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2178, 'hydrOXYzine (Oral Liquid)', '777221', 'Hydroxyzine', '85e3c789-a740-4a09-a810-9808c3d0f7d9', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2179, 'hydrOXYzine (Oral Pill)', '777221', 'Hydroxyzine', 'e0f40d4e-4167-4641-a8a4-599bc1877077', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2180, 'HYLENEX (Injectable)', '19088713', '"Hyaluronidase, Human"', '3023cc56-ed4b-4e87-b3a1-81b20943f658', '6/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2181, 'HYOPHEN (Oral Pill)', '711452', 'Benzoate', '2c1f0f4c-e57b-4df5-9a58-41d39c3d8893', '10/25/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2182, 'Hyoscyamine (Injectable)', '923672', 'Hyoscyamine', 'dd2e786c-29a7-40f8-a5f3-7641413f5036', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2183, 'Hyoscyamine (Oral Disintegrating)', '923672', 'Hyoscyamine', 'e5fd8476-418a-4149-a688-205ea943b30c', '5/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2184, 'Hyoscyamine (Oral Liquid)', '923672', 'Hyoscyamine', '6f31e729-e36b-4b6e-98de-88077b29bf2b', '12/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2185, 'Hyoscyamine (Oral Pill)', '923672', 'Hyoscyamine', '480d688d-2103-443c-90cc-feb861bdce13', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2186, 'Hyoscyamine (Sublingual)', '923672', 'Hyoscyamine', 'c9623ab9-ead1-4ae5-94d8-e18384b1e30c', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2187, '"Hyoscyamine/Methenamine/Methylene blue/Phenyl salicylate/Sodium Phosphate, Monobasic (Oral Pill)"', '923672', 'Hyoscyamine', '263ed7eb-a390-4a26-9985-16ac883f4bfc', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2188, '"Hyoscyamine/Methenamine/Methylene blue/Sodium Phosphate, Monobasic (Oral Pill)"', '923672', 'Hyoscyamine', 'f650dd78-615c-42d3-9b2d-3a989039d80c', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2189, 'Hypochlorite (Topical)', '44784806', 'Hypochlorite', '3d72b72c-2949-4eb6-b64c-6c4aef0eddd9', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2190, 'Hypomyces perniciosus extract (Injectable)', '40244381', 'Hypomyces perniciosus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2191, 'Hypromellose (Ophthalmic)', '902251', 'hypromellose', '785199ea-3bd6-48ea-afd0-e0c4cf39652b', '9/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2192, 'Hypromellose/Naphazoline/Polysorbate 80/Zinc Sulfate (Ophthalmic)', '902251', 'hypromellose', '9a1ce5e2-c3da-424d-b754-cf2de8c655e3', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2193, 'HYZAAR (Oral Pill)', '974166', 'Hydrochlorothiazide', 'd7d7dcc9-c3e0-45e5-abcd-135a6d8c8dab', '6/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2194, 'I (Oral Pill)', '715997', 'donepezil', 'd9d15879-3883-4963-9c93-73d5251484fa', '8/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2195, 'Ibandronate (Oral Pill)', '1512480', 'Ibandronate', 'bcac6719-ad8c-e4a5-c32a-af1c0511c591', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2196, 'Ibrutinib (Oral Pill)', '44507848', 'Ibrutinib', '0dfd0279-ff17-4ea9-89be-9803c71bab44', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2197, 'IBU (Oral Pill)', '1177480', 'Ibuprofen', '181e3925-4a81-4012-b2b6-6b247e2eb663', '2/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2198, 'Ibuprofen (Chewable)', '1177480', 'Ibuprofen', 'ce54a65b-2913-450f-b7af-b23c54fbb742', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2199, 'Ibuprofen (Injectable)', '1177480', 'Ibuprofen', '1eaa7790-f1a1-4f51-b10a-cbbaf033f684', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2200, 'Ibuprofen (Oral Liquid)', '1177480', 'Ibuprofen', '17bd342d-8eb3-4663-88f5-2e7c90254dc7', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2201, 'Ibuprofen (Oral Pill)', '1177480', 'Ibuprofen', '5715910e-33be-49bd-8a1f-eeb46320e28d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2202, 'Ibuprofen/oxyCODONE (Oral Pill)', '1177480', 'Ibuprofen', 'a95425ac-6ab7-45e4-820d-bddffde30a0f', '6/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2203, 'Ibuprofen/Phenylephrine (Oral Pill)', '1177480', 'Ibuprofen', '525cc513-9945-43fe-af1b-e168d562a1db', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2204, 'Ibuprofen/Pseudoephedrine (Oral Liquid)', '1177480', 'Ibuprofen', 'b6c844c4-4ba6-4827-8db8-5f3f5e99b0c2', '10/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2205, 'Ibuprofen/Pseudoephedrine (Oral Pill)', '1177480', 'Ibuprofen', 'faa26964-a140-4d30-ab1e-19f49f9458ac', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2206, 'Ibutilide (Injectable)', '19050087', 'ibutilide', 'c25d21e7-6136-4a7a-b139-12f53116fc3d', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2207, 'Ichthammol (Topical)', '977949', 'ichthammol', '9698b98c-bca1-4a7e-8a67-05d2a2b770a5', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2208, 'ICLUSIG (Oral Pill)', '43013182', 'ponatinib', '807f988e-117b-4497-934d-73aa78baac71', '10/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2209, 'ICY HOT (Topical)', '901656', 'Menthol', '4ce2b823-7ef5-4cca-a2d8-2fe781bc958e', '12/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2210, 'ICY HOT (Transdermal)', '901656', 'Menthol', 'd4e13689-8973-4041-9f33-e710547dcdee', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2211, 'ICY HOT WITH METHYL SALICYLATE (Topical)', '901656', 'Menthol', '40c8c02f-fa5f-4e80-81a0-48271fa6f94b', '4/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2212, 'IDAMYCIN (Injectable)', '19078097', 'Idarubicin', '0a5a6d93-cc1e-4d7f-8da1-446c134503b3', '1/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2213, 'IDArubicin (Injectable)', '19078097', 'Idarubicin', '615d206a-b178-4ff4-b6c1-7e349099f3c7', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2214, 'Idelalisib (Oral Pill)', '45776944', 'idelalisib', 'efbdafa9-d18c-4e85-b4a2-1e620fc74e50', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2215, 'IFEREX (Oral Pill)', '1300751', 'Polysaccharide iron complex', '968c74e0-0510-4a0e-add2-37af97fc6928', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2216, 'IFEX (Injectable)', '19078187', 'Ifosfamide', 'b7241707-7538-4d1a-91e7-3a25a91e0b9a', '2/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2217, 'Ifosfamide (Injectable)', '19078187', 'Ifosfamide', 'f6fef680-884f-46fc-bf81-0ef7c5db6f32', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2218, 'Iloperidone (Oral Pill)', '19017241', 'iloperidone', '43452bf8-76e7-47a9-a5d8-41fe84d061f0', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2219, 'ILOTYCIN (Ophthalmic)', '1746940', 'Erythromycin', '9b1c6c13-4562-4c8e-a8bb-42493dc5cadb', '10/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2220, 'ILUVIEN (Implant)', '996541', 'fluocinolone', '4400e471-7402-11df-93f2-0800200c9a66', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2221, 'IMBRUVICA (Oral Pill)', '44507848', 'Ibrutinib', '0dfd0279-ff17-4ea9-89be-9803c71bab44', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2222, 'Imiglucerase (Injectable)', '1348407', 'imiglucerase', 'df60f030-866b-4374-a31f-8ae3f6b45c38', '12/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2223, 'Imipramine (Oral Pill)', '778268', 'Imipramine', '3361779c-095c-45dc-8a85-7626652ff75f', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2224, 'Imiquimod (Topical)', '981691', 'imiquimod', '0c3aed27-7b3f-442e-9f60-f2f5c672c85d', '4/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2225, 'IMITREX (Oral Pill)', '1140643', 'Sumatriptan', '040abcc1-cc1c-4f00-b302-36070611f7b2', '10/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2226, 'Immunoglobulin G (Injectable)', '19117912', 'Immunoglobulin G', '88eac3b8-55a5-4451-9d25-c30e43ab7068', '3/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2227, 'IMODIUM (Oral Liquid)', '991876', 'Loperamide', '76a976d5-8bee-4158-a94d-7fbfc5544fd4', '1/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2228, 'IMODIUM (Oral Pill)', '991876', 'Loperamide', '01da76d0-1979-4c45-9d39-c72ae4e4ffe2', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2229, 'IMOVAX (Injectable)', '544505', '"rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated"', 'ba8d4e72-f452-4859-ae6f-3644b4b0a78c', '9/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2230, 'IMPAVIDO (Oral Pill)', '44816310', 'miltefosine', 'd6658aeb-7bc1-4eef-ad0d-0a873ddbecf5', '9/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2231, 'INAPSINE (Injectable)', '739323', 'Droperidol', 'dbc2d9eb-eefe-454d-a8c3-55cec840d54f', '12/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2232, 'Indapamide (Oral Pill)', '978555', 'Indapamide', 'a8a4ec2c-9d4b-482b-ad29-88185c96db74', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2233, 'Indian wormwood sage pollen extract (Injectable)', '40224992', 'Indian wormwood sage pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2234, 'Indinavir (Oral Pill)', '1711523', 'Indinavir', '01c5574c-1056-49c6-af20-e950db3f4139', '6/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2235, 'Indomethacin (Injectable)', '1178663', 'Indomethacin', '30e38747-c553-4e2d-bc23-634e1dd90b8d', '7/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2236, 'Indomethacin (Oral Pill)', '1178663', 'Indomethacin', '3d5df05a-f4af-48d8-b880-97dfb92e900c', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2237, 'Indomethacin (Rectal)', '1178663', 'Indomethacin', 'a8ed14ef-cd4b-3be7-0b5f-b677c72d2e88', '9/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2238, 'Indomethacin XR (Oral Pill)', '1178663', 'Indomethacin', '85014b51-1354-4d16-9995-3ee33a7155fa', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2239, 'Inert Ingredients (Oral Pill)', '19127890', 'Inert Ingredients', '39988aa6-8f68-40e8-9bdd-c40a3bdaad61', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2240, 'INFASURF (Inhalant)', '19089891', 'calfactant', '315c128a-272d-4c57-bfbe-1a8b3402af08', '7/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2241, 'INFED (Injectable)', '1381661', 'Iron-Dextran Complex', 'abacb7fa-2fc2-471e-9200-944eeac8ca2a', '7/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2242, 'INFERGEN (Injectable)', '1781314', 'interferon alfacon-1', 'a7248eca-45d6-472d-8c2a-d8887c2594d5', '4/18/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2243, 'Influenza A-California-7-2009-(H1N1)v-like virus vaccine (Injectable)', '40166605', 'influenza A-California-7-2009-(H1N1)v-like virus vaccine', 'fc5cfd1c-1ff5-4cfa-b544-db8d7f26d46f', '12/4/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2244, 'INFUMORPH (Injectable)', '1110410', 'Morphine', 'db9ac9e3-d761-4a99-9f34-4946ebe8f255', '6/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2245, 'INJECTAFER (Injectable)', '43560392', 'ferric carboxymaltose', '517b4a19-45b3-4286-9f6a-ced4e10447de', '8/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2246, 'INLYTA (Oral Pill)', '42709322', 'axitinib', '84137882-e000-47da-bd5b-fa76ab3c76f9', '8/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2247, 'INNOFEM (Oral Pill)', '1548195', 'Estradiol', '10e1d3ef-808e-47e4-a050-93a5918b1085', '1/31/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2248, 'INNOHEP (Injectable)', '1308473', 'tinzaparin', '1513b960-d9d1-11de-8a1e-0002a5d5c51b', '10/21/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2249, 'INSPRA (Oral Pill)', '1309799', 'eplerenone', 'c7bc9486-8e61-4ba1-827f-2cd8c304b454', '1/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2250, 'INSTA-CHAR (Oral Liquid)', '1701928', 'Activated Charcoal', '6285e38c-40bf-415d-bf68-68b38e318ab5', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2251, '"Insulin analog, Detemir (Injectable)"', '1516976', 'insulin detemir', '2b8d9730-686b-444b-9941-7b5877255924', '9/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2252, '"Insulin analog, Glargine (Injectable)"', '1502905', 'Insulin Glargine', '13cfe263-6a6a-4b0f-94f4-771ab6a105c0', '11/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2253, '"Insulin, human isophane (Injectable)"', '1596914', '"NPH Insulin, Human"', '99c995f1-522e-42aa-b45a-117e0af77d81', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2254, '"Insulin, human mixed (Injectable)"', '1596914', '"NPH Insulin, Human"', '0cc57309-01ef-4a02-8d27-b981c768135a', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2255, '"Insulin, human regular (Injectable)"', '1596977', '"Regular Insulin, Human"', '9ec3e28a-cea9-4e45-9057-e5bf8e37014c', '10/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2256, '"Insulin, human, rDNA origin (Inhalant)"', '1588986', '"insulin human, rDNA origin"', '4e25a881-dfc3-44a2-9ede-49f7443776d8', '4/18/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2257, 'INTELENCE (Oral Pill)', '1758536', 'etravirine', '1b5a2dc7-0570-4977-876d-88b4176844a1', '3/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2258, 'Interferon Alfa-2b (Injectable)', '1380068', 'Interferon Alfa-2b', '30789790-8317-49f9-b97b-8c5ba17b53d2', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2259, 'Interferon alfacon-1 (Injectable)', '1781314', 'interferon alfacon-1', 'a7248eca-45d6-472d-8c2a-d8887c2594d5', '4/18/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2260, 'Interferon beta-1a (Injectable)', '722424', 'Interferon beta-1a', '0de49d64-3e18-494c-bf14-bc152247c798', '10/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2261, 'Interferon beta-1b (Injectable)', '713196', 'interferon beta-1b', '261fde67-efb2-4bd7-947e-4f68a56e76ff', '4/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2262, 'Interferon gamma-1b (Injectable)', '1380191', 'Interferon gamma-1b', '498b2231-65e8-4b27-947b-8d1f6f91289c', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2263, 'INTERMEZZO (Sublingual)', '744740', 'zolpidem', '913b6cfe-1fb0-44a8-817a-26374bbce995', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2264, 'INTRALIPID (Injectable)', '19013789', 'EGG YOLK PHOSPHOLIPIDS', '55609586-f0b4-42e6-8dd9-cd090afb5dca', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2265, 'INTRON A (Injectable)', '1380068', 'Interferon Alfa-2b', '30789790-8317-49f9-b97b-8c5ba17b53d2', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2266, 'INVIRASE (Oral Pill)', '1746244', 'Saquinavir', 'b8b53129-06ab-4143-b9b7-7675e49a52ef', '9/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2267, 'INVOKAMET (Oral Pill)', '43526465', 'canagliflozin', '6868666b-c25e-40d1-9d1f-306bbe9390c1', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2268, 'INZO (Topical)', '907879', 'Miconazole', '3afb78ad-af6e-47f6-b142-6cce45bd5e9e', '4/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2269, 'Iodine (Topical)', '1780601', 'Iodine', '615e3547-4e5e-44fc-8f89-712243d30a1e', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2270, 'Iodine povacrylex/Isopropyl Alcohol (Topical)', '19125582', 'iodine povacrylex', 'd35a9f96-a0db-4060-9f9d-ba2117288fd0', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2271, 'Iodine/Potassium Iodide (Oral Liquid)', '1780601', 'Iodine', 'cf5b0102-4f76-4f9e-907a-bf9425890aea', '11/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2272, 'Iodine/Potassium Iodide (Topical)', '1780601', 'Iodine', '7d8f4f37-948c-4740-8e23-2f23e47ebd5b', '11/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2273, 'IOPIDINE (Ophthalmic)', '919986', 'apraclonidine', 'de798d0d-a93c-40fb-95ea-10a4e6b287b7', '7/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2274, 'IOSAT (Oral Pill)', '19049909', 'Potassium Iodide', 'ea98aef8-93b6-4fac-be35-eb17a1a04a92', '4/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2275, 'Ipratropium (Inhalant)', '1112921', 'Ipratropium', '769febba-671d-476b-b0c8-71489a2f9d20', '10/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2276, 'IQUIX (Ophthalmic)', '1742253', 'Levofloxacin', '067ea8ec-99a3-4a0b-9116-4ffd6160b24b', '4/29/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2277, 'Irbesartan (Oral Pill)', '1347384', 'irbesartan', 'bba6b8f0-daf5-4b0b-bd07-4f59aa679077', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2278, 'IRESSA (Oral Pill)', '1319193', 'gefitinib', '827d60e8-7e07-41b7-c28b-49ef1c4a5a41', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2279, 'Irinotecan (Injectable)', '1367268', 'irinotecan', '407e0758-9e2e-4e45-8c1b-10cfd2115b1f', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2280, 'Iron Carbonyl (Chewable)', '1400498', 'Iron Carbonyl', '5c8d104d-feb4-4a1b-aa1c-b2ebbcbc5ccc', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2281, 'Iron Carbonyl (Oral Liquid)', '1400498', 'Iron Carbonyl', 'a7cd1b35-93d6-eb31-3924-eda5c7c0b335', '10/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2282, 'Iron-Dextran Complex (Injectable)', '1381661', 'Iron-Dextran Complex', '77f5ae2a-8cd3-4f01-bddd-8158f932c8db', '7/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2283, 'ISENTRESS (Oral Pill)', '1712889', 'raltegravir', 'e463b253-ad05-4e5c-8a3b-595d55c56ed7', '4/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2284, 'ISMO (Oral Pill)', '1383815', 'Isosorbide', 'ec09ab1c-52fa-4f41-bf65-a632dce8f097', '4/26/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2285, 'ISMOTIC PB (Oral Liquid)', '1383815', 'Isosorbide', 'f305b18b-8506-4414-87a1-10aa3b76a691', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2286, 'ISOCAINE (Injectable)', '702774', 'Mepivacaine', '53eda85c-65cd-4d6c-b4b7-eb3ae2942ed0', '4/26/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2287, 'ISOCAINE WITH LEVONORDEFRIN (Injectable)', '19015395', 'Levonordefrin', '53eda85c-65cd-4d6c-b4b7-eb3ae2942ed0', '4/26/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2288, 'Isocarboxazid (Oral Pill)', '781705', 'Isocarboxazid', 'ac387aa0-3f04-4865-a913-db6ed6f4fdc5', '3/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2289, 'Isoflurane (Inhalant)', '782043', 'Isoflurane', 'd6851c71-0c2f-43f6-883c-a43fe894985d', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2290, 'ISONARIF (Oral Pill)', '1782521', 'isoniazid', '1d3f27ec-1616-40fd-bc4f-91bb1744ceb0', '4/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2291, 'Isoniazid (Oral Liquid)', '1782521', 'isoniazid', '0044ca87-ab7e-4955-a77f-e8fd665ce2ae', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2292, 'Isoniazid (Oral Pill)', '1782521', 'isoniazid', '60a6b514-fa7f-4bc7-85b0-e5a14fa56b59', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2293, 'Isoniazid/Pyrazinamide/Rifampin (Oral Pill)', '1782521', 'isoniazid', '429a2f62-9fe6-4299-b314-92a9d22b1381', '4/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2294, 'Isoniazid/Rifampin (Oral Pill)', '1782521', 'isoniazid', '3cc36609-8e2d-4caa-a8e0-c0367e3e52df', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2295, 'Isopropyl Alcohol (Otic)', '19028106', 'Isopropyl Alcohol', 'cb566013-3fc4-4636-b214-3de64ce73b91', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2296, 'Isopropyl Alcohol (Topical)', '19028106', 'Isopropyl Alcohol', 'bc1cd6bf-99b6-48d5-ad59-f56bd3026d47', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2297, 'Isopropyl Alcohol/Povidone-Iodine (Topical)', '19028106', 'Isopropyl Alcohol', '76615174-e530-4e88-a02c-2f7d0b5a5b04', '5/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2298, 'Isopropyl unoprostone (Ophthalmic)', '915829', 'isopropyl unoprostone', '53d05ced-51dd-11de-8a39-0800200c9a66', '1/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2299, 'ISOPTIN XR (Oral Pill)', '1307863', 'Verapamil', '6ae13cb4-0316-40d1-9216-c7d5556aaed3', '5/22/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2300, 'ISOPTO ALKALINE (Ophthalmic)', '902251', 'hypromellose', 'f1753a5b-7ba8-103d-6fe4-d93a3fc5f803', '9/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2301, 'ISOPTO CETAMIDE (Ophthalmic)', '1036252', 'Sulfacetamide', '5a5d8fee-b42a-4f0c-a508-75c7c71bedb4', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2302, 'ISOPTOCARPINE (Ophthalmic)', '945286', 'Pilocarpine', '22e4c7f4-bbd0-4e74-85da-bb56fc377568', '8/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2303, 'ISORDIL (Oral Pill)', '1383925', 'Isosorbide Dinitrate', '0e5bc1a3-6e3c-4ab9-856f-fd953eacf867', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2304, 'Isosorbide (Oral Liquid)', '1383815', 'Isosorbide', 'f305b18b-8506-4414-87a1-10aa3b76a691', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2305, 'Isosorbide (Oral Pill)', '1383815', 'Isosorbide', 'b35a72bb-c06b-4671-8dc2-ce0ccdf45ce9', '4/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2306, 'Isosorbide Dinitrate (Oral Pill)', '1383925', 'Isosorbide Dinitrate', '873add22-4b78-459c-8418-b5392072a2a9', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2307, 'Isosorbide Dinitrate (Sublingual)', '1383925', 'Isosorbide Dinitrate', '8020edd0-b9e6-428c-a534-fb8f780fbdf1', '6/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2308, 'Isosorbide Dinitrate XR (Oral Pill)', '1383925', 'Isosorbide Dinitrate', 'bf6d4c62-14a4-423b-bdbf-676375f5cb8d', '11/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2309, 'ISOtretinoin (Oral Pill)', '984232', 'Isotretinoin', 'ee862463-77c0-4694-bba8-97274f13963f', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2310, 'Isoxsuprine (Oral Pill)', '1384360', 'Isoxsuprine', '6baec489-724b-4184-9529-7b9ca3573025', '12/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2311, 'Isradipine (Oral Pill)', '1326012', 'Isradipine', 'ac51d3e3-ed76-e033-e1d6-1ffbd14d94c2', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2312, 'ISTALOL (Ophthalmic)', '902427', 'Timolol', '80fa20dc-b181-48be-83ce-d66a83753878', '3/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2313, 'ISTODAX (Injectable)', '40168385', 'romidepsin', '6005c345-ccf9-4fff-8660-3fd73485b0d9', '1/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2314, 'ITCH-X (Topical)', '919681', 'Benzyl Alcohol', '03f85dbb-a13a-3126-e054-00144ff8d46c', '9/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2315, 'Itraconazole (Oral Pill)', '1703653', 'Itraconazole', '6242b7ad-eaa0-a524-b6e0-ec33e63407db', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2316, 'Ivermectin (Topical)', '1784444', 'Ivermectin', '4c5557cd-c4cf-11df-851a-0800200c9a66', '7/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2317, 'IVY BLOCK (Topical)', '915518', 'bentoquatam', 'd3b3f56d-d1d5-4435-8ac7-a2118f108a9b', '5/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2318, 'IVY-DRY CREAM (Topical)', '919681', 'Benzyl Alcohol', '5fe81556-5b5f-4765-9136-796e4974aed0', '3/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2319, 'J-COF DHC (Oral Liquid)', '1130863', 'Brompheniramine', '4de68448-1f01-4ca1-b002-15589999de0f', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2320, 'J-MAX (Oral Liquid)', '1163944', 'Guaifenesin', 'f8376d51-3fa8-4ac5-b074-83e3c81b96ba', '10/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2321, 'J-MAX DHC (Oral Liquid)', '1189596', 'dihydrocodeine', '61e61344-bf91-4742-be57-d74b30cfa4ad', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2322, 'Jack pine pollen extract (Injectable)', '40228279', 'jack pine pollen extract', '3b904f52-6163-4095-a456-11b3018b227a', '12/15/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2323, 'JALYN (Oral Pill)', '989482', 'Dutasteride', 'f96c6acd-4d02-4ece-bd54-2d5a35aab7f5', '5/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2324, 'JANTOVEN (Oral Pill)', '1310149', 'Warfarin', 'f11079c4-f085-4558-bee9-c159525b2497', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2325, 'JANUMET (Oral Pill)', '1503297', 'Metformin', 'e1af8ccb-ad50-452b-af44-022c9a0cb0ed', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2326, 'JANUVIA (Oral Pill)', '1580747', 'sitagliptin', '29f3dcc4-1ca9-46c5-aa12-9ba76caff326', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2327, 'Japanese black pine pollen extract (Injectable)', '40173046', 'Japanese black pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2328, 'JARDIANCE (Oral Pill)', '45774751', 'empagliflozin', 'faf3dd6a-9cd0-39c2-0d2e-232cb3f67565', '7/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2329, 'Jerusalem oak pollen extract (Injectable)', '40228461', 'Jerusalem oak pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2330, 'JETREA (Injectable)', '42904298', 'ocriplasmin', '390682b7-72c4-11e1-b0c4-0800200c9a66', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2331, 'JINTELI (Oral Pill)', '1549786', 'Ethinyl Estradiol', 'd667ca75-1a17-43fc-9077-f25ce0908f8d', '3/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2332, 'Johnson grass smut extract (Injectable)', '40161260', 'Johnson grass smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2333, 'Jute fiber extract (Injectable)', '40161738', 'jute fiber extract', 'd71013ab-718c-4cb0-ae1a-31fdd6db8851', '12/18/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2334, 'K-PHOS (Oral Liquid)', '19027362', 'potassium phosphate', '04557ab3-6d21-49b4-b849-744c75b8a630', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2335, 'K-PHOS NEUTRAL (Oral Pill)', '19027362', 'potassium phosphate', '83376725-ee0f-40ad-bd90-31a61b9445cf', '10/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2336, 'K-PHOS NO 2 (Oral Pill)', '19027362', 'potassium phosphate', '9f446400-c403-4971-879e-1341f7f7d9da', '10/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2337, 'K-TAB XR (Oral Pill)', '19049105', 'Potassium Chloride', 'a269accf-8520-48eb-8164-adaa3f462d67', '8/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2338, 'KADIAN XR (Oral Pill)', '1110410', 'Morphine', '58159bbc-d862-4a2a-8486-874e0007487b', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2339, 'KALETRA (Oral Pill)', '1738170', 'lopinavir', 'dac2ea61-f5ce-45b8-b4aa-d761c5aecd74', '10/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2340, 'Kanamycin (Injectable)', '1784749', 'Kanamycin', 'd4865638-1259-4eef-a73c-fe919af6e850', '5/29/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2341, 'KAOPECTATE REFORMULATED AUG 2006 (Oral Liquid)', '933794', 'attapulgite', 'db9c4b93-d5f2-4237-973e-75535024b9f5', '1/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2342, 'KAOPECTATE REFORMULATED AUG 2006 (Oral Pill)', '933794', 'attapulgite', '9d15ff85-9a7c-42fe-bd85-bcbf7711c277', '9/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2343, 'KAYEXALATE (Oral Liquid)', '19078126', 'Sodium polystyrene sulfonate', 'e7808d28-9d96-4dde-81bc-5c8357cba004', '9/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2344, 'KAZANO (Oral Pill)', '43013884', 'alogliptin', '83cb7914-a683-47bb-a713-f2bc6a596bd2', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2345, 'KEDBUMIN (Injectable)', '1344143', '"Albumin Human, USP"', '57bd6811-8619-11e0-9d78-0800200c9a66', '11/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2346, 'KEFLEX (Oral Pill)', '1786621', 'Cephalexin', '68fba58a-7748-4581-8432-f5286c46d90a', '2/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2347, 'KEMSTRO (Oral Disintegrating)', '715233', 'Baclofen', 'f133fe04-1550-4fa4-9dc4-652c27936bf2', '9/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2348, 'KENALOG (Injectable)', '903963', 'Triamcinolone', '7bda15b1-d50d-4b1a-83a2-d9a450961bcf', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2349, 'KENALOG (Topical)', '903963', 'Triamcinolone', 'cdf6c80c-ddbd-498f-8897-3c0feebafe31', '7/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2350, 'Kentucky bluegrass pollen extract (Injectable)', '40161228', 'Kentucky bluegrass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2351, 'KEPPRA (Injectable)', '711584', 'Levetiracetam', '90b553fe-4e94-4cce-b5df-ea3e6487930d', '10/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2352, 'KEPPRA (Oral Pill)', '711584', 'Levetiracetam', 'd317020c-0850-4a5b-b344-74ad10b0b089', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2353, 'KERALAC (Topical)', '906914', 'Urea', 'eccfae7f-4b53-4781-b198-f7c18366bfc9', '5/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2354, 'KERALYT (Shampoo)', '964407', 'Salicylic Acid', '26e112b1-a64f-447c-a892-c83155ba1853', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2355, 'KERALYT 5 (Topical)', '964407', 'Salicylic Acid', 'f36792ab-d519-41af-a9dc-27e6ef0414ae', '11/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2356, 'KETALAR (Injectable)', '785649', 'Ketamine', '9f675d38-d02f-455c-bc99-bac5924f5054', '10/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2357, 'Ketamine (Injectable)', '785649', 'Ketamine', '57ec7d99-c36d-444e-8a2c-78a3b5798163', '6/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2358, 'KETEK (Oral Pill)', '1702911', 'telithromycin', 'ba1cca98-f350-4655-88e3-6ef990779fb9', '3/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2359, 'Ketoconazole (Oral Pill)', '985708', 'Ketoconazole', '72c743b9-cb85-46e8-873a-b84e6d1b5250', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2360, 'Ketoconazole (Shampoo)', '985708', 'Ketoconazole', 'efbc6388-90ce-11de-b92c-8b7156d89593', '6/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2361, 'Ketoconazole (Topical)', '985708', 'Ketoconazole', '7a18a4f4-5487-4cf6-a46d-58369dc5833c', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2362, 'Ketoprofen (Oral Pill)', '1185922', 'Ketoprofen', 'b3180408-a3c0-4e02-8535-dea390a52277', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2363, 'Ketorolac (Injectable)', '1136980', 'Ketorolac', '62591551-a644-4b2c-a0de-982e906fabc3', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2364, 'Ketorolac (Ophthalmic)', '1136980', 'Ketorolac', '8c90a3ac-ab76-405d-adc2-2f9ea3e3f250', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2365, 'Ketorolac (Oral Pill)', '1136980', 'Ketorolac', '2837a082-3a34-6f81-5e43-45a70295686b', '7/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2366, 'Ketotifen (Ophthalmic)', '986117', 'Ketotifen', 'a08f22d5-4486-4bd8-a234-f8ce30e7d708', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2367, 'KINEVAC (Injectable)', '19067803', 'Sincalide', '1408aabb-6982-48e5-ae9f-504ec43b0003', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2368, 'KLARON (Topical)', '1036252', 'Sulfacetamide', '66ab38ea-5cea-47be-97f2-486517999fb0', '12/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2369, 'KlonoPIN (Oral Pill)', '798874', 'Clonazepam', '542f22e8-dad2-47a8-93b6-30936715d73b', '12/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2370, 'KLOR-CON (Oral Liquid)', '19049105', 'Potassium Chloride', '1cd90949-3588-49b4-adf3-b70f2ee8f2ef', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2371, 'KLOR-CON XR (Oral Pill)', '19049105', 'Potassium Chloride', '65a86e85-b4ee-4244-8dfe-c078a9485410', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2372, 'KLOR-CON/EF (Effervescent)', '19027080', 'potassium bicarbonate', '731d4e0d-e73b-41ef-a39f-c356d999734d', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2373, 'KOGENATE (Injectable)', '1352213', 'Factor VIII', '6d2e4c97-0fb1-4ba4-9c58-3de071029e9b', '8/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2374, 'KOLA-PECTIN (Oral Liquid)', '937791', 'bismuth subsalicylate', '5310c125-1b3b-4511-8a71-06aa42891dc1', '1/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2375, 'KOLORZ (Oral Foam)', '19069022', 'Sodium Fluoride', '873dd35e-ed1a-4f2b-bd7d-237f73ed8f8e', '3/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2376, 'KONSYL (Oral Liquid)', '957797', 'Psyllium', '6c876cf1-c2ab-4bdc-bb3e-ac2ce5863649', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2377, 'KONSYL (Oral Pill)', '957797', 'Psyllium', 'ab185f98-fe41-41e5-991d-0ea37dfa5958', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2378, 'KONSYL SENNA PROMPT (Oral Pill)', '957797', 'Psyllium', '3b5e5397-fe64-48c5-8607-47c0a0900953', '12/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2379, 'KORLYM (Oral Pill)', '1508439', 'Mifepristone', '542f3fae-8bc8-4f00-9228-e4b66c9ad6a9', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2380, 'KRISTALOSE (Oral Liquid)', '987245', 'Lactulose', '535dd1ea-b567-49f7-9a84-8ea91e78c466', '9/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2381, 'KRYSTEXXA (Injectable)', '40226208', 'Pegloticase', '5f4574d1-401f-4647-83e5-28c0f4a122a7', '4/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2382, 'Labetalol (Injectable)', '1386957', 'Labetalol', 'f6e529bf-fe4d-4091-a3c2-774245b5f0a1', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2383, 'Labetalol (Oral Pill)', '1386957', 'Labetalol', '4b0a80fc-51d6-4a70-8ebb-6a403ab91f4f', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2384, 'LAC-HYDRIN (Topical)', '19011035', 'Lactate', '807054c6-2dae-4cc2-b790-674ab66cf79b', '2/18/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2385, 'LAC-HYDRIN TEN (Topical)', '19011035', 'Lactate', 'b73836e9-7ccc-41bb-b4ef-65ad2d865085', '2/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2386, 'LACRISERT (Implant)', '19002257', 'hydroxypropylcellulose', 'cc7a6a52-0b77-4df7-8403-dd21c1334f6c', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2387, 'Lactate (Topical)', '19011035', 'Lactate', '736c1976-7448-4d04-8ca7-9455e4db96e8', '5/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2388, 'Lactulose (Oral Liquid)', '987245', 'Lactulose', '8a42c3af-b08d-4fd4-b2f7-4eda676921f2', '2/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2389, 'LaMICtal (Oral Pill)', '705103', 'lamotrigine', '22a9788c-5a9b-411e-844e-4a0b12d1d095', '12/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2390, 'LamISIL (Topical)', '1741309', 'terbinafine', 'c7f36b7b-f205-4de5-b083-acea57281871', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2391, 'LAMISIL DEFENSE (Topical)', '902950', 'Tolnaftate', 'c0ad1ce5-bdb3-43cc-8d07-84f250eb289f', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2392, 'lamiVUDine (Oral Pill)', '1704183', 'Lamivudine', 'bd55dd57-348c-4d78-b322-d1ae10279298', '8/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2393, 'lamiVUDine/Zidovudine (Oral Pill)', '1704183', 'Lamivudine', '16da660b-9981-4d24-a14a-94c7744fce4f', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2394, 'lamoTRIgine (Chewable)', '705103', 'lamotrigine', 'a7455849-968d-4d85-8733-1e01701d7942', '4/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2395, 'lamoTRIgine (Oral Disintegrating)', '705103', 'lamotrigine', '380bddae-5b31-4965-96de-97711d859d11', '2/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2396, 'lamoTRIgine (Oral Pill)', '705103', 'lamotrigine', '9b057910-de40-3a17-2d52-8b520d5e0cbc', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2397, 'LANACANE (Topical)', '916802', 'Benzethonium', '4b965cd3-bfe4-4aad-a52c-b747696baa1c', '12/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2398, 'Lanolin (Topical)', '19087317', 'Lanolin', '3c8ac730-3e34-4368-9cb3-7047b7149fe3', '10/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2399, 'Lanolin/Petrolatum (Topical)', '19087317', 'Lanolin', 'beed4a17-c617-49c7-9954-470c02cfbbeb', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2400, 'LANOXIN (Injectable)', '1326303', 'Digoxin', 'bf0bcd81-38b8-482f-8865-61d8fb9a5c59', '1/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2401, 'LANOXIN (Oral Pill)', '1326303', 'Digoxin', '0b96049b-e6b9-4ebb-bfe9-d5a73ed4f66b', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2402, 'Lansoprazole (Oral Disintegrating)', '929887', 'lansoprazole', '7140f8d9-e478-4f69-a4eb-3fd4c9414576', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2403, 'Lansoprazole (Oral Pill)', '929887', 'lansoprazole', '70bade45-0d35-46db-964e-a8ad9dd91646', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2404, 'Lanthanum carbonate (Chewable)', '990028', 'lanthanum carbonate', '21bc55ec-5f23-4d0b-9488-d5b08b7c0fc2', '4/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2405, 'LANTISEPTIC (Topical)', '19087317', 'Lanolin', '0fb56eed-66b6-4aa8-80b4-67015b99cd08', '1/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2406, 'LANTISEPTIC MULTI-PURPOSE (Topical)', '902616', 'Calamine', '4cc157aa-cdab-4ac2-bec4-647d26a4d7ee', '1/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2407, 'LANTUS (Injectable)', '1502905', 'Insulin Glargine', '13cfe263-6a6a-4b0f-94f4-771ab6a105c0', '11/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2408, 'LASTACAFT (Ophthalmic)', '40224159', 'alcaftadine', 'c192fecc-046d-4905-868f-b8200320309c', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2409, 'Latanoprost (Ophthalmic)', '954688', 'latanoprost', 'e2e7999b-ea0b-69d0-4ad0-c214601f97a7', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2410, 'LATRIX (Topical)', '906914', 'Urea', '2b7add8d-2a6a-436c-9c1e-f94e67683efb', '7/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2411, 'LATUDA (Oral Pill)', '40230761', 'lurasidone', '88a244d1-eddb-499c-bee2-e1f49056e78f', '11/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2412, 'LAVIV (Injectable)', '40241205', 'azficel-T', '4a41354f-c689-4216-82cc-bfc572f16374', '1/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2413, 'Ledipasvir/Sofosbuvir (Oral Pill)', '45775020', 'ledipasvir', '1a1c555d-2fdf-4150-8ace-dbc770c226bf', '12/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2414, 'Leflunomide (Oral Pill)', '1101898', 'leflunomide', '753453c5-8a7a-878e-3ce7-1d1edce718a9', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2415, 'LEGATRIN PM (Oral Pill)', '1125315', 'Acetaminophen', 'c7646e78-e88d-4f61-9075-b912fe5578fc', '8/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2416, 'LEMTRADA (Injectable)', '1312706', 'alemtuzumab', '6236b0bc-82e9-4447-9a78-f57d94770269', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2417, 'LENZAGEL (Topical)', '989878', 'Lidocaine', 'f52cc82a-e5fd-494a-942f-372e2eb46fcb', '9/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2418, 'LENZAPATCH (Transdermal)', '989878', 'Lidocaine', 'a4ba3e83-ca7c-4ff2-824c-77fe08e1586c', '12/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2419, 'LESCOL (Oral Pill)', '1549686', 'fluvastatin', 'e38126a5-9d6a-422f-812c-a01610108162', '4/5/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2420, 'Letrozole (Oral Pill)', '1315946', 'letrozole', '6cfd29d7-f519-7b8c-4814-07b39f367f0d', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2421, 'Leucovorin (Injectable)', '1388796', 'Leucovorin', 'ab691d4e-e0d1-4ba1-9c7a-1cdcfcc3c17c', '3/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2422, 'Leucovorin (Oral Pill)', '1388796', 'Leucovorin', '084227c1-90eb-4653-807a-eb98cb3cefb8', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2423, 'LEUKERAN (Oral Pill)', '1390051', 'Chlorambucil', '967ed3ff-d99b-41e8-b768-dfb586d3d9a6', '6/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2424, 'LEUKINE (Injectable)', '1308432', 'sargramostim', 'c96afe62-f0cf-4d4b-b57d-194a8ec12389', '8/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2425, 'Leuprolide (Injectable)', '1351541', 'Leuprolide', 'a3b01473-30c7-4945-bd60-2484221aaaad', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2426, 'Levalbuterol (Inhalant)', '1192218', 'Levalbuterol', '0c47c47d-45f7-4eb4-b1f8-7d6c633a1f69', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2427, 'LEVAQUIN (Oral Pill)', '1742253', 'Levofloxacin', '139f86a4-75c5-4304-894c-8f8b8a396c78', '7/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2428, 'LEVEMIR (Injectable)', '1516976', 'insulin detemir', '2b8d9730-686b-444b-9941-7b5877255924', '9/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2429, 'levETIRAcetam (Injectable)', '711584', 'Levetiracetam', 'f00d8f59-c333-48ad-aca3-98a49bcd228e', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2430, 'levETIRAcetam (Oral Liquid)', '711584', 'Levetiracetam', 'd57044c1-9222-4127-a491-3328324fb4b2', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2431, 'levETIRAcetam (Oral Pill)', '711584', 'Levetiracetam', 'a4f7e6ed-992b-4217-82d8-658036d12faa', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2432, 'LEVITRA (Oral Pill)', '1311276', 'vardenafil', 'f18a82f7-ce44-4f9c-ae69-d3ad1d375564', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2433, 'Levobunolol (Ophthalmic)', '932815', 'Levobunolol', '5ab1efbe-530b-4787-b40a-c7dbf18161e1', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2434, 'levOCARNitine (Injectable)', '1553610', 'Levocarnitine', 'cc4da2c3-f939-444d-9b5b-a57b6051c190', '8/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2435, 'levOCARNitine (Oral Liquid)', '1553610', 'Levocarnitine', 'b2cbc620-59fd-47b6-9e4b-7e3e31533a1c', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2436, 'levOCARNitine (Oral Pill)', '1553610', 'Levocarnitine', '479e0e78-9b6e-4991-80f3-e92386722765', '8/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2437, 'Levocetirizine (Oral Liquid)', '1136422', 'levocetirizine', 'df2a19c7-f437-425c-8253-a2523122a653', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2438, 'Levocetirizine (Oral Pill)', '1136422', 'levocetirizine', '4f43d057-cba8-4366-86ba-4be361e4c71f', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2439, 'Levofloxacin (Ophthalmic)', '1742253', 'Levofloxacin', 'f79d2ae4-ccfb-49ca-bf0e-e505f3477d30', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2440, 'Levofloxacin (Oral Pill)', '1742253', 'Levofloxacin', '814450ae-439e-4a5d-8c60-9b21b6f14be5', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2441, 'Levoleucovorin (Injectable)', '40168303', 'levoleucovorin', 'f977c9bb-bef1-4746-9894-4c29a1fdb0d8', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2442, 'Levomefolic Acid (Oral Pill)', '40228423', 'Levomefolic Acid', '8132454a-6135-4bac-b206-83a55eb8dbc6', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2443, 'Levonorgestrel (Implant)', '1589505', 'Levonorgestrel', '9f44ff35-e052-49cd-a1c2-0bfd87d49309', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2444, 'Levonorgestrel (Oral Pill)', '1589505', 'Levonorgestrel', '38c26cb9-052e-426f-9916-c13e7a5e62d0', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2445, 'LEVOPHED (Injectable)', '1321341', 'Norepinephrine', '8c9dc6eb-e53a-4cc0-92c3-7a53d268cf93', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2446, 'Levorphanol (Oral Pill)', '1189766', 'Levorphanol', '77f4a54a-6901-46d9-93db-ad4be7eae6c3', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2447, 'LEVOTHROID (Oral Pill)', '1501700', 'Thyroxine', '101de879-bb0a-4157-9c0d-2c5720dd454e', '3/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2448, 'Levothyroxine (Injectable)', '1501700', 'Thyroxine', 'ce990712-49c1-4f66-9ee4-c770e8ec394c', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2449, 'Levothyroxine (Oral Pill)', '1501700', 'Thyroxine', 'a0bef5df-f192-4c0b-be61-2f28b982e8fd', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2450, 'Levothyroxine/Triiodothyronine (Oral Pill)', '1501700', 'Thyroxine', '7d028b83-5166-4b2e-b442-ba6cbfefbfd6', '5/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2451, 'LEVOXYL (Oral Pill)', '1501700', 'Thyroxine', '758588c3-c63e-491b-0aa2-4f50d80cb174', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2452, 'LEVSIN (Injectable)', '923672', 'Hyoscyamine', 'dd2e786c-29a7-40f8-a5f3-7641413f5036', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2453, 'LEVSIN (Sublingual)', '923672', 'Hyoscyamine', 'f38ece41-b890-11e2-9e96-0800200c9a66', '5/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2454, 'LEVULAN (Topical)', '924120', 'Aminolevulinate', 'e45cc371-9ebc-4904-12bc-65cb4e2817ad', '1/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2455, 'LEXAPRO (Oral Pill)', '715939', 'Escitalopram', '16c67e3e-9928-4ad8-b850-84ec4d333e9b', '4/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2456, 'LEXIVA (Oral Pill)', '1736829', 'fosamprenavir', '009575f9-74e8-4a6d-9fa6-3cae72fd01c3', '5/26/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2457, 'LIALDA (Oral Pill)', '968426', 'mesalamine', '07e5ac9c-a5b2-42dc-84fa-963dbc51ba21', '12/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2458, 'LIBRAX (Oral Pill)', '990678', 'Chlordiazepoxide', 'f99ebf66-f207-4a97-9666-4da1d72b061c', '1/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2459, 'LICE MD (Topical)', '946340', 'Piperonyl Butoxide', '7509990f-0bc8-44dc-9678-05b27f2c1368', '9/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2460, 'Lidocaine (Injectable)', '989878', 'Lidocaine', '331f6960-a09d-4513-9e6b-a03527d9131e', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2461, 'Lidocaine (Mucosal)', '989878', 'Lidocaine', '8a4c45c0-7eae-4296-ae2e-6d618228dc8b', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2462, 'Lidocaine (Rectal)', '989878', 'Lidocaine', 'bf08d3c1-f3ef-4307-ba99-b20e31a3e8f0', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2463, 'Lidocaine (Topical)', '989878', 'Lidocaine', 'c913688b-c51d-44c2-8ce6-5200f1ea0bab', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2464, 'Lidocaine (Transdermal)', '989878', 'Lidocaine', '55be87b4-a69b-4bfd-bf92-2949ec5e5dab', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2465, 'Lidocaine/Menthol (Topical)', '989878', 'Lidocaine', 'e8aa0e47-68e1-462c-a609-58548448da44', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2466, 'Lidocaine/Menthol (Transdermal)', '989878', 'Lidocaine', '3f541c7c-e6d6-47cb-8406-865bc61f8c5d', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2467, 'Lidocaine/Prilocaine (Mucosal)', '989878', 'Lidocaine', 'b501d239-923b-48b2-82ed-6c5c253a67e2', '8/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2468, 'Lidocaine/Prilocaine (Topical)', '989878', 'Lidocaine', 'c05f3803-92ae-42b7-8248-933bd92d6116', '7/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2469, 'Lidocaine/Tetracaine (Transdermal)', '989878', 'Lidocaine', 'b3eee508-8bf3-4bd3-9a71-47ee6ea87f95', '3/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2470, 'LIDOCREAM (Topical)', '989878', 'Lidocaine', '298401a9-8584-4801-af96-81d464d220bb', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2471, 'LIDODERM (Transdermal)', '989878', 'Lidocaine', '18e420b9-0fd1-48d9-9a23-c1e29a5f629f', '9/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2472, 'LIDOSITE (Transdermal)', '1343916', 'Epinephrine', '82b5bf2c-7dc9-40bd-9fb4-b5b1b5be0470', '9/14/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2473, 'LIGNOSPAN (Injectable)', '1343916', 'Epinephrine', '82e7d9d8-bad8-4dac-8e2c-29e834fc6dbf', '12/19/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2474, 'Linagliptin (Oral Pill)', '40239216', 'Linagliptin', 'dfe327e8-f6ab-41e5-bdef-d520118cd83a', '7/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2475, 'Lincomycin (Injectable)', '1790692', 'Lincomycin', '0f6a98ff-c908-48a8-ae17-c8b32f4396a3', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2476, 'Lindane (Shampoo)', '916751', 'Lindane', '56158fc4-590f-4e8c-bf94-610a3cfc11c1', '7/2/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2477, 'Lindane (Topical)', '916751', 'Lindane', '54b9526e-29ab-46b0-ab82-d765fbee5c6f', '1/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2478, 'Linezolid (Oral Pill)', '1736887', 'linezolid', '2a02e028-263f-4673-ae85-19b784bd118c', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2479, 'LIPITOR (Oral Pill)', '1545958', 'atorvastatin', '76a76f8e-d7c6-4621-b0a4-d5db0c24f089', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2480, 'LIPODOX (Injectable)', '19051649', 'doxorubicin liposome', '1d5beebf-77f3-47ca-a9a1-5f64f42fed07', '5/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2481, 'LIPTRUZET (Oral Pill)', '1545958', 'atorvastatin', 'c387354c-607b-474d-b2e5-d35c789ce09b', '9/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2482, 'Lisdexamfetamine (Oral Pill)', '709567', 'Lisdexamfetamine', 'a310fc51-2743-4755-8398-fed5402283f6', '1/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2483, 'Lisinopril (Oral Pill)', '1308216', 'Lisinopril', '69b41c71-b39e-43cf-94b7-8909ae9fd1fa', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2484, 'LISTERINE (Mouthwash)', '19069022', 'Sodium Fluoride', '283fea4d-a8e5-42fa-8617-da9235b8be85', '10/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2485, 'LISTERINE ANTISEPTIC (Mouthwash)', '19050346', 'Eucalyptol', 'd38a273c-3833-4459-9e80-c2b0c779772e', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2486, 'LISTERINE ESSENTIAL CARE TARTAR CONTROL (Toothpaste)', '19068715', 'monofluorophosphate', '84f70fea-d730-49ee-ab74-cd280ed6d506', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2487, 'LITHANE (Oral Pill)', '751246', 'Lithium Carbonate', '42bed965-4b8f-4471-bcc9-091f87238653', '7/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2488, 'Lithium Carbonate (Oral Pill)', '751246', 'Lithium Carbonate', 'bc99fa8c-1d8b-4363-b616-548c62594076', '10/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2489, 'Lithium Carbonate XR (Oral Pill)', '751246', 'Lithium Carbonate', '9efc1d04-7aae-4ca9-9af6-ea6f3e095db2', '6/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2490, 'Lithium citrate (Oral Liquid)', '767410', 'lithium citrate', '1a04cc23-61fa-455b-9718-2cdcf54036e0', '1/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2491, 'LITHOBID XR (Oral Pill)', '751246', 'Lithium Carbonate', 'ea4ece7f-e81f-48de-b262-577db5b6fe6c', '7/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2492, 'LITTLE FEVERS (Oral Liquid)', '1125315', 'Acetaminophen', 'e1e44c85-d10c-4997-8f85-064cda7906eb', '8/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2493, 'LITTLE OUCHIES (Topical)', '917006', 'Benzocaine', 'a4b73305-edf6-42cd-994a-0d7e3507a97d', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2494, 'LITTLE TUMMYS LAXATIVE DROPS (Oral Liquid)', '938268', '"sennosides, USP"', 'b2bf2d76-7dc0-4864-bfc2-ef41e155d316', '9/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2495, 'LIVALO (Oral Pill)', '40165636', 'pitavastatin', '44dcbf97-99ec-427c-ba50-207e0069d6d2', '10/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2496, 'Live oak pollen extract (Injectable)', '40167574', 'live oak pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2497, 'LMX (Rectal)', '989878', 'Lidocaine', '34f8ed6b-4a52-4a99-9c1b-254196dc29b0', '8/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2498, 'LMX (Topical)', '989878', 'Lidocaine', 'f0e7c92f-8b0b-4045-b659-af9f6e81260f', '6/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2499, 'Loblolly pine pollen extract (Injectable)', '40172266', 'loblolly pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2500, 'LOCOID (Topical)', '975125', 'Hydrocortisone', 'c7b4f583-2f79-4242-8ed2-d0e19ce8a510', '11/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2501, 'Lodgepole pine pollen extract (Injectable)', '40172270', 'lodgepole pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2502, 'Lodgepole pine pollen extract/Yellow pine pollen extract (Injectable)', '40172270', 'lodgepole pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2503, 'LODOSYN (Oral Pill)', '740560', 'Carbidopa', '79e4ca99-7217-41bb-8ace-d0040b56e859', '3/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2504, 'Lodoxamide (Ophthalmic)', '967496', 'Lodoxamide', '1b97597f-f2e7-4574-81a8-f35b769c957a', '8/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2505, 'LODRANE D (Oral Pill)', '1130863', 'Brompheniramine', '4ae74ab3-c1f7-4347-9833-16553cf9969d', '2/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2506, 'LOFIBRA (Oral Pill)', '1551803', 'Fenofibrate', '680a6740-8ea8-4a06-b659-41c2e5b1a4fd', '8/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2507, 'Lombard poplar pollen extract/White poplar pollen extract (Injectable)', '40161316', 'Lombard poplar pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2508, 'LOMOTIL (Oral Pill)', '914335', 'Atropine', 'd2b171be-ac59-48ec-84da-03d3f2d34ca6', '11/13/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2509, 'Lomustine (Oral Pill)', '1391846', 'Lomustine', '17893de9-7d54-448c-9fca-d10642046d14', '12/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2510, 'Loperamide (Oral Liquid)', '991876', 'Loperamide', 'b5132a26-dc9f-4495-97fa-9225b87e1c8a', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2511, 'Loperamide (Oral Pill)', '991876', 'Loperamide', 'ab07bfd1-d2d3-427a-866d-89a10d40a4e9', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2512, 'Lopinavir/Ritonavir (Oral Pill)', '1738170', 'lopinavir', 'c7fc2d1e-802e-4da1-9763-3355f8aafe3a', '10/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2513, 'LOPRESSOR (Oral Pill)', '1307046', 'Metoprolol', 'bb05420c-fd24-4672-9f62-fdd313819287', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2514, 'LOPRESSOR HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', 'd8964894-3cd8-41c1-a844-148d2ef38a88', '10/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2515, 'LORADAMED (Oral Pill)', '1107830', 'Loratadine', '32092beb-c177-4b6b-afa4-b4b5d64621f4', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2516, 'Loratadine (Oral Disintegrating)', '1107830', 'Loratadine', '2f0ef205-49bb-4a74-b000-2f9823ec6179', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2517, 'Loratadine (Oral Liquid)', '1107830', 'Loratadine', '775731a2-9b30-4a0e-82fb-b517b36317c7', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2518, 'Loratadine (Oral Pill)', '1107830', 'Loratadine', 'b7c8c727-6498-40f4-942a-5b64f40641af', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2519, 'LORazepam (Injectable)', '791967', 'Lorazepam', '095ab8ff-83c5-4906-ae67-b04f4a58b58d', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2520, 'LORazepam (Oral Liquid)', '791967', 'Lorazepam', '711b60a3-028d-41d4-aa17-8f976e6df23e', '12/6/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2521, 'LORazepam (Oral Pill)', '791967', 'Lorazepam', 'ba6ce50e-c5a9-47ca-9803-a1ed82172b0e', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2522, 'LORCET (Oral Pill)', '1125315', 'Acetaminophen', '7a1411e1-b705-43d9-a305-c020c9e3bf4d', '4/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2523, 'LORTAB (Oral Liquid)', '1125315', 'Acetaminophen', '55386fe7-990a-4596-a109-a6553a57bc7c', '5/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2524, 'LORTAB (Oral Pill)', '1125315', 'Acetaminophen', '6e48680d-b4ea-4eca-86ab-d9eb3434855b', '8/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2525, 'LORTUSS EX (Oral Liquid)', '1201620', 'Codeine', '69ee642b-423c-4a68-8c16-cae09d3ef59d', '8/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2526, 'LORTUSS LQ (Oral Liquid)', '738818', 'Doxylamine', 'fe74017b-3387-4e72-9e2d-9eb46465c3df', '4/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2527, 'LORZONE (Oral Pill)', '795113', 'Chlorzoxazone', 'bdd61b83-5bcd-4d23-8ef5-aeb9ca2f7c14', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2528, 'Losartan (Oral Pill)', '1367500', 'Losartan', 'ab0863e8-cecd-4d66-85f4-72ceb684e97b', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2529, 'LOTEMAX (Ophthalmic)', '967562', 'loteprednol etabonate', '9a666065-d467-42b8-8ecd-0ec1de9986d5', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2530, 'LOTENSIN (Oral Pill)', '1335471', 'benazepril', '4d954024-a191-46e3-ba71-2a7d5b0c65d5', '7/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2531, 'LOTENSIN HCT (Oral Pill)', '1335471', 'benazepril', '94c4536f-e28e-48b1-8336-b3939917e99d', '3/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2532, 'Loteprednol etabonate (Ophthalmic)', '967562', 'loteprednol etabonate', '21c76da0-50a1-41c0-91b8-8cc4dcc27f60', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2533, 'LOTREL (Oral Pill)', '1332418', 'Amlodipine', '4653cabc-f249-4b4e-95b6-5fb4ddc0ad5d', '3/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2534, 'LOTRIMIN (Topical)', '1000632', 'Clotrimazole', 'f9536683-3f32-4c71-9b6a-70f8611e3dcf', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2535, 'LOTRIMIN AF (Topical)', '907879', 'Miconazole', 'd6eb3b78-405b-43e5-9db5-da671465eda1', '5/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2536, 'LOTRIMIN ULTRA (Topical)', '958396', 'butenafine', '0eadac26-4619-4227-9dda-28e739d77a87', '8/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2537, 'LOTRONEX (Oral Pill)', '948555', 'alosetron', '526ba44c-a476-4675-a63c-4d0a72b723f5', '6/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2538, 'Lovastatin (Oral Pill)', '1592085', 'Lovastatin', 'baf283fe-3ab2-460a-a53a-a8ad5d4743b9', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2539, 'LOVAZA (Oral Pill)', '1560305', 'Omega-3 Acid Ethyl Esters (USP)', 'fb2141cd-6cff-470c-b776-4482afcebb41', '2/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2540, 'LOVENOX (Injectable)', '1301025', 'Enoxaparin', '53fd1302-9e1b-4e04-b06d-1a706547c388', '11/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2541, 'Loxapine (Oral Pill)', '792263', 'Loxapine', 'a61ac8b0-d2eb-4546-a57b-2c296fb12699', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2542, 'LOZOL (Oral Pill)', '978555', 'Indapamide', '289796b5-f95c-4c40-bad7-d6359e0f7840', '12/16/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2543, 'Lubiprostone (Oral Pill)', '987366', 'lubiprostone', '1b632d92-a05b-42d3-88a6-b3e345d11fe4', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2544, 'LUBRIFRESH P.M. (Ophthalmic)', '908523', 'Mineral Oil', 'a9f844af-6887-4496-8c64-721357a4a5bb', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2545, 'LUCENTIS (Injectable)', '19080982', 'ranibizumab', 'de4e66cc-ca05-4dc9-8262-e00e9b41c36d', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2546, 'Lucinactant (Injectable)', '42800204', 'lucinactant', 'f2ba0c81-ceb0-11e0-9572-0800200c9a66', '5/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2547, 'LUDEN''S DROPS (Oral Lozenge)', '922191', 'pectin', 'fada4d58-9506-47f7-907e-bb340828a2e9', '1/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2548, 'LUDENT (Chewable)', '19069022', 'Sodium Fluoride', '029caea5-2b12-4051-b758-22cd7fc1d207', '12/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2549, 'LUFYLLIN (Oral Pill)', '1140088', 'Dyphylline', '6d7ed7c0-9646-11de-a404-0002a5d5c51b', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2550, 'LUMICAIN (Topical)', '957393', 'aluminum chloride', '9fdcce3e-e4d4-41ae-8609-37987c12414e', '9/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2551, 'LUMIGAN (Ophthalmic)', '904525', 'bimatoprost', 'ec9097e7-4be4-4e62-99c3-24b48244c9f2', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2552, 'LUMIZYME (Injectable)', '19088328', 'alglucosidase alfa', 'd6bfbc45-2d34-439e-8aad-59ee2d53d4df', '1/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2553, 'LUNESTA (Oral Pill)', '757352', 'Eszopiclone', 'e711e994-a489-d14b-9a50-60557b9ed137', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2554, 'LUPRON (Injectable)', '1351541', 'Leuprolide', '319f0af7-6cc7-4a91-a28a-9ceea37d0ca8', '3/25/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2555, 'Lurasidone (Oral Pill)', '40230761', 'lurasidone', '88a244d1-eddb-499c-bee2-e1f49056e78f', '11/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2556, 'LUSTRA (Topical)', '976778', 'hydroquinone', 'c1d01301-70c3-484b-8967-2324afa1781e', '2/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2557, 'LUXIQ (Topical)', '920458', 'Betamethasone', '3dab9411-df12-4073-9cc1-3273e2aee7e7', '4/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2558, 'LUZU (Topical)', '44507693', 'luliconazole', 'a7016010-ce43-4c09-8d21-aeb697ffed31', '1/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2559, 'Lymphocyte immune globulin (Injectable)', '19061406', 'Lymphocyte immune globulin', 'bd545ba1-2366-4df1-bd67-10dfd7632b54', '4/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2560, 'LYRICA (Oral Pill)', '734354', 'pregabalin', '6f51d7bf-aba2-4f10-911a-3cbc4d501a00', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2561, 'LYSODREN (Oral Pill)', '1309161', 'Mitotane', 'e9fba7d4-a0ec-4bfa-9b5b-ec97a9710fd3', '1/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2562, 'LYSTEDA (Oral Pill)', '1303425', 'Tranexamic Acid', '49317334-a833-4620-a3b5-f179f8a821e2', '11/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2563, 'M-CLEAR WC (Oral Liquid)', '1201620', 'Codeine', '903fe5b6-6c28-4b92-bdab-32389c10c25a', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2564, 'M-END MAX D (Oral Liquid)', '1201620', 'Codeine', '9f8fc672-3589-498d-82a7-e243f4e0dec0', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2565, 'M-END PE (Oral Liquid)', '1130863', 'Brompheniramine', 'fce1a6e4-cda3-462e-a853-049eabe4441e', '12/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2566, 'M-END WC (Oral Liquid)', '1130863', 'Brompheniramine', 'f07920ad-7f4b-48d6-8c86-d5a257ff91c6', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2567, 'MAALOX MAX (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'ac12f0ae-6f06-4fa4-8265-37d27db8cb5d', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2568, 'MAALOX PLUS (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'e2a14762-3860-44c3-a3ea-5dbc45f4b1d5', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2569, 'Macitentan (Oral Pill)', '44507580', 'Macitentan', '1e484a50-55db-4b85-8c57-6cd1b0353abd', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2570, 'MACROBID (Oral Pill)', '920293', 'Nitrofurantoin', '1971e893-5fdb-41e3-a1e9-5e52deed03d1', '4/21/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2571, 'MACRODANTIN (Oral Pill)', '920293', 'Nitrofurantoin', 'ec86b651-d77d-4a42-b493-24244456b3f6', '4/21/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2572, 'Mafenide (Topical)', '992716', 'Mafenide', '570ce479-d902-4394-bbae-41dfe16c5485', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2573, 'MAGNEBIND (Oral Pill)', '19035704', 'Calcium Carbonate', 'af124c72-0a35-4305-abd8-2b0ebf84da08', '7/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2574, 'MAGNEBIND 400 RX (Oral Pill)', '19035704', 'Calcium Carbonate', 'e74e25aa-2f4c-4026-bc2b-7bb21aaf6fc5', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2575, 'Magnesium acetate/Potassium Acetate/Sodium Chloride (Injectable)', '19013986', 'magnesium acetate', '94c12711-d672-450d-baae-06e24a72aace', '9/28/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2576, 'Magnesium carbonate (Oral Liquid)', '908464', 'magnesium carbonate', '163bceeb-ca74-413e-88b9-5c7bc9bbeb0d', '3/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2577, 'Magnesium Chloride (Injectable)', '19092849', 'Magnesium Chloride', '2105d1c1-54ef-4d1a-a63c-b1619e8b50db', '3/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2578, 'Magnesium citrate (Oral Liquid)', '967861', 'magnesium citrate', '511bb6ed-7832-4862-a572-24c37021041a', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2579, 'Magnesium Hydroxide (Chewable)', '992956', 'Magnesium Hydroxide', '0965c4e1-492d-1ffe-e054-00144ff88e88', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2580, 'Magnesium Hydroxide (Oral Liquid)', '992956', 'Magnesium Hydroxide', '3a189feb-0f1d-4695-899f-cbe508b9924d', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2581, 'Magnesium Hydroxide/Omeprazole/Sodium Bicarbonate (Chewable)', '992956', 'Magnesium Hydroxide', 'cc8ef530-dd8c-40f5-af7e-4622c9e01d52', '3/19/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2582, 'Magnesium Oxide (Oral Pill)', '993631', 'Magnesium Oxide', '2585e9da-e2df-40ec-8282-91dbe6476421', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2583, 'Magnesium Salicylate (Oral Pill)', '1168079', 'Magnesium Salicylate', 'd98ee9c8-40e2-4abb-b5c1-45e73e7dd23b', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2584, 'Magnesium Sulfate (Oral Granules)', '19093848', 'Magnesium Sulfate', '040fe343-fb47-2226-df5e-d873120e23c5', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2585, 'MAKENA (Injectable)', '19077143', 'Hydroxyprogesterone', 'a1998c1d-8337-4f00-8dcb-af3b54d39b77', '4/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2586, 'Malathion (Topical)', '993979', 'Malathion', 'e9ea6c59-0a3d-4ce0-96ab-f8e9c38ce9db', '3/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2587, 'Mannitol (Injectable)', '994058', 'Mannitol', 'd12cc802-b538-4065-a264-f474ff3b3043', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2588, 'Mannitol (Irrigation)', '994058', 'Mannitol', 'be1b2398-892c-4c5d-a045-ce12f03bea8e', '4/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2589, 'MAPAP (Chewable)', '1125315', 'Acetaminophen', '5b3391d9-0d16-4378-b98b-ac13de7d1004', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2590, 'MAPAP (Oral Disintegrating)', '1125315', 'Acetaminophen', '8080296f-44b6-450e-b3d6-bb8415b4e4cc', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2591, 'MAPAP (Oral Liquid)', '1125315', 'Acetaminophen', 'dbbeeebc-48c3-42b2-ac08-aadfe43cfede', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2592, 'MAPAP (Oral Pill)', '1125315', 'Acetaminophen', 'e27b1cb6-cfa0-47dc-9301-bf68f0695491', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2593, 'MAPAP PM (Oral Pill)', '1125315', 'Acetaminophen', '31a86ae4-cdae-46a5-9df5-d9d8cb9b5090', '5/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2594, 'MAPAP SINUS CONGESTION AND PAIN (Oral Pill)', '1125315', 'Acetaminophen', '0adcc105-107f-4a71-aa89-e5dbc03087a0', '2/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2595, 'Maple leaf sycamore pollen extract (Injectable)', '40172372', 'maple leaf sycamore pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2596, 'MAR-COF BP (Oral Liquid)', '1130863', 'Brompheniramine', '7bef7c48-f784-49c7-a6e6-93042252d54b', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2597, 'MAR-COF CG (Oral Liquid)', '1201620', 'Codeine', '60a41229-b125-43d8-b2b4-0bf40feed764', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2598, 'Maraviroc (Oral Pill)', '1787101', 'maraviroc', '74fba35e-931e-44d8-97e0-d243bb687a71', '2/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2599, 'MARCAINE (Injectable)', '732893', 'Bupivacaine', '250644e0-94b7-4da2-821a-50f66b54eb35', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2600, 'MARCAINE WITH EPINEPHRINE (Injectable)', '732893', 'Bupivacaine', '6a60cb55-530a-41ee-bc78-971eaf9f0850', '3/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2601, 'MARGESIC (Oral Pill)', '1125315', 'Acetaminophen', '338b9f27-7097-4675-9ec5-e1eea6898cd5', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2602, 'MARPLAN (Oral Pill)', '781705', 'Isocarboxazid', 'ac387aa0-3f04-4865-a913-db6ed6f4fdc5', '3/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2603, 'MARQIBO (Injectable)', '42874135', 'vincristine liposome', 'a1869e23-b93b-4407-843b-4b830319d82e', '1/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2604, 'MARTEN-TAB (Oral Pill)', '1125315', 'Acetaminophen', '85c7db7a-a99a-43ef-9337-9916762ca087', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2605, 'MAVIK (Oral Pill)', '1342439', 'trandolapril', 'bcaffc12-69af-46a8-a092-b3f66a0508d5', '2/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2606, 'MAXALT (Oral Disintegrating)', '1154077', 'rizatriptan', '08d06e6f-a1d8-4bd9-b851-d63858d55f91', '8/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2607, 'MAXALT (Oral Pill)', '1154077', 'rizatriptan', '08d06e6f-a1d8-4bd9-b851-d63858d55f91', '8/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2608, 'MAXIDEX (Ophthalmic)', '1518254', 'Dexamethasone', 'a0aa9dc9-265c-4dd6-9b03-276a47217839', '8/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2609, 'MAXIDONE (Oral Pill)', '1125315', 'Acetaminophen', 'a2617a15-b333-4ffc-98eb-36d8721aa0d6', '4/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2610, 'MAXITROL (Ophthalmic)', '1518254', 'Dexamethasone', '277ff310-b7dc-43b6-8a16-885b58882bc0', '8/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2611, 'MAXZIDE (Oral Pill)', '974166', 'Hydrochlorothiazide', 'e92eda49-861e-4c79-b446-ec1213151d92', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2612, 'Meadow fescue grass pollen extract (Injectable)', '40161861', 'meadow fescue grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2613, 'Mebendazole (Chewable)', '1794280', 'Mebendazole', 'c338415f-41e0-071d-8c51-a80a02ebf2cd', '10/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2614, 'Mecamylamine (Oral Pill)', '1394333', 'Mecamylamine', '0774cc48-7287-4093-91d6-9df41a81408a', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2615, 'Mechlorethamine (Topical)', '1394337', 'Mechlorethamine', '706bd420-2f32-11e0-aaee-0002a5d5c51b', '10/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2616, 'Meclizine (Chewable)', '994341', 'Meclizine', '6872c83f-905d-40e6-a451-1d080dd5314c', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2617, 'Meclizine (Oral Pill)', '994341', 'Meclizine', '9350fefc-9c00-182c-c3a9-044d4a40856f', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2618, 'MEDERMA ADVANCED SCAR (Topical)', '966376', 'Allantoin', '7cf1c5a8-d28a-48c2-8cba-a3e18a7d51f9', '11/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2619, 'MEDERMA PM (Topical)', '916662', 'dimethicone', 'e1864a26-e8a3-4c9d-a468-ea020fdc30e1', '11/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2620, 'MEDERMA STRETCH MARK THERAPY (Topical)', '916662', 'dimethicone', '6e84c921-03a7-4ec1-bd9b-4986b5559555', '12/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2621, 'MEDI-DERM WITH LIDOCAINE (Topical)', '939881', 'Capsaicin', '8e71c2d3-b1ce-4b22-b39f-7dd7cdf8de04', '8/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2622, 'MEDICAINE STING (Topical)', '917006', 'Benzocaine', '753e6cbe-31e0-4017-93d0-8b4bf5972f37', '3/31/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2623, 'MEDIHALER-ERGOTAMINE (Inhalant)', '1145379', 'Ergotamine', 'e713859d-f454-4f7e-a535-868b8d5f2c88', '9/1/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2624, 'MEDIPLAST (Topical)', '964407', 'Salicylic Acid', '35bd29f9-cf49-404b-826b-72d1269d4f19', '12/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2625, 'MEDROL (Oral Pill)', '1506270', 'Methylprednisolone', '4c0dd824-b099-47c3-aaf5-f6ddb873b3ee', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2626, 'MEDROX (Topical)', '939881', 'Capsaicin', 'cfaf5295-e559-4e27-887d-d590670b4e89', '6/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2627, 'MEDROX (Transdermal)', '939881', 'Capsaicin', 'a9343d24-8435-4a51-98a2-b7976cd369ab', '12/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2628, 'medroxyPROGESTERone (Injectable)', '1500211', 'Medroxyprogesterone', 'cd0bbdb2-754e-4e66-8f36-985b5819d642', '1/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2629, 'medroxyPROGESTERone (Oral Pill)', '1500211', 'Medroxyprogesterone', '468a972c-cb14-47c3-bdf6-4f7b64509e5c', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2630, 'Mefenamate (Oral Pill)', '1197736', 'Mefenamate', '194031c2-46f6-43b3-bbb4-faffe9b53fa4', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2631, 'Mefloquine (Oral Pill)', '19000498', 'Mefloquine', '1c47fd79-c0ca-42d6-9910-774272b25bc1', '7/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2632, 'MEGA C ACID PLUS (Injectable)', '19011773', 'Ascorbic Acid', '7b65c50d-09d6-4df2-8322-971b100c176d', '7/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2633, 'MEGACE (Oral Liquid)', '1300978', 'Megestrol', '654854bc-f847-4e3b-a0a1-8716553460ac', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2634, 'Megestrol (Oral Liquid)', '1300978', 'Megestrol', '33bc102c-31a3-4fd9-9702-c1193d7699a3', '7/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2635, 'Megestrol (Oral Pill)', '1300978', 'Megestrol', '66573d39-f2a7-49fd-9ed2-97ac8f6e8456', '7/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2636, 'MELAMIN (Topical)', '976778', 'hydroquinone', '30d92f16-1065-4754-88cd-58f9f05761ca', '7/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2637, 'MELAMIX (Topical)', '976778', 'hydroquinone', '9f3a6a77-7e19-43fe-922a-76ed5f25c3f1', '10/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2638, 'Meloxicam (Oral Liquid)', '1150345', 'meloxicam', 'c27c35d7-07e1-47d4-97cd-ed1fb17750ce', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2639, 'Meloxicam (Oral Pill)', '1150345', 'meloxicam', 'fe8480c4-b176-45ae-b4d6-fa59912fe286', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2640, 'Melphalan (Injectable)', '1301267', 'Melphalan', '9706e9a1-96ab-46b8-8846-32ee9d756b1d', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2641, 'Melphalan (Oral Pill)', '1301267', 'Melphalan', 'ff913271-0090-4832-a0fe-5154fe8f97b9', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2642, 'MELQUIN-3 (Topical)', '976778', 'hydroquinone', '6bfcc6a9-899b-4ad7-b4e8-67d95fd04708', '11/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2643, 'Memantine (Oral Liquid)', '701322', 'Memantine', '72973b46-f307-4a9e-8fb1-ad2cbccfd736', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2644, 'Memantine (Oral Pill)', '701322', 'Memantine', '1e3c74c9-0017-4d7a-a716-2b5366286a67', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2645, 'MEN-PHOR (Topical)', '938205', 'Camphor', '1294e5d7-7208-4312-bcc7-e0c093309559', '6/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2646, 'MENEST (Oral Pill)', '1551673', '"Estrogens, Esterified (USP)"', 'efb195b9-b995-48f3-a4cb-b7e09d56350e', '1/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2647, 'MENTAX (Topical)', '958396', 'butenafine', '167ecefd-4553-41b8-8160-81a48dbca076', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2648, 'Menthol (Oral Lozenge)', '901656', 'Menthol', 'b640a5d2-a7fe-486d-a65f-e7c993f950d6', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2649, 'Menthol (Topical)', '901656', 'Menthol', 'aa6d1beb-f462-4577-a57c-fb0ec12d4ce5', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2650, 'Menthol (Transdermal)', '901656', 'Menthol', 'de68eb17-95f1-4c10-a5b1-bb0b64bb441a', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2651, 'Menthol/Methyl salicylate (Topical)', '901656', 'Menthol', '5488358e-2c90-433d-a850-7dcb31ca82d2', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2652, 'Menthol/Methyl salicylate (Transdermal)', '901656', 'Menthol', '2e88c933-89e6-4a48-be7a-dc6a36e5c8f8', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2653, 'Menthol/Pramoxine (Topical)', '901656', 'Menthol', '2c0eb81d-347e-412b-a0fd-727f0eb0ca4b', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2654, 'Menthol/Zinc Oxide (Topical)', '901656', 'Menthol', 'ca5582e7-e11e-4353-94ef-086da44d42cd', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2655, 'MENTHOLATUM (Topical)', '938205', 'Camphor', '19e4b812-67c6-49fd-833a-b432100363f5', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2656, 'Meperidine (Injectable)', '1102527', 'Meperidine', '987a91b8-dd9e-47ce-bd43-f8189a54838e', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2657, 'Meperidine (Oral Liquid)', '1102527', 'Meperidine', '9c4f12e5-5e69-44d4-81a5-bd72c375eef5', '9/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2658, 'Meperidine (Oral Pill)', '1102527', 'Meperidine', '6c2b41c3-732c-477f-8790-0eecea43b2da', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2659, 'Meperidine/Promethazine (Oral Pill)', '1102527', 'Meperidine', 'dc578720-0447-4e99-ad63-75253a751297', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2660, 'MEPHYTON (Oral Pill)', '19044727', 'Vitamin K 1', 'eb8d7fd3-4c7c-43e7-be09-98a446b905ef', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2661, 'Mepivacaine (Injectable)', '702774', 'Mepivacaine', '007fcf17-f78a-40a7-d494-af93bbb40032', '3/23/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2662, 'Meprobamate (Oral Pill)', '702865', 'Meprobamate', 'e9aa3d4c-f2e9-4ca9-b563-85fac4024539', '8/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2663, 'Mercaptopurine (Oral Pill)', '1436650', 'mercaptopurine', 'c3b5b8b0-bc5c-4ce9-bbdc-febba60c2658', '2/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2664, 'MERCUROCLEAR (Topical)', '916460', 'Benzalkonium', 'e3428aa5-d13a-497c-b21f-4bb30b6154e4', '7/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2665, 'Meropenem (Injectable)', '1709170', 'meropenem', '7a68d899-2678-43a9-a9c1-ef8f916b562f', '6/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2666, 'Mesalamine (Oral Pill)', '968426', 'mesalamine', '07e5ac9c-a5b2-42dc-84fa-963dbc51ba21', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2667, 'Mesalamine (Rectal)', '968426', 'mesalamine', '357e0e6b-cfbd-454c-82d7-cfc460dc0d68', '3/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2668, 'Mesalamine XR (Oral Pill)', '968426', 'mesalamine', 'ec53b1d4-b98d-4b4d-acc3-199f98031966', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2669, 'Mesna (Injectable)', '1354698', 'Mesna', '26a12d79-fd1b-4e49-bbf0-0d55784379b8', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2670, 'MESNEX (Injectable)', '1354698', 'Mesna', '49fdfbc3-69f8-4706-9d11-bf60e4e7811b', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2671, 'MESNEX (Oral Pill)', '1354698', 'Mesna', '4a51ffdb-f59f-4e02-b3c4-f3457ab7b514', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2672, 'Mesquite pollen extract (Injectable)', '40161940', 'mesquite pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2673, 'Mestranol/Norethindrone (Oral Pill)', '1503184', 'Mestranol', 'a2b893ab-8ef1-4742-8026-7dfd69214840', '10/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2674, 'METAMUCIL (Oral Liquid)', '957797', 'Psyllium', '7fb350de-624d-4765-a777-6c7efebd2b28', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2675, 'Metaproterenol (Oral Liquid)', '1123995', 'metaproterenol', '66eb4b4d-2388-49d3-8ffa-0b9bca75a28e', '6/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2676, 'Metaproterenol (Oral Pill)', '1123995', 'metaproterenol', 'cf566e38-f6ff-4b86-9537-8684943b36eb', '7/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2677, 'Metaxalone (Oral Pill)', '780369', 'metaxalone', 'e8643c67-c531-4a4f-931d-0e3c91cfc0c8', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2678, 'metFORMIN (Oral Pill)', '1503297', 'Metformin', 'da99b8c4-f85e-409f-93a8-0e4758d74552', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2679, 'metFORMIN/Pioglitazone (Oral Pill)', '1503297', 'Metformin', 'c7dbc36d-3c84-488e-9b72-0593b5ed53a0', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2680, 'metFORMIN/Repaglinide (Oral Pill)', '1503297', 'Metformin', '5be33711-b77d-4a01-87c8-3b2618c16e8f', '5/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2681, 'metFORMIN/Rosiglitazone (Oral Pill)', '1503297', 'Metformin', 'e77a8504-b49f-4343-beaf-6e4c2c59ab45', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2682, 'metFORMIN/sitaGLIPtin (Oral Pill)', '1503297', 'Metformin', 'e1af8ccb-ad50-452b-af44-022c9a0cb0ed', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2683, 'Methadone (Injectable)', '1103640', 'Methadone', '9bbe219f-3bf1-44f4-a709-cd108c4fa9ef', '2/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2684, 'Methadone (Oral Liquid)', '1103640', 'Methadone', '8c363f90-c378-48ae-abbc-aeb25c9bf5cb', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2685, 'Methadone (Oral Pill)', '1103640', 'Methadone', '0b72a120-ca4e-4b90-7d89-52967a39adb3', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2686, 'Methamphetamine (Oral Pill)', '704053', 'Methamphetamine', 'f31f580f-1f08-4a0f-b078-0b9e3308f712', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2687, 'Methazolamide (Oral Pill)', '904250', 'Methazolamide', '7731560b-dbe7-4912-814e-ef60629e5f07', '1/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2688, 'Methenamine (Oral Pill)', '904356', 'Methenamine', 'ad741dc5-816c-4ab2-9273-9b1a586149bc', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2689, 'METHERGINE (Oral Pill)', '1305637', 'Methylergonovine', '94c9b1cf-ae12-45f3-8fcb-708a922cbc10', '5/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2690, 'Methimazole (Oral Pill)', '1504620', 'Methimazole', '9e6b80b8-6780-da50-f18f-30e6fe7b01b9', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2691, 'METHITEST (Oral Pill)', '1506602', 'Methyltestosterone', '77bb4ef4-c10e-4acc-8225-651d003f4561', '5/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2692, 'Methocarbamol (Injectable)', '704943', 'Methocarbamol', '8f91e243-7395-4ec9-adf5-37520983daf2', '12/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2693, 'Methocarbamol (Oral Pill)', '704943', 'Methocarbamol', '32863f21-30ff-4a8b-a2e6-8ab14a37af0d', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2694, 'Methohexital (Injectable)', '19005015', 'Methohexital', 'eccd8340-ead3-4363-8902-0c19d33aa2ac', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2695, 'Methotrexate (Injectable)', '1305058', 'Methotrexate', '6cf2e15a-6286-41f7-aa7d-3968d735c864', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2696, 'Methotrexate (Oral Pill)', '1305058', 'Methotrexate', '27dd39ca-207e-44db-8da1-a0689f0d6b6f', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2697, 'Methoxsalen (Injectable)', '905223', 'Methoxsalen', '5ad333bd-845f-43f8-9ecf-43491f26c7c7', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2698, 'Methoxsalen (Oral Pill)', '905223', 'Methoxsalen', 'ae951dc4-9031-43bf-943c-cb2366951f23', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2699, 'Methscopolamine (Oral Pill)', '1158632', 'Methscopolamine', '5c74bfb0-c80a-4a86-acd1-1e3a1b20255d', '10/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2700, 'Methyclothiazide (Oral Pill)', '905273', 'Methyclothiazide', '4910dad2-c533-4232-85bf-e6b0235379c2', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2701, 'Methyl salicylate (Topical)', '909440', 'methyl salicylate', '17d8e13d-daf8-4bf6-acd8-2ebbd2dd1d22', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2702, 'Methylcellulose (Oral Liquid)', '905371', 'Methylcellulose', '9d5f2244-a610-4d45-b6e8-e79bb17a558f', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2703, 'Methylcellulose (Oral Pill)', '905371', 'Methylcellulose', '8a4f9f08-45bc-4642-a382-bf1c623e2bcc', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2704, 'Methyldopa (Oral Pill)', '1305447', 'Methyldopa', '00206aae-7db1-4ae9-8500-b03fd6788d74', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2705, 'Methylene blue (Injectable)', '905518', 'Methylene blue', 'fde64824-2be5-4d85-8d57-5098ca6890bb', '12/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2706, 'Methylergonovine (Injectable)', '1305637', 'Methylergonovine', 'a9a3079e-b62b-4858-920e-d8f5cb38481e', '2/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2707, 'Methylergonovine (Oral Pill)', '1305637', 'Methylergonovine', '047d3ab6-1f93-4080-95c1-f938ce8d5532', '10/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2708, 'Methylphenidate (Chewable)', '705944', 'Methylphenidate', '16508cc6-13c7-4088-927a-b7206eb7c633', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2709, 'Methylphenidate (Oral Liquid)', '705944', 'Methylphenidate', '7b372d74-7ba7-437a-be8c-6e8335b78818', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2710, 'Methylphenidate (Oral Pill)', '705944', 'Methylphenidate', '330e620f-4b7f-4101-91dd-feddb7a823ed', '7/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2711, 'methylPREDNISolone (Injectable)', '1506270', 'Methylprednisolone', '9ac89740-8d4f-4d37-be69-df986d9da69f', '6/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2712, 'methylPREDNISolone (Oral Pill)', '1506270', 'Methylprednisolone', 'a82cafa3-f540-4c15-a2e0-faafe91d0820', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2713, 'methylPREDNISolone (Topical)', '1506270', 'Methylprednisolone', 'f8432414-d8a6-4597-a226-61fd09a80e0c', '4/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2714, 'methylTESTOSTERone (Oral Pill)', '1506602', 'Methyltestosterone', '09db5a9d-9662-4bfb-824c-9c9aaad488dc', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2715, 'Methysergide (Oral Pill)', '1106740', 'Methysergide', '3fae28ee-700e-4d4f-a040-02ef01a2aeb4', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2716, 'Metipranolol (Ophthalmic)', '905531', 'Metipranolol', '699ce415-0798-4244-b5ec-bcdb383b50b3', '8/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2717, 'Metoclopramide (Injectable)', '906780', 'Metoclopramide', 'b78499dc-4d24-4226-be97-dc618d9da0cf', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2718, 'Metoclopramide (Oral Disintegrating)', '906780', 'Metoclopramide', '3fb9a45e-48ba-45c5-86a7-03a8744888f6', '8/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2719, 'Metoclopramide (Oral Liquid)', '906780', 'Metoclopramide', '4e12e98a-06fe-4b3c-bb64-f2701e195c74', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2720, 'Metoclopramide (Oral Pill)', '906780', 'Metoclopramide', 'c06f0098-193c-48e4-9629-8f4e69171bc6', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2721, 'Metolazone (Oral Pill)', '907013', 'Metolazone', 'c893c914-6195-45fa-a2bc-4e8b78004737', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2722, 'METOPIRONE (Oral Pill)', '19007490', 'Metyrapone', '3a27d0ef-83a7-4e1c-9430-46a3326ee8d8', '8/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2723, 'Metoprolol (Injectable)', '1307046', 'Metoprolol', 'ffd837ea-551d-4b98-96e1-80c29ac32b20', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2724, 'Metoprolol (Oral Pill)', '1307046', 'Metoprolol', '59019362-b71d-479b-ba90-7c4923a8a044', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2725, 'Metreleptin (Injectable)', '44814585', 'metreleptin', 'b6349e72-8bbb-40c6-ab31-89f7b1cce914', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2726, 'METROCREAM (Topical)', '1707164', 'Metronidazole', '43d5e570-f359-564d-9bb4-51784ad97b6f', '4/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2727, 'METROGEL (Topical)', '1707164', 'Metronidazole', 'ab3a8a2d-714a-4beb-af8a-99bc3ac3ebbe', '10/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2728, 'METROGEL (Vaginal)', '1707164', 'Metronidazole', 'bd3b62b6-4a80-495b-a1d3-d54eb15baf79', '4/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2729, 'METROLOTION (Topical)', '1707164', 'Metronidazole', 'c4e07c26-245d-3e51-6a47-fccde22334d2', '4/7/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2730, 'metroNIDAZOLE (Injectable)', '1707164', 'Metronidazole', 'a7276a00-bb2f-4876-b58b-f2e953d716e4', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2731, 'metroNIDAZOLE (Oral Pill)', '1707164', 'Metronidazole', '5911e8f2-1b3a-4222-b997-d2a1c9a9f535', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2732, 'metroNIDAZOLE (Topical)', '1707164', 'Metronidazole', '5f6014f9-4a54-47c6-a290-01472e6c0fe7', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2733, 'metroNIDAZOLE (Vaginal)', '1707164', 'Metronidazole', '526c226a-099b-4eb3-943d-c88b2763b2c1', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2734, 'Metyrapone (Oral Pill)', '19007490', 'Metyrapone', '3a27d0ef-83a7-4e1c-9430-46a3326ee8d8', '8/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2735, 'Metyrosine (Oral Pill)', '1401581', 'Metyrosine', '32fb2f2f-34b5-4cd5-9145-c3ab37c5ca92', '3/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2736, 'Mexiletine (Oral Pill)', '1307542', 'Mexiletine', '25b8c89e-450c-4a1d-9053-1eb97b868a98', '8/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2737, 'MI-ACID (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'cd711cb3-293b-42f1-a853-ab02d2054e4e', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2738, 'MI-ACID GAS RELIEF (Chewable)', '966991', 'Simethicone', 'f9f2b13c-6965-4971-8f93-fb1cdbaebc42', '8/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2739, 'MIACALCIN (Injectable)', '1537655', 'salmon calcitonin', 'f9d5a587-e2bc-4001-987d-9b04731303cb', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2740, 'MIACALCIN (Nasal)', '1537655', 'salmon calcitonin', 'e147226d-7bf3-4f72-959b-8abd6464fbcd', '3/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2741, 'Micafungin (Injectable)', '19018013', 'micafungin', 'bc234dd7-5221-4a68-b153-aa0393c75bbf', '12/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2742, 'MICARDIS (Oral Pill)', '1317640', 'telmisartan', '3bb7bc69-7752-4c16-9c60-e61eb5355a4d', '2/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2743, 'MICARDIS-HCT (Oral Pill)', '974166', 'Hydrochlorothiazide', '539cdfb4-b920-48fb-8176-fe23841e3d32', '2/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2744, 'MICATIN (Topical)', '907879', 'Miconazole', '96c56ba1-c3a8-48ce-ab58-550959485e3c', '1/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2745, 'Miconazole (Buccal)', '907879', 'Miconazole', 'ef3b205e-8526-48a0-afce-ddcef865d907', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2746, 'Miconazole (Topical)', '907879', 'Miconazole', '83c592b4-4b17-4fe1-91ec-778c949e6196', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2747, 'Miconazole (Vaginal)', '907879', 'Miconazole', '79b61ece-7590-4448-86fa-28ab3d3cc074', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2748, 'Miconazole/Petrolatum/Zinc Oxide (Topical)', '907879', 'Miconazole', '8d8aaac5-3203-4ade-ae74-e2ea469dae18', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2749, 'MICORT-HC (Topical)', '975125', 'Hydrocortisone', 'a08b5877-e83e-449f-865e-30fcfbde665f', '2/8/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2750, 'MICRO-GUARD (Topical)', '907879', 'Miconazole', 'a43a94d0-fec0-470f-bdb4-535dcce6d1e0', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2751, 'MICRO-K XR (Oral Pill)', '19049105', 'Potassium Chloride', 'cb128705-d8c7-4341-a976-d8fd7371df6d', '12/22/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2752, 'Midazolam (Injectable)', '708298', 'Midazolam', 'a91ce254-14a3-4cbf-8ab8-5da252aa3fdc', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2753, 'Midazolam (Oral Liquid)', '708298', 'Midazolam', 'a833c24b-6dca-44d7-a0d6-20012fa1ea77', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2754, 'Midodrine (Oral Pill)', '1308368', 'Midodrine', '964e3631-bcd2-49dd-8dbf-9e1de42cebc4', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2755, 'MIDOL CRAMPS & BODYACHES (Oral Pill)', '1177480', 'Ibuprofen', '59257aae-3057-4109-923c-8baf7ea3d07b', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2756, 'Mifepristone (Oral Pill)', '1508439', 'Mifepristone', '542f3fae-8bc8-4f00-9228-e4b66c9ad6a9', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2757, 'MIGERGOT (Rectal)', '1134439', 'Caffeine', '3a31ad0c-7bdd-544b-f5df-a99d04cf541c', '1/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2758, 'Miglitol (Oral Pill)', '1510202', 'miglitol', '192e6ed7-9e8c-4772-9e3b-5912a1c63a31', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2759, 'Miglustat (Oral Pill)', '19045272', 'Miglustat', '817892d1-ee12-4632-85fc-57ccdf16d7b8', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2760, 'MILLIPRED (Oral Liquid)', '1550557', 'prednisolone', '12d46d10-00b9-45d5-81f9-e9b31083ae89', '3/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2761, 'MILLIPRED (Oral Pill)', '1550557', 'prednisolone', '863ad743-eec0-46f0-beba-c1556384c636', '3/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2762, 'Milnacipran (Oral Pill)', '19080226', 'milnacipran', 'd4e56a10-3b29-4270-ab42-60dc74049cc5', '1/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2763, 'Milrinone (Injectable)', '1368671', 'Milrinone', '88f78780-399f-4780-be19-205739db1682', '10/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2764, 'Miltefosine (Oral Pill)', '44816310', 'miltefosine', 'd6658aeb-7bc1-4eef-ad0d-0a873ddbecf5', '9/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2765, 'MINERAL ICE (Topical)', '901656', 'Menthol', 'aa7e4592-76d4-43cd-9e4b-3a112672c305', '12/6/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2766, 'Mineral Oil (Oral Liquid)', '908523', 'Mineral Oil', 'd1228aa1-3c25-4290-abe2-dd2640125280', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2767, 'Mineral Oil (Rectal)', '908523', 'Mineral Oil', 'df5976d2-5e06-47f3-9173-66c290d10b3a', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2768, 'Mineral Oil (Topical)', '908523', 'Mineral Oil', '4ecd873b-b915-4132-ae78-b8826293a906', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2769, '"Mineral Oil, Light (Oral Liquid)"', '978577', '"Mineral Oil, Light"', 'fad02e6f-4735-4e6b-8afd-d61db6533c2a', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2770, 'Mineral Oil/Petrolatum (Ophthalmic)', '908523', 'Mineral Oil', '6a4a2053-f947-4ce3-a885-a1c1465c8b0b', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2771, 'Mineral Oil/Petrolatum/Phenylephrine (Rectal)', '908523', 'Mineral Oil', 'edf9f8d5-f55d-4c31-adfb-ba77ca24cc3d', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2772, 'Mineral Oil/Petrolatum/Phenylephrine/Shark liver oil (Rectal)', '908523', 'Mineral Oil', 'c249615a-65a3-49bb-a512-445d18ccf125', '7/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2773, 'Mineral Oil/Pramoxine/Zinc Oxide (Rectal)', '908523', 'Mineral Oil', '347ff421-3ad9-409f-8731-af0183682e12', '8/8/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2774, 'MINIDROPS (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '4c3cfc48-cb7d-4b11-9b3c-11610e82d551', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2775, 'MINIPRESS (Oral Pill)', '1350489', 'Prazosin', '36c4da56-502e-4da1-acf7-8e81ee453dcc', '4/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2776, 'MINIPRIN (Oral Pill)', '1112807', 'Aspirin', '5a38a643-55b0-4a6c-84e1-ee2374435114', '5/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2777, 'MINIZIDE (Oral Pill)', '948787', 'Polythiazide', '17367e1c-a4ad-451b-92c4-95565312e51a', '1/25/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2778, 'MINOCIN (Oral Pill)', '1708880', 'Minocycline', 'b1a6939e-8d77-449d-b55f-0fd9a500352a', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2779, 'Minocycline (Injectable)', '1708880', 'Minocycline', '84acbae4-d385-49d0-9e7b-5ae0e8de3053', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2780, 'Minocycline (Oral Pill)', '1708880', 'Minocycline', '174d642b-70b1-45b0-ad33-a4847feb1a8f', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2781, 'Minocycline (Oral Powder)', '1708880', 'Minocycline', '8515df41-1936-4f3b-86ba-d2bb2a8441fb', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2782, 'Minoxidil (Oral Pill)', '1309068', 'Minoxidil', '02d7399f-94cc-f718-f214-587301edd138', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2783, 'Minoxidil (Topical)', '1309068', 'Minoxidil', '5768ad6b-9ca9-4fa9-9fc9-a703c4bd7718', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2784, 'MINTOX PLUS (Chewable)', '985247', 'Aluminum Hydroxide', 'a9d41e6e-2a8c-43aa-8b88-221a8d172d13', '8/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2785, 'MINTOX PLUS (Oral Liquid)', '985247', 'Aluminum Hydroxide', '536b143d-a1d7-4972-a90b-248e41937070', '8/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2786, 'MIOCHOL (Injectable)', '19037624', 'Acetylcholine', 'e701ef07-9499-4b56-931f-f4eb3eedbe24', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2787, 'MIOSTAT (Injectable)', '940183', 'Carbachol', 'f28d7a56-e079-4a8b-ad81-9a97c780de67', '7/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2788, 'MIRALAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '1771d3bf-954d-49ea-b260-3d356e5dcfa5', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2789, 'MIRAPEX (Oral Pill)', '720810', 'Pramipexole', '3736d691-e8b9-4fdd-aeca-9e96cf907c51', '4/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2790, 'Mirtazapine (Oral Disintegrating)', '725131', 'Mirtazapine', '73b7bbd9-7dba-4559-890f-3f8dd821e215', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2791, 'Mirtazapine (Oral Pill)', '725131', 'Mirtazapine', 'ee6c42d0-f92c-4361-8b98-5375b1fbd44c', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2792, 'Misoprostol (Oral Pill)', '1150871', 'Misoprostol', '83554310-3991-4a9d-92f1-d71ccfd0fb3a', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2793, 'MITIGARE (Oral Pill)', '1101554', 'Colchicine', 'cb5f9d85-6b81-49f8-bcd6-17b7bfbc10f2', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2794, 'mitoMYcin (Injectable)', '1389036', 'Mitomycin', 'd80c6dc0-5f26-4d7a-a0f7-7698ab4f249a', '5/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2795, 'mitoMYcin (Ophthalmic)', '1389036', 'Mitomycin', '244002c6-c61d-43fe-9326-072797113979', '7/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2796, 'MITOSOL (Ophthalmic)', '1389036', 'Mitomycin', '244002c6-c61d-43fe-9326-072797113979', '7/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2797, 'Mitotane (Oral Pill)', '1309161', 'Mitotane', 'e9fba7d4-a0ec-4bfa-9b5b-ec97a9710fd3', '1/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2798, 'mitoXANtrone (Injectable)', '1309188', 'Mitoxantrone', 'c101cb05-faaa-44cb-9666-c8214628c844', '6/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2799, 'Mivacurium (Injectable)', '19010459', 'mivacurium', '98ca2c17-43e2-49af-abbc-f870877e5786', '6/25/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2800, 'MOBIC (Oral Liquid)', '1150345', 'meloxicam', '676e73fb-51d2-449a-8749-1a7bcc257b11', '3/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2801, 'MOBIC (Oral Pill)', '1150345', 'meloxicam', 'dbbc6373-e9ae-4215-8d08-5f6667a936d1', '10/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2802, 'MOBISYL (Topical)', '943116', 'trolamine salicylate', '4d3e0e75-cd77-4174-9316-163f5fe05349', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2803, 'Modafinil (Oral Pill)', '710650', 'modafinil', '9f3b0bd2-72a3-411f-aeec-b533373f1a97', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2804, 'Moexipril (Oral Pill)', '1310756', 'moexipril', 'e16c2ad3-1ce5-48fc-96b2-5d63dc6b68d5', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2805, 'Molindone (Oral Pill)', '709699', 'Molindone', '138e8ca3-9a12-4c48-95c0-85bd01c79b13', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2806, 'Molybdenum (Injectable)', '19009896', 'Molybdenum', '43558add-4c7e-4fe6-ad36-cdceaff99bfb', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2807, 'Mometasone (Implant)', '905233', 'Mometasone', '6befbf16-3f60-4ce8-94ec-5ce6a2b7f4e1', '1/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2808, 'Mometasone (Topical)', '905233', 'Mometasone', 'c337bce8-27e9-48fd-85fa-381d0242a36a', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2809, 'MONISTAT (Topical)', '907879', 'Miconazole', 'cb161d23-bc41-4cec-9e42-dfeef861d161', '5/31/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2810, 'MONISTAT (Vaginal)', '907879', 'Miconazole', 'a0cb19fd-fd7e-4b19-9b35-092878dd52a7', '6/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2811, 'MONISTAT SOOTHING CARE (Topical)', '916662', 'dimethicone', '07d7c883-1fa3-4786-905c-a1fab649765e', '4/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2812, 'MONOCLATE-P (Injectable)', '1352213', 'Factor VIII', 'd9c17023-cbff-4d95-8f44-ef842d59d938', '10/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2813, 'Monofluorophosphate (Toothpaste)', '19068715', 'monofluorophosphate', '5c92500d-d151-44c9-9cea-81e89adae9dd', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2814, 'MONOKET (Oral Pill)', '1383815', 'Isosorbide', 'd8f4202c-5103-40dc-9309-dcf72da02d0d', '10/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2815, 'Montelukast (Chewable)', '1154161', 'montelukast', '09692f56-468c-4884-ae95-d2fb9d984e4c', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2816, 'Montelukast (Oral Granules)', '1154161', 'montelukast', '67070e4e-f755-46b3-b900-fcc1993a0546', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2817, 'Montelukast (Oral Pill)', '1154161', 'montelukast', '2f90a573-27fd-cc16-f3d1-8c4d630224a0', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2818, 'MORGIDOX (Oral Pill)', '1738521', 'Doxycycline', 'd95bdf63-69a2-47b9-b909-97c74b6d7731', '5/19/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2819, 'morphine (Injectable)', '1110410', 'Morphine', 'ebb18761-e5c4-4238-bb84-f9549f500210', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2820, 'morphine (Oral Liquid)', '1110410', 'Morphine', '9740d1b2-d140-4959-a94b-843d4bf139c2', '2/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2821, 'morphine (Oral Pill)', '1110410', 'Morphine', '67b3273e-af71-4dac-8e49-8bc134d4c591', '7/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2822, 'morphine (Rectal)', '1110410', 'Morphine', '649d731b-962a-45df-b043-7e0781e8a530', '10/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2823, 'Morphine Liposomal (Injectable)', '19112635', 'Morphine Liposomal', 'cc8f105c-c8ee-4c57-86ee-ee6bf917cf78', '1/31/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2824, 'morphine XR (Oral Pill)', '1110410', 'Morphine', '6c826b0a-ac87-48cc-a780-9a4a2118e8a8', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2825, 'morphine/Naltrexone XR (Oral Pill)', '1110410', 'Morphine', 'dfe97a3d-247d-4dda-a641-1a95196cd8d8', '3/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2826, 'MOTRIN (Oral Liquid)', '1177480', 'Ibuprofen', 'f2609308-17bf-4bcb-84b2-d17f3fd35958', '7/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2827, 'MOTRIN (Oral Pill)', '1177480', 'Ibuprofen', '5715910e-33be-49bd-8a1f-eeb46320e28d', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2828, 'MOTRIN PM (Oral Pill)', '1129625', 'Diphenhydramine', '55403f19-58ae-450b-8a7b-0bc544088f20', '12/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2829, 'Mountain cedar pollen extract (Injectable)', '40161989', 'mountain cedar pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2830, 'MOVANTIK (Oral Pill)', '45774613', 'naloxegol', 'f49c6978-ca7b-4a66-919b-757f8f92ef64', '4/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2831, 'MOXATAG XR (Oral Pill)', '1713332', 'Amoxicillin', '35e9aa4c-fd8d-4444-9d1a-62723ba29491', '6/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2832, 'Moxifloxacin (Injectable)', '1716903', 'moxifloxacin', 'a4e28b09-714b-46e7-b4e6-0163cad78fc5', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2833, 'Moxifloxacin (Ophthalmic)', '1716903', 'moxifloxacin', '750fd60e-c0c4-4f32-8301-6baa3516aef2', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2834, 'Moxifloxacin (Oral Pill)', '1716903', 'moxifloxacin', 'fe9226f8-64f4-4eff-8339-ed3fce0896f2', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2835, 'MOZOBIL (Injectable)', '19017581', 'Plerixafor', '0ed08d2b-5051-46b2-aa37-1d6275bf9003', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2836, 'MS CONTIN XR (Oral Pill)', '1110410', 'Morphine', '989a17e2-b7fd-478c-a584-327d368247ce', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2837, 'MUCINEX (Oral Granules)', '1163944', 'Guaifenesin', 'fd8a69aa-eb75-4e7a-8b6e-3361f810c578', '6/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2838, 'MUCINEX (Oral Liquid)', '1163944', 'Guaifenesin', '99af22e4-35a2-4a98-ab38-22a649d5c356', '11/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2839, 'MUCINEX CHILDREN''S COUGH (Oral Granules)', '1119510', 'Dextromethorphan', 'a6617fb9-aee1-4f4b-8888-792338861564', '11/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2840, 'MUCINEX COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', 'ce565113-e9e3-46de-84f7-3a432acb0e4b', '11/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2841, 'MUCINEX NASAL SPRAY (Nasal)', '925636', 'Oxymetazoline', '2627d0a0-7382-4e90-ba00-911d3be11195', '1/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2842, 'MUCINEX STUFFY NOSE & COLD (Oral Liquid)', '1163944', 'Guaifenesin', '8d0f2a01-f58b-43c0-b3f6-a88f9eb39c52', '10/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2843, 'Mucor extract (Injectable)', '40161334', 'Mucor extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2844, 'Mulberry pollen extract (Injectable)', '40172305', 'mulberry pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2845, 'MULTAQ (Oral Pill)', '40163615', 'dronedarone', '236d4549-f44b-4677-b857-acedd10b9920', '12/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2846, 'MULTITRACE-4 (Injectable)', '19049877', 'chromic chloride', '9f5b05b4-194d-4630-9218-3db8543b125b', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2847, 'Mupirocin (Nasal)', '951511', 'Mupirocin', 'b5777cde-7cd5-4fc8-a5a1-0ef4ddf6b5b1', '3/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2848, 'Mupirocin (Topical)', '951511', 'Mupirocin', 'e2ddaea4-d914-4bc7-8913-351e7bf2e2f7', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2849, 'MURO 128 (Ophthalmic)', '967823', 'Sodium Chloride', '93fafa27-5031-4d95-b4b8-5574b7204ae2', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2850, 'Muromonab-CD3 (Injectable)', '19051865', 'Muromonab-CD3', '2a1f1c18-fa95-45e6-bd00-ac53c73f4747', '6/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2851, 'MY WAY (Oral Pill)', '1589505', 'Levonorgestrel', 'c749c15a-2c92-4db9-a6b9-fdf18da5b7da', '5/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2852, 'MYALEPT (Injectable)', '44814585', 'metreleptin', 'b6349e72-8bbb-40c6-ab31-89f7b1cce914', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2853, 'MYAMBUTOL (Oral Pill)', '1749301', 'Ethambutol', '92e486cf-3a07-4178-b4df-52226e0401e1', '12/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2854, 'MYCAMINE (Injectable)', '19018013', 'micafungin', 'bc234dd7-5221-4a68-b153-aa0393c75bbf', '12/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2855, 'MYCELEX TROCHES (Oral Lozenge)', '1000632', 'Clotrimazole', '7464e883-6286-4f04-ae38-b7ddc3fec754', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2856, 'Mycophenolate mofetil (Oral Pill)', '19003999', 'mycophenolate mofetil', '085fa99c-8795-4abf-83cd-b0864f033d19', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2857, 'Mycophenolic Acid (Oral Pill)', '19012565', 'Mycophenolic Acid', '26b31126-4262-4a15-8a16-234c86763176', '3/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2858, 'MYDRIACYL (Ophthalmic)', '906072', 'Tropicamide', '0d4f4a2e-eb00-4c65-b3fa-baf5738d468d', '8/24/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2859, 'MYKROX (Oral Pill)', '907013', 'Metolazone', 'dffb4544-0e47-40cd-9baa-d622075838cc', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2860, 'MYLERAN (Oral Pill)', '1333357', 'Busulfan', 'bf456fc7-3a79-47f7-8acc-600b5e2f0dc2', '6/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2861, 'MYOCHRYSINE (Injectable)', '1152134', 'Aurothiomalate', 'a29045b5-ba4f-407a-a0fd-3ef7e1ce64ee', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2862, 'MYOFLEX (Topical)', '943116', 'trolamine salicylate', '94baa7ac-b84b-4ca7-ac4a-c915ad8bf2e3', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2863, 'MYTAB GAS (Chewable)', '966991', 'Simethicone', '7feddfe6-15a2-4049-8635-860e9b0d2f80', '12/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2864, 'N''ICE (Oral Lozenge)', '901656', 'Menthol', 'f8abfa42-896b-46c8-9d78-b9730f54d120', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2865, 'Nabilone (Oral Pill)', '913440', 'nabilone', 'a7a2a4e1-9ecd-4e59-82b5-2068b5e50164', '5/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2866, 'Nabumetone (Oral Pill)', '1113648', 'nabumetone', 'b2ab77f7-4637-4977-8b4b-02ea01fee183', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2867, 'Nadolol (Oral Pill)', '1313200', 'Nadolol', 'd208918b-a356-4924-91d9-9593981fe0a6', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2868, 'Nafcillin (Injectable)', '1713930', 'Nafcillin', '90717878-64cb-4ffc-90bc-7b4e81e3d1cd', '6/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2869, 'Naftifine (Topical)', '914053', 'naftifine', 'ee46c902-8a59-40f7-ac99-e96a8b981d60', '6/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2870, 'NAFTIN (Topical)', '914053', 'naftifine', 'e516fb5a-5c9b-4a74-9beb-423f2b345dde', '5/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2871, 'NALFON (Oral Pill)', '1153928', 'Fenoprofen', 'dfc2ab1e-0d75-4eff-9489-2afb51b02702', '9/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2872, 'Naloxegol (Oral Pill)', '45774613', 'naloxegol', 'f49c6978-ca7b-4a66-919b-757f8f92ef64', '4/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2873, 'Naloxone (Injectable)', '1114220', 'Naloxone', '3ce7dbb4-3d14-43f0-80d6-0deb79a7aea6', '7/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2874, 'Naloxone/Pentazocine (Oral Pill)', '1114220', 'Naloxone', '05a17f16-c982-4a54-80cd-079959ab49a7', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2875, 'Naltrexone (Oral Pill)', '1714319', 'Naltrexone', '81e25c6a-81b6-4cfb-91bf-be20c3ae546b', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2876, 'NAMENDA (Oral Liquid)', '701322', 'Memantine', 'b9f27baf-aa2a-443a-9ef5-e002d23407ba', '11/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2877, 'NAMENDA (Oral Pill)', '701322', 'Memantine', '1e3c74c9-0017-4d7a-a716-2b5366286a67', '2/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2878, 'Nandrolone (Injectable)', '1514412', 'Nandrolone', 'a586b484-1b46-40b9-9508-fd28002ad383', '2/16/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2879, 'Naphazoline (Nasal)', '914533', 'Naphazoline', 'ec2bb7d7-d014-46ed-a836-453e921da4c5', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2880, 'Naphazoline (Ophthalmic)', '914533', 'Naphazoline', '0f25812f-96ab-44f4-bacf-2eb012cbddc7', '3/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2881, 'Naphazoline/Pheniramine (Ophthalmic)', '914533', 'Naphazoline', '78c5250c-b27c-4b1d-a4b8-571973ac3ae4', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2882, 'NAPHCON (Ophthalmic)', '914533', 'Naphazoline', '9951c888-4b6a-4c76-a9c1-dc3a0c777191', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2883, 'NAPHCON A (Ophthalmic)', '914533', 'Naphazoline', 'b83701b9-9331-484f-8e84-6e241e621ff3', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2884, 'NAPROSYN (Oral Pill)', '1115008', 'Naproxen', '523b3f51-1d52-46ea-85a9-9d01cd29b4f8', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2885, 'Naproxen (Oral Pill)', '1115008', 'Naproxen', 'a92bf444-0ae7-4365-831e-9fd37d59d5fa', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2886, 'Naratriptan (Oral Pill)', '1118117', 'naratriptan', '41c29652-32f8-48dc-9038-0e2195aa2084', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2887, 'NAROPIN (Injectable)', '1136487', 'ropivacaine', '56dfabf7-f7a8-4601-b17a-cb16fb995b0f', '6/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2888, 'NASCOBAL (Nasal)', '1308738', 'Vitamin B 12', 'ee2b4869-cd13-489b-b12f-1ce4fe081157', '5/24/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2889, 'NASOPEN PE (Oral Liquid)', '1135766', 'Phenylephrine', '5e133352-255f-41cc-aacc-0508d634368d', '4/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2890, 'NATACYN (Ophthalmic)', '915392', 'Natamycin', 'd262661c-860d-482e-aa8d-3cf1f252b32a', '7/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2891, 'Natamycin (Ophthalmic)', '915392', 'Natamycin', 'd262661c-860d-482e-aa8d-3cf1f252b32a', '7/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2892, 'Nateglinide (Oral Pill)', '1502826', 'nateglinide', 'f7b28951-76d2-cabd-64a1-b74aa225c6e9', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2893, 'NATRECOR (Injectable)', '1338985', 'Nesiritide', '44c45bfe-461f-4398-8f20-ea771b2403ee', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2894, 'NATROBA (Shampoo)', '40172543', 'spinosad', 'fa90ccc8-2df0-49f7-8878-2b33e34cd272', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2895, 'NATURE''S TEARS (Ophthalmic)', '902251', 'hypromellose', '3bb70d72-f763-4486-8f6a-d37ece21292b', '11/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2896, 'NAUZENE (Chewable)', '956691', 'Fructose', 'a60660b2-c5db-45a0-885f-de93e655380d', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2897, 'NAUZENE (Oral Liquid)', '956691', 'Fructose', '728376f5-6cab-404e-b519-f6c595291d6f', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2898, 'Nebivolol (Oral Pill)', '1314577', 'nebivolol', '673f5ad2-c09b-4a89-9407-efdadd007917', '5/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2899, 'NEBUPENT (Inhalant)', '1730370', 'Pentamidine', 'e2ad9d3c-b6c3-4f70-87e0-722a8ff94ccb', '2/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2900, 'Nedocromil (Ophthalmic)', '1114620', 'Nedocromil', '2fe8d7ad-2158-4169-94b0-719ad20242b7', '1/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2901, 'Nefazodone (Oral Pill)', '714684', 'nefazodone', '4afee435-ae60-4260-a1df-e52abf7a043d', '6/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2902, 'Nelfinavir (Oral Pill)', '1715472', 'Nelfinavir', '84948e6a-971f-4e86-928e-7d32a1883a23', '3/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2903, 'NEMBUTAL SODIUM (Injectable)', '730729', 'Pentobarbital', '5c380ab0-4386-48b6-80ab-ca594b23bc74', '8/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2904, 'NEO-POLYCIN (Ophthalmic)', '915175', 'Bacitracin', 'cf18b051-b656-4f46-8b69-a1df6f5d8d29', '1/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2905, 'NEO-SYNALAR (Topical)', '996541', 'fluocinolone', 'e96ae9cf-e829-466f-b66d-ede83b4d8b3d', '7/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2906, 'NEO-SYNEPHRINE (Nasal)', '1135766', 'Phenylephrine', '03d3ecdf-782a-44d2-bd59-1b010552c4fb', '6/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2907, 'NEOBENZ MICRO WASH (Soap)', '918172', 'Benzoyl Peroxide', '375bf717-5d70-457e-8b74-1f66f4f08b79', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2908, 'NEOCIDIN OINTMENT (Ophthalmic)', '915175', 'Bacitracin', '0ea2cee7-197e-405b-a7d4-f470a69a5178', '11/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2909, 'NEOCIDIN SOLUTION (Ophthalmic)', '963742', 'Gramicidin', 'b7aa0bae-255b-4792-a963-6606370a175f', '11/30/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2910, 'Neomycin (Oral Liquid)', '915981', 'Neomycin', 'aea1d3e4-604a-4680-91e2-cce6a128a1b5', '4/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2911, 'Neomycin (Oral Pill)', '915981', 'Neomycin', '777dbfab-f83e-4738-ae1e-78619a9f82a7', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2912, 'Neomycin/Polymyxin B (Irrigation)', '915981', 'Neomycin', '1a9f81d8-277d-4f2c-39b0-412e01954f8a', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2913, 'Neomycin/Polymyxin B (Ophthalmic)', '915981', 'Neomycin', '7218af16-9378-472a-a033-4c9f9d5524db', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2914, 'Neomycin/Polymyxin B/Pramoxine (Topical)', '915981', 'Neomycin', 'a325abf1-f239-4824-ba6c-cf1029ae1326', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2915, 'NEOSPORIN ECZEMA (Topical)', '975125', 'Hydrocortisone', 'dc9e9509-c2d4-4480-bbaa-009fc5ccf9fc', '11/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2916, 'NEOSPORIN G. U. IRRIGANT (Irrigation)', '915981', 'Neomycin', '1a9f81d8-277d-4f2c-39b0-412e01954f8a', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2917, 'NEOSPORIN MOISTURIZING (Topical)', '986261', 'Colloidal oatmeal', '5173b0c9-25b3-44e0-83a2-83079b5b0c03', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2918, 'NEOSPORIN NEO TO GO (Topical)', '916460', 'Benzalkonium', 'a092b2ff-18fb-481a-a17d-984a91cbaec7', '7/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2919, 'NEOSPORIN OINTMENT (Topical)', '915175', 'Bacitracin', '76d1c487-8974-4fe1-a874-d7313c960456', '9/9/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2920, 'NEOSPORIN PLUS MAXIMUM STRENGTH (Topical)', '915175', 'Bacitracin', 'fd3a35c9-428a-4136-9833-531413e9ec35', '12/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2921, 'NEOSPORIN PLUS MAXIMUM STRENGTH CREAM (Topical)', '915981', 'Neomycin', '8398f0d1-cb06-4b69-ba16-b8073faed8e4', '7/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2922, 'NEOSPORIN SOLUTION (Ophthalmic)', '963742', 'Gramicidin', '33e9b6d3-2b2b-4036-dd89-47177e23fcfe', '7/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2923, 'Neostigmine (Injectable)', '717136', 'Neostigmine', '9dde8277-e2e8-4733-b18d-60124cde070e', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2924, 'NEOVA COMPLEX HQ PLUS (Topical)', '976778', 'hydroquinone', 'dd3ce6f2-ed6e-448b-9924-bb1632a83c69', '1/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2925, 'Nepafenac (Ophthalmic)', '909795', 'nepafenac', '4c9ae54a-97a0-4613-a092-31e86d9bfc91', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2926, 'NEPTAZANE (Oral Pill)', '904250', 'Methazolamide', '7731560b-dbe7-4912-814e-ef60629e5f07', '1/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2927, 'NESACAINE (Injectable)', '19049410', 'chloroprocaine', 'a844e68a-1462-40e4-be5e-f56214906eb9', '9/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2928, 'NESINA (Oral Pill)', '43013884', 'alogliptin', 'a3768c7e-aa4c-44d3-bc53-43bb7346c0b0', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2929, 'Nesiritide (Injectable)', '1338985', 'Nesiritide', '44c45bfe-461f-4398-8f20-ea771b2403ee', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2930, 'NEUAC (Topical)', '918172', 'Benzoyl Peroxide', '22109c02-910d-4bec-bd79-50e391634c38', '6/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2931, 'NEURONTIN (Oral Pill)', '797399', 'gabapentin', 'ea6016be-2f5d-4bd0-a228-fa8f455abeae', '2/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2932, 'NEUTRAMAXX (Toothpaste)', '19069022', 'Sodium Fluoride', 'fcbe6baa-2827-49df-9316-42cc86595203', '4/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2933, 'NEUTRAPHOR (Topical)', '916662', 'dimethicone', '0f3a5ca3-c4bd-4496-bb62-816d1ed9f01f', '1/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2934, 'NEUTRAPHORUS REX SKIN PROTECTANT (Topical)', '916662', 'dimethicone', 'b43c4b7a-c176-4c36-a8cf-32cb6e99cc04', '12/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2935, 'NEUTREXIN (Injectable)', '1750928', 'Trimetrexate', 'ad0f8925-f817-4460-aa6b-172a043a440b', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2936, 'NEUTROGENA ACNE WASH OIL FREE (Soap)', '964407', 'Salicylic Acid', 'cbdd144e-09fa-45e5-beb9-166e0654c013', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2937, 'NEUTROGENA RAPID CLEAR GEL (Topical)', '964407', 'Salicylic Acid', '38005d41-8ed7-4de5-afcb-cce1496c3811', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2938, 'NEUTROGENA T/GEL EXTRA STRENGTH (Shampoo)', '1000995', 'Coal Tar', '615d83a0-52a4-4365-aef3-320480c0b5cd', '4/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2939, 'NEUTROGENA T/SAL (Shampoo)', '964407', 'Salicylic Acid', 'c67a7d3f-1aff-4753-a64a-d06618e2ddda', '10/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2940, 'NEVANAC (Ophthalmic)', '909795', 'nepafenac', '3ad48650-75e3-4c74-9302-01b0088f164e', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2941, 'Nevirapine (Oral Liquid)', '1769389', 'Nevirapine', '8dfe86aa-ea5d-48d2-94a8-1a5506055d70', '5/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2942, 'Nevirapine (Oral Pill)', '1769389', 'Nevirapine', '4f065674-4719-4c79-ba0d-549040d77f17', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2943, 'NexIUM (Injectable)', '904453', 'Esomeprazole', 'dce12085-d6c4-48a5-959b-e771c413c9c5', '4/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2944, 'NexIUM (Oral Pill)', '904453', 'Esomeprazole', 'b533b80b-2e68-4c5c-aaba-159d96a1b2f0', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2945, 'NEXT CHOICE ONE DOSE (Oral Pill)', '1589505', 'Levonorgestrel', 'eb8c1837-d5e5-4ba2-a4b5-8c4f4be029cd', '5/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2946, 'Niacin (Oral Pill)', '1517824', 'Niacin', 'ce739d68-d89c-437c-90fb-3c0c45140f22', '3/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2947, 'Niacin XR (Oral Pill)', '1517824', 'Niacin', '1bafcb0b-3564-4f3b-8ffb-d916d112fae9', '7/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2948, 'NIACOR (Oral Pill)', '1517824', 'Niacin', 'ce739d68-d89c-437c-90fb-3c0c45140f22', '3/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2949, 'niCARdipine (Injectable)', '1318137', 'Nicardipine', '0a7c6372-a22b-4501-a6c6-539457a6cd9d', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2950, 'niCARdipine (Oral Pill)', '1318137', 'Nicardipine', '4a423bba-3bc1-4323-abbb-ef6c5c315784', '6/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2951, 'NICAZEL (Oral Pill)', '986790', 'Azelate', 'fc729ca5-3846-48fd-8d8c-d2b6a7563741', '10/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2952, 'NICOMIDE (Oral Pill)', '19073229', 'Cupric oxide', '91d306d7-ef63-4f35-84a4-36e8469eac98', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2953, 'NICORELIEF (Chewable)', '718583', 'Nicotine', '50bdf838-436d-44eb-9fbd-7966ec436f36', '1/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2954, 'NICORELIEF (Oral Lozenge)', '718583', 'Nicotine', '2025c71d-d752-4bea-bc4c-7beff1b63ff9', '8/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2955, 'NICORETTE (Oral Lozenge)', '718583', 'Nicotine', 'fdee1637-8049-4bc5-b196-b6d854c9f9f3', '11/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2956, 'Nicotine (Chewable)', '718583', 'Nicotine', '020f4342-c821-4749-83eb-fbf330886acf', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2957, 'Nicotine (Inhalant)', '718583', 'Nicotine', '2d75cdad-0a7b-4297-80aa-7942ecaea30e', '8/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2958, 'Nicotine (Oral Lozenge)', '718583', 'Nicotine', '17cf8f3d-6491-4cd8-a447-3c7533f76daf', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2959, 'NICOTROL (Inhalant)', '718583', 'Nicotine', 'a887a129-fcb4-417e-80a5-38eca69dc74d', '8/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2960, 'NIFEdipine (Oral Pill)', '1318853', 'Nifedipine', '776ccac6-471d-4c41-8c52-a8e90bd832c5', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2961, 'NILANDRON (Oral Pill)', '1315286', 'nilutamide', 'a682f5ef-c79f-419e-94b6-b1a84b7b6651', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2962, 'Nilutamide (Oral Pill)', '1315286', 'nilutamide', 'a682f5ef-c79f-419e-94b6-b1a84b7b6651', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2963, 'niMODipine (Oral Liquid)', '1319133', 'Nimodipine', '9e48dba7-c706-44fc-b04b-0fdcb2d72bc4', '5/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2964, 'niMODipine (Oral Pill)', '1319133', 'Nimodipine', '26730ffb-7c80-4c54-bded-8e519bffe12f', '8/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2965, 'NINJACOF (Oral Liquid)', '1150886', 'chlophedianol', 'e2bca40f-9c27-ec8b-2ff0-ef9847ba2037', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2966, 'Nintedanib (Oral Pill)', '45775396', 'nintedanib', 'da1c9f37-779e-4682-816f-93d0faa4cfc9', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2967, 'NIPENT (Injectable)', '19031224', 'Pentostatin', '151c6d2e-1af1-4c13-96ec-de3228c6efb3', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2968, 'NIRAVAM (Oral Disintegrating)', '781039', 'Alprazolam', 'd956367b-fd7d-46fc-9533-38a6e02b0b59', '3/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2969, 'Nitazoxanide (Oral Liquid)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', '11/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2970, 'Nitazoxanide (Oral Pill)', '1715315', 'nitazoxanide', '56b1575a-dff4-4c5a-a159-2f858e7a0cb8', '11/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2971, 'Nitisinone (Oral Pill)', '1586640', 'nitisinone', '5d449b73-d503-4132-b978-d890491975df', '6/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2972, 'NITRO-BID (Topical)', '1361711', 'Nitroglycerin', '30934ddc-0823-4097-8699-d10988011d7c', '8/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2973, 'Nitrofurantoin (Oral Liquid)', '920293', 'Nitrofurantoin', '11dcea9c-0c62-4153-976b-bd1f8ef1f6d9', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2974, 'Nitrofurantoin (Oral Pill)', '920293', 'Nitrofurantoin', '09d16de0-e11e-4ca1-8073-cc0bb0677aa9', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2975, 'Nitrofurazone (Topical)', '920378', 'Nitrofurazone', '2f25d07e-31ca-43a2-a8b6-622c1f122d25', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2976, 'Nitrogen (Inhalant)', '19020477', 'Nitrogen', '273511c2-2b84-4373-a0e5-3961eb19af8c', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2977, 'Nitrogen/Oxygen (Inhalant)', '19020477', 'Nitrogen', '4340fd9c-a7e7-4eb1-bd99-0927faeafe07', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2978, 'Nitroglycerin (Injectable)', '1361711', 'Nitroglycerin', '368a60fa-6cf0-4036-970e-e3a482f244ba', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2979, 'Nitroglycerin (Mucosal)', '1361711', 'Nitroglycerin', 'de06a4da-ea70-441e-bba2-e40eb51a8c3a', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2980, 'Nitroglycerin (Rectal)', '1361711', 'Nitroglycerin', '603aa9ed-54c4-4a35-ade4-690fa44850e4', '10/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2981, 'Nitroglycerin (Sublingual)', '1361711', 'Nitroglycerin', '79ba021e-183c-4b4d-822e-4ff5ef54ca61', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2982, 'Nitroglycerin (Topical)', '1361711', 'Nitroglycerin', 'e464e9bb-48e8-4b9f-9fff-e220cfbac0c5', '8/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2983, 'Nitroglycerin XR (Oral Pill)', '1361711', 'Nitroglycerin', '04fa3e36-e782-4b33-bc1d-a3ca0990f490', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2984, 'NITROLINGUAL (Mucosal)', '1361711', 'Nitroglycerin', '11cb2671-d3d5-425f-8509-f973b6cac876', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2985, 'NITROMIST (Mucosal)', '1361711', 'Nitroglycerin', 'f9eb07a2-5ebc-40ea-9890-1a0b03e859ff', '5/17/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2986, 'NITRONAL (Injectable)', '1361711', 'Nitroglycerin', 'b82a7e93-d697-419a-8b02-dc05c5ab302e', '4/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2987, 'NITROPRESS (Injectable)', '19020994', 'Nitroprusside', 'bf27f0a9-e64b-492a-b08f-2448bf097988', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2988, 'Nitroprusside (Injectable)', '19020994', 'Nitroprusside', '6a44bcac-a0e1-4069-5691-db7b83dbb4b7', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2989, 'NITROSTAT (Sublingual)', '1361711', 'Nitroglycerin', 'dcb552c1-310a-48af-81ad-a74530531dee', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2990, 'Nitrous Oxide (Inhalant)', '19021129', 'Nitrous Oxide', '571a0c51-076f-48a2-835c-b3ee9c7c98ed', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2991, 'NIX CREAM RINSE (Topical)', '922868', 'Permethrin', '9b44bf94-62c9-49d8-97ec-cf475824eb35', '11/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2992, 'Nizatidine (Oral Pill)', '950696', 'Nizatidine', '9a148542-e478-422a-b8fb-88047c30534b', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2993, 'NIZORAL (Oral Pill)', '985708', 'Ketoconazole', '090660c1-6e6d-457f-adb5-046ddfcd1465', '3/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2994, 'NIZORAL (Shampoo)', '985708', 'Ketoconazole', 'efbc6388-90ce-11de-b92c-8b7156d89593', '11/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2995, 'NO DOZ (Oral Pill)', '1134439', 'Caffeine', '7ef8b03c-245a-424f-bf75-438559c4418b', '12/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2996, 'NODOLOR (Oral Pill)', '1125315', 'Acetaminophen', '08442901-bb74-4516-9574-86b3dfeeabb1', '5/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2997, 'NOLVADEX (Oral Pill)', '1436678', 'Tamoxifen', '063fa789-4570-4715-c3bd-1bad0449fb26', '3/23/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2998, 'Nonoxynol-9 (Vaginal)', '969444', 'Nonoxynol-9', 'eaf86a36-0573-4c39-9324-88919c4d009b', '12/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(2999, 'NORCO (Oral Pill)', '1125315', 'Acetaminophen', '2f1c9e91-e5e7-4b07-8f56-e3719573ef23', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3000, 'Norepinephrine (Injectable)', '1321341', 'Norepinephrine', 'd2b5320e-e6a6-4a43-8f3c-9c21195ceb4a', '7/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3001, 'Norethindrone (Oral Pill)', '1521369', 'Norethindrone', 'ac4ab968-c536-45d8-bb85-dc692afd7cee', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3002, 'NORFLEX (Injectable)', '724394', 'Orphenadrine', '8768cd6b-e79d-4b6d-8981-2f01ce28047b', '5/24/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3003, 'NORGESIC (Oral Pill)', '1112807', 'Aspirin', 'a7fa86b5-2154-4b17-9265-8a5411c88d5d', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3004, 'NORITATE (Topical)', '1707164', 'Metronidazole', '1787c491-d92c-4239-9d9f-6a91b629835d', '5/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3005, 'NORLYROC (Oral Pill)', '1521369', 'Norethindrone', '97fcc28a-7e00-4ce4-9976-bcb90e3dba64', '4/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3006, 'NORPACE (Oral Pill)', '1335606', 'Disopyramide', 'f5e0c230-db38-4476-8357-9a227ccff1bc', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3007, 'NORTHERA (Oral Pill)', '44814542', 'Droxidopa', '2179f02c-48d7-48eb-8007-5ae43d8d16bc', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3008, 'Nortriptyline (Oral Liquid)', '721724', 'Nortriptyline', 'ced93eb0-e8b6-44b8-9d2c-e2afa92500f7', '3/20/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3009, 'Nortriptyline (Oral Pill)', '721724', 'Nortriptyline', 'a203a396-f64b-4e2d-a57e-47ea7e83c3bf', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3010, 'NORVASC (Oral Pill)', '1332418', 'Amlodipine', 'fb0bdb7f-1041-4c73-bdf9-02679b32c3ce', '3/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3011, 'NORVIR (Oral Pill)', '1748921', 'Ritonavir', '624120b3-0a32-42a7-abfc-324e6b6c93df', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3012, 'NOSTRILLA (Nasal)', '925636', 'Oxymetazoline', 'e16acd65-8163-4410-b645-db9bdee63b2d', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3013, 'NOTUSS PE (Oral Liquid)', '1201620', 'Codeine', 'e2d73253-1777-4993-b693-323f0450c1c4', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3014, 'NOTUSS-NX (Oral Liquid)', '990413', 'chlorcyclizine', '3cd16900-fc6d-440a-9060-1f5c92c9fedf', '12/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3015, 'NOVACORT (Topical)', '975125', 'Hydrocortisone', 'c5b94bde-6982-48e5-ab68-13bb91d3d112', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3016, 'NOVAFERRUM IRON (Oral Liquid)', '1300751', 'Polysaccharide iron complex', '17cd83ec-8779-45f9-8c8d-0aaa8c7b9b42', '1/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3017, 'NOVAFERRUM IRON (Oral Pill)', '1300751', 'Polysaccharide iron complex', '46abb133-711c-4219-ba6e-42cb64abf451', '11/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3018, 'NOVOCAINE (Injectable)', '751698', 'Procaine', '999625d5-3a6b-4753-059a-4f19d04c85a5', '9/14/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3019, 'NovoLIN (Injectable)', '1596914', '"NPH Insulin, Human"', '508a2763-3cb7-4be5-9e53-544e84cd9b1f', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3020, 'NOVOLIN N (Injectable)', '1596914', '"NPH Insulin, Human"', '99c995f1-522e-42aa-b45a-117e0af77d81', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3021, 'NOVOLIN R (Injectable)', '1596977', '"Regular Insulin, Human"', '78dadbee-c3b6-4d62-a338-731b24cc7ef0', '10/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3022, 'NovoLOG (Injectable)', '1567198', '"Insulin, Aspart, Human"', '66472b3d-32c1-4803-aff4-b621aa5430b3', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3023, 'NOVOTHYROX (Oral Pill)', '1501700', 'Thyroxine', 'b5c93ab1-317e-4f99-9ec5-e47b30faf650', '4/21/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3024, 'NUCORT (Topical)', '975125', 'Hydrocortisone', 'cc51030b-ece9-4b6e-9bf8-032a1e552711', '7/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3025, 'NUCYNTA (Oral Liquid)', '19026459', 'tapentadol', 'e921054f-b3f1-4624-8edd-f6628c6f0fd9', '11/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3026, 'NUCYNTA (Oral Pill)', '19026459', 'tapentadol', 'da748c7a-d2ae-1cbc-6f1a-8a6fc0402560', '3/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3027, 'NULECIT (Injectable)', '1399177', 'Sodium ferric gluconate complex', '72153161-a533-4e90-b9b8-54090b8816be', '4/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3028, 'NULEV (Oral Disintegrating)', '923672', 'Hyoscyamine', 'ae2a78b2-b811-11e2-9e96-0800200c9a66', '5/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3029, 'NULL', '19018384', '4-Aminobenzoic Acid', 'fe274cab-a945-4379-a92c-c8f18bd63c1e', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3030, 'NULOJIX (Injectable)', '40239665', 'belatacept', 'c16ac648-d5d2-9f7d-8637-e2328572754e', '10/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3031, 'NULYTELY (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'b630fb8f-b6aa-4b94-a93c-d79f1626c05b', '3/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3032, 'NUPERCAINAL (Rectal)', '923840', 'Dibucaine', 'bcf33951-d3a4-46c5-b208-56adc0011047', '7/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3033, 'NUQUIN HP (Topical)', '976778', 'hydroquinone', '5d257efa-4287-4957-b409-004ea39ad17b', '11/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3034, 'NUTRALOX (Chewable)', '19035704', 'Calcium Carbonate', '263e20ca-1ca6-4f7c-bae5-525a1184b744', '11/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3035, 'NUTRESTORE (Oral Liquid)', '19060985', 'Glutamine', 'cd3fb572-c5b1-43da-aea2-31208985f544', '7/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3036, 'NUTROPIN (Injectable)', '1584910', 'Somatropin', 'e6574a25-1ad5-4946-b750-501ce745574f', '3/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3037, 'NUVIGIL (Oral Pill)', '19090984', 'armodafinil', '10f918f7-4782-470e-a50e-35c7c66bfd79', '5/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3038, 'NYMALIZE (Oral Liquid)', '1319133', 'Nimodipine', '9e48dba7-c706-44fc-b04b-0fdcb2d72bc4', '5/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3039, 'Nystatin (Oral Liquid)', '922570', 'Nystatin', 'ba531b47-6a96-432b-ae01-6d8e18634463', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3040, 'Nystatin (Oral Pill)', '922570', 'Nystatin', 'fc0cc939-3ad1-47f2-87b9-cdd91712e0db', '8/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3041, 'Nystatin (Topical)', '922570', 'Nystatin', 'bb68ae89-8a87-4ff7-a71b-f47ed4da1808', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3042, 'Nystatin/Triamcinolone (Topical)', '922570', 'Nystatin', '47b09171-bc17-4f32-a08e-6546bd48f78a', '11/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3043, 'NYSTOP (Topical)', '922570', 'Nystatin', 'e1b4622c-0f9f-4c00-b42c-2aa85a5e3d4f', '9/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3044, 'NYTOL (Oral Pill)', '1129625', 'Diphenhydramine', 'c81d018a-0170-4396-81e9-2e13a53f868a', '2/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3045, 'OASIS TEARS (Ophthalmic)', '961145', 'Glycerin', '00071697-4ac6-4962-8eee-388b8b52bd40', '11/23/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3046, 'Oat loose smut extract (Injectable)', '40175872', 'oat loose smut extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3047, 'OBIZUR (Injectable)', '1352213', 'Factor VIII', 'a69ccbb3-7648-4978-8c6d-7ca6b95a9b01', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3048, 'OC 8 ADULT ACNE (Topical)', '918172', 'Benzoyl Peroxide', '9d84b8f4-432b-44fa-9c4d-362615454fe6', '8/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3049, 'OCTAGAM (Injectable)', '19117912', 'Immunoglobulin G', '810c8752-a7cb-0bce-777d-8539429773c2', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3050, 'Octreotide (Injectable)', '1522957', 'Octreotide', '5d3095a8-e5c7-4705-8c4f-9fca8afd5847', '6/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3051, 'OCUFEN (Ophthalmic)', '1156378', 'Flurbiprofen', '5a4d5684-b20a-4fde-a808-404c7b9d25b3', '8/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3052, 'OCUFLOX (Ophthalmic)', '923081', 'Ofloxacin', '7aab4449-3dda-4e2c-8e40-b3244a548bf5', '7/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3053, 'OCUPRESS (Ophthalmic)', '950370', 'Carteolol', '5f82e53e-d6db-432f-af68-9de88d1b1720', '10/5/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3054, 'OFEV (Oral Pill)', '45775396', 'nintedanib', 'da1c9f37-779e-4682-816f-93d0faa4cfc9', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3055, 'Ofloxacin (Ophthalmic)', '923081', 'Ofloxacin', '7882f70e-d228-4c52-9390-0d927c51af1f', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3056, 'Ofloxacin (Oral Pill)', '923081', 'Ofloxacin', '1d19a6db-6da5-e7de-f929-2d18bdfa2cf5', '7/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3057, 'Ofloxacin (Otic)', '923081', 'Ofloxacin', '75d8099b-4e08-43c0-811e-589d4fb52932', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3058, 'OLANZapine (Injectable)', '785788', 'olanzapine', '3b3bc948-161e-49ee-b67f-4bbb63af23d6', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3059, 'OLANZapine (Oral Disintegrating)', '785788', 'olanzapine', '35b52ceb-5c07-49c5-9b1d-4708db66eaff', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3060, 'OLANZapine (Oral Pill)', '785788', 'olanzapine', '3347d1c8-04c9-5ce1-8cda-b38e0412b709', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3061, 'Olmesartan (Oral Pill)', '40226742', 'olmesartan', 'ae3e0a4e-3a0c-4589-adb0-8fc3a5510f5b', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3062, 'Olopatadine (Ophthalmic)', '915855', 'olopatadine', 'ae8b4a9d-4308-4a3c-8ec9-1e8d9060db68', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3063, 'Olsalazine (Oral Pill)', '916282', 'olsalazine', '75a96561-6f52-4c11-a105-391fbbfe4827', '10/10/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3064, 'OLUX (Topical)', '998415', 'Clobetasol', '6a53f8c0-458b-4f5d-9679-ccf667461613', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3065, 'Omacetaxine mepesuccinate (Injectable)', '19069046', 'omacetaxine mepesuccinate', '83a504ef-cf92-467d-9ecf-d251194a3484', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3066, 'Omega-3 Acid Ethyl Esters (USP) (Oral Pill)', '1560305', 'Omega-3 Acid Ethyl Esters (USP)', '5fe15bdb-f59f-4b87-8e5d-8a3d5683eb3d', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3067, 'Omeprazole (Oral Pill)', '923645', 'Omeprazole', '54394aec-a36b-427f-9be4-76e3768595c6', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3068, 'Omeprazole/Sodium Bicarbonate (Oral Pill)', '923645', 'Omeprazole', 'c43b7c1e-1eb6-48b4-ba73-56e274239ae2', '1/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3069, 'OMNI GEL (Oral Gel)', '1036094', 'Stannous Fluoride', '0f1afc36-f699-4072-b90b-c9f5be989a49', '8/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3070, 'OMNIPRED (Ophthalmic)', '1550557', 'prednisolone', '4bbb4356-b4b3-4497-a3a3-8f4b65d326fe', '7/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3071, 'OMTRYG (Oral Pill)', '1560305', 'Omega-3 Acid Ethyl Esters (USP)', '5fe15bdb-f59f-4b87-8e5d-8a3d5683eb3d', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3072, 'ONCASPAR (Injectable)', '1326481', 'pegaspargase', 'd046ec54-9ac8-4c9f-87a7-69e9900d8016', '8/8/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3073, 'Ondansetron (Injectable)', '1000560', 'Ondansetron', 'e0050959-c14c-41b6-9a92-fadc5f6feff3', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3074, 'Ondansetron (Oral Disintegrating)', '1000560', 'Ondansetron', 'e5950fac-27c8-49b8-81d5-046ec065621b', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3075, 'Ondansetron (Oral Liquid)', '1000560', 'Ondansetron', '38435346-d505-4bdd-bbc6-a7bcba411033', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3076, 'Ondansetron (Oral Pill)', '1000560', 'Ondansetron', '2c94fed2-f880-44a9-8d10-93fa5713dcb4', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3077, 'Ondansetron (Oral Strip)', '1000560', 'Ondansetron', 'ed036bdb-b832-440f-82c7-ade2956b73ee', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3078, 'ONE TOUCH REFORMULATED APR 2009 (Topical)', '917006', 'Benzocaine', 'a75b6e20-a180-4a8d-be08-de54812c4f5e', '12/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3079, 'Oneseed juniper pollen extract (Injectable)', '40172384', 'oneseed juniper pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3080, 'ONGLYZA (Oral Pill)', '40166035', 'saxagliptin', 'ba48ac4b-9503-4006-f6e2-3b8a83059c03', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3081, 'ONMEL (Oral Pill)', '1703653', 'Itraconazole', 'fb8a2e5b-fd23-4977-81de-a95f4af168e2', '1/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3082, 'ONTAK (Injectable)', '19051642', 'denileukin diftitox', '42dfffb1-d0f3-42d5-944c-64f092fc436e', '3/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3083, 'OPANA (Oral Pill)', '1125765', 'Oxymorphone', '9be700c1-937a-180d-fb38-bc2aa85d20cf', '10/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3084, 'OPCON-A (Ophthalmic)', '914533', 'Naphazoline', '90a05c13-5b87-415b-9892-10d2edbc1943', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3085, 'Opium (Oral Liquid)', '923829', 'Opium', '3ad95865-a77c-41da-b572-e5c0bb404c79', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3086, 'OPSUMIT (Oral Pill)', '44507580', 'Macitentan', '1e484a50-55db-4b85-8c57-6cd1b0353abd', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3087, 'OPTIVAR (Ophthalmic)', '934075', 'azelastine', 'f4b9597c-5b50-4889-be41-20bd1f13aaa5', '4/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3088, 'ORABASE (Oral Paste)', '917006', 'Benzocaine', '387f52e1-157a-4b9e-8f98-9001c6880786', '2/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3089, 'ORACEA (Oral Pill)', '1738521', 'Doxycycline', '4e954825-3f60-4dbb-a1be-b146fe1acae4', '2/12/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3090, 'ORACIT (Oral Liquid)', '950435', 'Citric Acid', 'bc26abed-8e6e-475d-8ab3-abf7d0377003', '10/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3091, 'ORAJEL (Mucosal)', '917006', 'Benzocaine', '707d27da-731c-4726-9c77-63fcc071d09d', '12/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3092, 'ORAJEL (Oral Gel)', '917006', 'Benzocaine', '574c7911-e24b-4b52-b01f-df89d58fd505', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3093, 'ORAJEL (Topical)', '917006', 'Benzocaine', '8c2e436a-9d32-4dd5-ba5f-712bc39d36c4', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3094, 'ORAJEL BLEEDING GUM RINSE (Mucosal)', '989301', 'Cetylpyridinium', '48b1f5b8-69b1-4d50-960b-733151beef91', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3095, 'ORAJEL DRY MOUTH (Oral Gel)', '961145', 'Glycerin', '0d371e48-d722-4b77-b354-5a44179247bc', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3096, 'ORAJEL MOUTH SORE RINSE (Mucosal)', '1776430', 'Hydrogen Peroxide', 'f82230e0-a6eb-4d1e-8fea-0bf386d97c58', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3097, 'ORAJEL ULTRA (Oral Gel)', '917006', 'Benzocaine', 'c7936cbc-b132-4025-8439-8227b928c2fd', '7/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3098, 'ORAL B ANTI-CAVITY (Mouthwash)', '19069022', 'Sodium Fluoride', 'd8336ad5-d1fb-4290-9433-d852405d1409', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3099, 'ORALONE (Oral Paste)', '903963', 'Triamcinolone', 'ac1e2116-795e-4c20-974d-11fa07cf0fa7', '10/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3100, 'Orange pollen extract (Injectable)', '40172688', 'orange pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3101, 'ORAP (Oral Pill)', '745790', 'Pimozide', '90c0086a-b62c-4cdd-a6af-2efed69cfd4d', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3102, 'ORAPRED (Oral Disintegrating)', '1550557', 'prednisolone', '1e379543-c4cf-4e72-953b-db15b7f0c2a1', '1/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3103, 'ORAQIX (Mucosal)', '989878', 'Lidocaine', 'b501d239-923b-48b2-82ed-6c5c253a67e2', '8/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3104, 'ORASEP REFORMULATED DEC 2013 (Mucosal)', '917006', 'Benzocaine', 'ed70911b-9da8-4e1d-97fa-66b18d28516a', '4/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3105, 'ORAVERSE (Injectable)', '1335539', 'Phentolamine', '38be9414-87c4-4a8a-9f17-99be0d0a33fa', '6/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3106, 'ORAVIG (Buccal)', '907879', 'Miconazole', 'a1bf6bf0-9197-4fc1-af9f-df7b9a1ad6ce', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3107, 'ORBACTIV (Injectable)', '45776147', 'oritavancin', '085d6d1a-21c2-11e4-8c21-0800200c9a66', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3108, 'ORBIVAN (Oral Pill)', '1125315', 'Acetaminophen', 'd3c69436-a681-4e00-8db0-8cbfaac9627e', '4/23/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3109, 'Orchard grass pollen extract (Injectable)', '40161896', 'orchard grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3110, 'Oregon ash pollen extract (Injectable)', '40173249', 'Oregon ash pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3111, 'ORFADIN (Oral Pill)', '1586640', 'nitisinone', '5d449b73-d503-4132-b978-d890491975df', '6/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3112, 'ORIS (Mouthwash)', '1790812', 'Chlorhexidine', '8d90c38e-e241-4f73-877d-ff314408a510', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3113, 'Oritavancin (Injectable)', '45776147', 'oritavancin', '085d6d1a-21c2-11e4-8c21-0800200c9a66', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3114, 'Orlistat (Oral Pill)', '741530', 'orlistat', 'a9c47f08-bd02-4731-aaf7-42173155b2d0', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3115, 'Orphenadrine (Injectable)', '724394', 'Orphenadrine', '8768cd6b-e79d-4b6d-8981-2f01ce28047b', '10/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3116, 'ORTHO-NESIC (Topical)', '938205', 'Camphor', '52db0aec-be7c-4342-a414-60f594f57b3c', '3/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3117, 'ORTHOCLONE OKT3 (Injectable)', '19051865', 'Muromonab-CD3', '2a1f1c18-fa95-45e6-bd00-ac53c73f4747', '6/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3118, 'ORTHOWASH (Mouthwash)', '19069022', 'Sodium Fluoride', '37d407ae-d5b1-4c67-8894-1d419ae36c69', '10/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3119, 'OSCIMIN (Oral Pill)', '923672', 'Hyoscyamine', '8504adad-f6d0-4671-b655-4b62bf29a516', '7/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3120, 'Oseltamivir (Oral Liquid)', '1799139', 'Oseltamivir', '03a2a7f0-406c-4784-84c1-5fd5f5be4773', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3121, 'Oseltamivir (Oral Pill)', '1799139', 'Oseltamivir', '1948cafd-b5b3-4212-9d5d-8c293b1baad5', '5/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3122, 'OSENI (Oral Pill)', '43013884', 'alogliptin', '4c619ed9-fe3e-4158-9938-80c6c3493d55', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3123, 'OSMITROL (Injectable)', '994058', 'Mannitol', '0d914965-7001-45cb-ba51-d7c5964b05bc', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3124, 'OSMOPREP (Oral Pill)', '939871', 'sodium phosphate', '983ce15f-cd37-4f3a-9e51-205860e80976', '8/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3125, 'OTOZIN (Otic)', '1036059', 'Antipyrine', 'cd77f88e-8714-45ca-a385-1ca75b8c94bb', '5/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3126, 'OVACE (Shampoo)', '1036252', 'Sulfacetamide', '6a034465-e600-49cb-91bd-7b9ceee6ffc6', '10/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3127, 'OVACE (Soap)', '1036252', 'Sulfacetamide', 'a77aed6c-355f-44ed-ae95-78b4d1549c2b', '1/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3128, 'OVACE (Topical)', '1036252', 'Sulfacetamide', '06876575-edf2-4844-8f20-3eb6e74ccc8e', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3129, 'OVIDE (Topical)', '993979', 'Malathion', '2024030e-b00d-4fcc-b51d-45dc86933749', '1/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3130, 'Oxacillin (Injectable)', '1724703', 'Oxacillin', 'f3bee4d7-82d8-4e2d-8fc8-4446e6fbf999', '3/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3131, 'Oxaliplatin (Injectable)', '1318011', 'oxaliplatin', 'd9400bde-4da8-49c8-a61e-15d2be58e73d', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3132, 'OXANDRIN (Oral Pill)', '1524769', 'Oxandrolone', 'f622616e-4c11-4149-bf00-5ea5ce97800b', '5/17/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3133, 'Oxandrolone (Oral Pill)', '1524769', 'Oxandrolone', '8e6af85f-e44e-4c47-8a1a-7c5cb7893167', '9/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3134, 'Oxaprozin (Oral Pill)', '1118045', 'oxaprozin', '755ca241-0d01-41ba-a735-e37365352a71', '3/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3135, 'Oxazepam (Oral Pill)', '724816', 'Oxazepam', '52488349-1c84-4cdc-89d1-c841a68e904f', '6/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3136, 'OXcarbazepine (Oral Liquid)', '718122', 'oxcarbazepine', 'ca6bfbbb-fcca-4c15-a160-ee5791ed2f6e', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3137, 'OXcarbazepine (Oral Pill)', '718122', 'oxcarbazepine', 'd9741f36-0abd-49b7-9f43-e9700663122b', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3138, 'OXECTA (Oral Pill)', '1124957', 'Oxycodone', 'dd9f9d6d-9a59-4f74-8fe7-685e0c3c5fd4', '1/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3139, 'Oxiconazole (Topical)', '918222', 'oxiconazole', '094d5b1e-ccf6-4384-b208-fd70360ffda2', '12/22/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3140, 'OXISTAT (Topical)', '918222', 'oxiconazole', '094d5b1e-ccf6-4384-b208-fd70360ffda2', '12/22/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3141, 'OXSORALEN-ULTRA (Oral Pill)', '905223', 'Methoxsalen', 'ae951dc4-9031-43bf-943c-cb2366951f23', '3/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3142, 'OXY (Topical)', '918172', 'Benzoyl Peroxide', '9f408142-dc98-4cd9-9060-64c42984ee9a', '1/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3143, 'OXY CLEAN (Topical)', '964407', 'Salicylic Acid', 'c1086120-8eb3-4ba6-ac8e-ae868ddc27a7', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3144, 'OXY DAILY WASH (Soap)', '918172', 'Benzoyl Peroxide', '89cdc287-e374-4254-b867-97e9f9b6bdd1', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3145, 'OXY FACE SCRUB (Soap)', '964407', 'Salicylic Acid', '4cc02e46-bfae-4f53-8aa4-4662a32339f9', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3146, 'Oxybutynin (Oral Liquid)', '918906', 'oxybutynin', '17d61203-a462-4393-b261-72bf48d51942', '3/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3147, 'Oxybutynin (Oral Pill)', '918906', 'oxybutynin', 'b15f1a2c-dcae-4c3e-923f-ec81078ba3c4', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3148, 'Oxybutynin (Topical)', '918906', 'oxybutynin', 'c6754623-b14c-4fc3-8719-48eee3119156', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3149, 'oxyCODONE (Oral Liquid)', '1124957', 'Oxycodone', '73eb3e1f-7706-4688-9e75-1050b4a8a533', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3150, 'oxyCODONE (Oral Pill)', '1124957', 'Oxycodone', '3efb2cf8-9b0e-4d76-afb1-c4ecd514d534', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3151, 'Oxygen (Inhalant)', '19025274', 'Oxygen', 'dfcc57ba-4b9f-458c-9b8a-7ab4f3e68eb2', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3152, 'Oxymetazoline (Nasal)', '925636', 'Oxymetazoline', '46256806-7d8e-4e97-906e-ae5c41b3b7e2', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3153, 'Oxymetholone (Oral Pill)', '1525741', 'Oxymetholone', '4b9c6c34-9cb2-4d70-b70e-c7ce2fda4212', '10/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3154, 'Oxymorphone (Oral Pill)', '1125765', 'Oxymorphone', '2c4b8fab-3112-43a0-994a-591e5089f619', '3/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3155, 'Oxytetracycline (Oral Pill)', '925952', 'Oxytetracycline', 'd30ffe60-a418-4425-883e-58d10417b9bf', '9/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3156, 'Oxytocin (Injectable)', '1326115', 'Oxytocin', 'c7fd585a-99b7-4309-b003-a6cbef05372c', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3157, 'P-Aminohippurate (Injectable)', '19053177', 'p-Aminohippurate', 'a1975215-25f1-4c5a-878d-bcbf5326bb92', '1/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3158, 'P-Hydroxyamphetamine/Tropicamide (Ophthalmic)', '19026274', 'p-Hydroxyamphetamine', 'da8a8a19-ac1b-4160-aac4-c4c57598eb5d', '8/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3159, 'PACERONE (Oral Pill)', '1309944', 'Amiodarone', 'a13a7632-74ea-4e2f-b791-190a4765c295', '5/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3160, 'PACNEX (Soap)', '918172', 'Benzoyl Peroxide', '764ef37b-7ead-4a64-89eb-67321320138f', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3161, 'Paecilomyces variotii extract (Injectable)', '40175309', 'Paecilomyces variotii extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3162, 'Pale dock pollen extract (Injectable)', '42709315', 'pale dock pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3163, 'Palonosetron (Oral Pill)', '911354', 'palonosetron', 'bd06f321-bb42-4748-92f3-d59626b540e0', '11/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3164, 'Pamabrom (Oral Pill)', '1172206', 'pamabrom', '22122002-c367-480b-b9f5-0504f918cc98', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3165, 'Pamidronate (Injectable)', '1511646', 'pamidronate', 'ad1b83f9-ddf7-44b7-9234-77d6872e4825', '7/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3166, 'PAMINE (Oral Pill)', '1158632', 'Methscopolamine', '2981e734-2a20-4b45-8521-8c13ff2b6578', '9/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3167, 'PAMINE FORTE (Oral Pill)', '1158632', 'Methscopolamine', '2981e734-2a20-4b45-8521-8c13ff2b6578', '9/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3168, 'PAMPRIN CRAMP FORMULA (Oral Pill)', '1125315', 'Acetaminophen', '5f2e9d2a-4c7b-4339-8be7-3711a73fdbe9', '6/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3169, 'PAMPRIN MAX FORMULA (Oral Pill)', '1125315', 'Acetaminophen', '109f5b3f-689a-4ca4-a621-bf5c2d41d7af', '6/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3170, 'PAMPRIN MULTI-SYMPTOM (Oral Pill)', '1125315', 'Acetaminophen', '169704f1-3953-4857-93d0-ddca3359356d', '6/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3171, 'PANADOL (Oral Pill)', '1125315', 'Acetaminophen', '62920a3f-c662-4db2-a4aa-8170a23ed3b6', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3172, 'PANCREAZE (Oral Pill)', '919204', 'Amylases', 'e1431edd-0fc5-4ebc-8c10-53deb0db0d23', '12/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3173, 'Pancuronium (Injectable)', '19026674', 'Pancuronium', 'a95893be-9df7-4f3e-ad72-3298dab8b187', '10/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3174, 'PANDEL (Topical)', '975125', 'Hydrocortisone', '361338e6-d719-4bea-aca0-7dd591fcfa08', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3175, 'PANOXYL (Soap)', '918172', 'Benzoyl Peroxide', '41aac3a5-ce01-435f-948a-668e68802bb9', '2/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3176, 'PANRETIN (Topical)', '941052', 'alitretinoin', '9cf04dad-e312-4b8f-a297-1e002d43e151', '11/14/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3177, 'Pantoprazole (Injectable)', '948078', 'pantoprazole', '5b5ddedd-d429-41a7-8573-10c3e9ad4e52', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3178, 'Pantoprazole (Oral Granules)', '948078', 'pantoprazole', '189b7b6a-9717-44eb-b87b-fd3e985b2268', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3179, 'Pantoprazole (Oral Pill)', '948078', 'pantoprazole', 'd132d29d-723e-4357-87f2-0d760afa50a4', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3180, 'Papaverine (Injectable)', '1326901', 'Papaverine', '9e5e2ce4-7a57-4c61-a826-64c8d11d038e', '8/30/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3181, 'Paper birch pollen extract (Injectable)', '40172798', 'paper birch pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3182, 'Para grass pollen extract (Injectable)', '40170840', 'para grass pollen extract', '34c8c68c-9a78-42ea-89f8-cac82981881e', '1/7/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3183, 'PARAFON FORTE DSC (Oral Pill)', '795113', 'Chlorzoxazone', 'a8d84a0a-aa31-4ebe-bdf8-5b09b2df69a9', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3184, 'PARCOPA (Oral Disintegrating)', '740560', 'Carbidopa', 'dcb0fb25-ad60-4ab6-bc0f-ebc356357d93', '2/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3185, 'PAREMYD (Ophthalmic)', '19026274', 'p-Hydroxyamphetamine', 'da8a8a19-ac1b-4160-aac4-c4c57598eb5d', '8/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3186, 'Paricalcitol (Injectable)', '1517740', 'paricalcitol', 'b2e4eaa9-bf4d-4fe8-ab2e-d2b1a3a555ca', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3187, 'Paricalcitol (Oral Pill)', '1517740', 'paricalcitol', 'ac3028be-d563-4b0c-86d3-5a7e1c92758c', '4/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3188, 'PARLODEL (Oral Pill)', '730548', 'Bromocriptine', 'fc2a08dd-4fb6-4ac4-9082-f99552fae25c', '6/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3189, 'PARNATE (Oral Pill)', '703470', 'Tranylcypromine', '2e7350bd-ab32-4619-a3f9-12fdf56fc5e2', '1/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3190, 'PAROEX (Mouthwash)', '1790812', 'Chlorhexidine', '4e137308-6a21-4bf9-802f-23ff78ee6797', '10/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3191, 'Paromomycin (Oral Pill)', '1727443', 'Paromomycin', 'cc0f4113-e627-4caf-b2d4-95b4106e57f5', '1/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3192, 'PARoxetine (Oral Liquid)', '722031', 'Paroxetine', '584ace29-6e40-432f-950f-ab7e98653d32', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3193, 'PARoxetine (Oral Pill)', '722031', 'Paroxetine', 'fce8fb27-554b-43e2-8ec9-fc4ca0b0ab8b', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3194, 'PARoxetine XR (Oral Pill)', '722031', 'Paroxetine', '21b3b8a2-bfed-4945-954d-6a42ea61888f', '10/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3195, 'PASER D/R (Oral Granules)', '1726228', 'aminosalicylic acid', '6f2753dc-5f0c-4f49-9335-e519afb69ba6', '6/18/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3196, 'Pasireotide (Injectable)', '43012417', 'pasireotide', '442f0d9d-5c7d-4b81-b329-d71be8cf2be2', '3/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3197, 'Passalora fulva extract (Injectable)', '40176152', 'Passalora fulva extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3198, 'PATADAY (Ophthalmic)', '915855', 'olopatadine', 'ee6e2161-789b-4ba0-b234-d4b36fe41c94', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3199, 'PATANOL (Ophthalmic)', '915855', 'olopatadine', 'ae8b4a9d-4308-4a3c-8ec9-1e8d9060db68', '9/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3200, 'PAXIL (Oral Liquid)', '722031', 'Paroxetine', '584ace29-6e40-432f-950f-ab7e98653d32', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3201, 'PAXIL (Oral Pill)', '722031', 'Paroxetine', '584ace29-6e40-432f-950f-ab7e98653d32', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3202, 'PAXIL XR (Oral Pill)', '722031', 'Paroxetine', 'a73cf8ee-f99b-4972-8939-0d394a527134', '10/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3203, 'PAZOL XS (Shampoo)', '1000995', 'Coal Tar', 'ec7873bb-288a-4671-b649-1d5d5ced6476', '7/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3204, 'PCE (Oral Pill)', '1746940', 'Erythromycin', '28a270f4-f713-4d88-b83a-f5b5e9b26746', '1/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3205, 'PCXX NEUTRAL FOAM (Oral Foam)', '19069022', 'Sodium Fluoride', '9f9f36e7-ec66-473d-af17-09d4b492ded5', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3206, 'Pecan pollen extract (Injectable)', '40161960', 'pecan pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3207, 'Pecan pollen extract/White hickory pollen extract (Injectable)', '40161960', 'pecan pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3208, 'Pectin (Oral Lozenge)', '922191', 'pectin', '9d04885b-d866-4eb3-8685-420d0464d004', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3209, 'PEDIA-LAX CHEWABLE (Chewable)', '992956', 'Magnesium Hydroxide', '975f24d8-218c-40f4-84a5-558acf34329d', '5/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3210, 'PEDIA-LAX LIQUID GLYCERIN SUPPOSITORIES (Rectal)', '961145', 'Glycerin', '9edbb46d-0b50-42e9-b9bb-c78bb10aaba3', '11/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3211, 'PEDIACARE CHILDREN''S 24-HR ALLERGY (Oral Liquid)', '1149196', 'Cetirizine', '6855116e-ba31-4373-a410-256c38519330', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3212, 'PEDIACARE CHILDREN''S ALLERGY (Oral Liquid)', '1129625', 'Diphenhydramine', 'eff380b3-0bbf-431b-bbd1-354c05c6deb2', '1/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3213, 'PEDIACARE CHILDREN''S ALLERGY & COLD (Oral Liquid)', '1129625', 'Diphenhydramine', 'e349f954-c331-4493-ae0b-543af66bd1ae', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3214, 'PEDIACARE CHILDREN''S COUGH AND CONGESTION (Oral Liquid)', '1119510', 'Dextromethorphan', '4772d9a5-85f1-4ca9-a240-84d733dcd86e', '10/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3215, 'PEDIACARE CHILDREN''S FEVER REDUCER PAIN RELIEVER (Oral Liquid)', '1125315', 'Acetaminophen', '08eaf987-f6d8-4313-a775-052f9d51327c', '10/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3216, 'PEDIACARE FEVER (Oral Liquid)', '1177480', 'Ibuprofen', '8d904483-5a90-4271-b69f-b33c7e875245', '3/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3217, 'PEDIACARE INFANT FEVER PAIN RELIEVER (Oral Liquid)', '1125315', 'Acetaminophen', '89c78619-2ab0-486a-9f8e-8a17c6362740', '11/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3218, 'PEDIACARE INFANT FEVER REDUCER (Oral Liquid)', '1125315', 'Acetaminophen', 'da488d88-ad6c-460f-b030-daf3827753f8', '10/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3219, 'PEDIACARE INFANT GAS RELIEF (Oral Liquid)', '966991', 'Simethicone', '467af525-ea12-4261-a164-b262f1a017b2', '7/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3220, 'PEDIACARE MULTI SYMPTOM COLD (Oral Liquid)', '1119510', 'Dextromethorphan', 'cb6fa9c2-0a9f-4955-beb2-02dbf891aa4b', '1/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3221, 'PEDIACARE NIGHTTIME MULTI-SYMPTOM COLD (Oral Liquid)', '1129625', 'Diphenhydramine', 'e9432ccf-e0c6-4286-82f2-5a6a10bb5893', '5/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3222, 'PEDIADERM AF (Topical)', '922570', 'Nystatin', 'bb68ae89-8a87-4ff7-a71b-f47ed4da1808', '10/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3223, 'PEDIADERM TA (Topical)', '903963', 'Triamcinolone', 'df864d69-bd2d-4fe2-8619-f2e93ab767f6', '10/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3224, 'Pegademase bovine (Injectable)', '581480', 'pegademase bovine', '9880b900-ea23-11dc-ad56-0002a5d5c51b', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3225, 'Pegaspargase (Injectable)', '1326481', 'pegaspargase', 'd046ec54-9ac8-4c9f-87a7-69e9900d8016', '8/8/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3226, 'Peginterferon alfa-2b (Injectable)', '1797155', 'peginterferon alfa-2b', 'b70816bb-913a-467f-acb8-67ef62cf8dac', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3227, 'PEGINTRON (Injectable)', '1797155', 'peginterferon alfa-2b', 'b70816bb-913a-467f-acb8-67ef62cf8dac', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3228, 'Pegloticase (Injectable)', '40226208', 'Pegloticase', '5f4574d1-401f-4647-83e5-28c0f4a122a7', '4/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3229, 'PEGYLAX (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'bcd57d3c-e1c4-474f-a757-ca89b020278b', '2/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3230, 'Penciclovir (Topical)', '981654', 'penciclovir', '936c7c51-a286-405f-9aa4-ad910f2e8782', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3231, 'Penicillamine (Oral Pill)', '19028050', 'Penicillamine', '80e736d3-2017-4d68-94b4-38255c3c59c6', '8/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3232, 'Penicillin G benzathine/Penicillin G procaine (Injectable)', '1728416', 'Penicillin G', '9a595f58-21e3-4b82-aa4c-8697682bff80', '11/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3233, 'Penicillin G Potassium (Injectable)', '1728416', 'Penicillin G', 'd8aaefb6-3f7d-4bc5-b40a-1c58c3054320', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3234, 'Penicillin G procaine (Injectable)', '1728416', 'Penicillin G', '04f90445-9426-41f4-a467-f0e3245740d7', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3235, 'Penicillin V Potassium (Oral Liquid)', '1729720', 'Penicillin V', '2bfee83c-4f38-440e-9061-58036490d009', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3236, 'Penicillin V Potassium (Oral Pill)', '1729720', 'Penicillin V', 'e3b6a3b4-a61a-4432-9e90-c1ba9e210939', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3237, 'Penicillium chrysogenum var. chrysogenum extract (Injectable)', '40161349', 'Penicillium chrysogenum var. chrysogenum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3238, 'Penicillium expansum extract (Injectable)', '40174478', 'Penicillium expansum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3239, 'Penicillium italicum extract (Injectable)', '40176125', 'Penicillium italicum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3240, 'PENLAC NAIL LACQUER (Topical)', '950098', 'ciclopirox', '9793245c-c3e0-4351-a2ab-b54b46aecb43', '5/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3241, 'PENNSAID (Topical)', '1124300', 'Diclofenac', '4732a181-9fe0-49b4-b486-e2da9ad66e31', '1/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3242, 'Pentamidine (Inhalant)', '1730370', 'Pentamidine', 'e2ad9d3c-b6c3-4f70-87e0-722a8ff94ccb', '2/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3243, 'PENTASA XR (Oral Pill)', '968426', 'mesalamine', '1bdf3222-469c-44b0-bbcd-25faeaeff178', '8/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3244, 'PENTobarbital (Injectable)', '730729', 'Pentobarbital', '5c380ab0-4386-48b6-80ab-ca594b23bc74', '8/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3245, 'Pentostatin (Injectable)', '19031224', 'Pentostatin', '151c6d2e-1af1-4c13-96ec-de3228c6efb3', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3246, 'Pentoxifylline XR (Oral Pill)', '1331247', 'Pentoxifylline', 'e09702d1-43d4-47ed-9563-5af3cd667727', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3247, 'PEP-BACK (Oral Pill)', '1134439', 'Caffeine', 'f9759c55-5d57-4fc4-9fa4-97fc117ab42e', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3248, 'PEPCID (Oral Pill)', '953076', 'Famotidine', '2854047f-c5c4-43c3-8ef2-5c0a84a307f2', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3249, 'PEPCID COMPLETE (Chewable)', '19035704', 'Calcium Carbonate', 'e874118f-b4fe-4c80-aece-99ea20e7e805', '11/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3250, 'PEPTO-BISMOL (Chewable)', '937791', 'bismuth subsalicylate', 'a1785301-3d4d-4c47-bfa1-b51f54201c53', '12/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3251, 'PEPTO-BISMOL (Oral Liquid)', '937791', 'bismuth subsalicylate', 'f2ed9662-687a-4091-b097-dec865af09aa', '12/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3252, 'PEPTO-BISMOL (Oral Pill)', '937791', 'bismuth subsalicylate', '0f02f1a4-3ea4-43de-bfdb-b9cb7626f92a', '12/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3253, 'PEPTO-BISMOL CHILDREN''S (Chewable)', '19035704', 'Calcium Carbonate', '2231d2e1-db04-4efb-9b68-76cd83df67e8', '2/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3254, 'PERCOCET (Oral Pill)', '1125315', 'Acetaminophen', 'db8d5c93-7d59-4995-b388-d55ba90d6acb', '8/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3255, 'PERCODAN REFORMULATED MAY 2009 (Oral Pill)', '1112807', 'Aspirin', '599803dc-7595-482f-aa7e-70d349fbe699', '8/6/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3256, 'PERCOGESIC REFORMULATED JAN 2011 (Oral Pill)', '1125315', 'Acetaminophen', '85f0a6c8-30c8-4a1f-ac35-542c77a6522a', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3257, 'PERCY MEDICINE (Oral Liquid)', '937791', 'bismuth subsalicylate', '08dd53b7-8345-4849-9155-60429cbe2c51', '10/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3258, 'PERDIEM OVERNIGHT (Oral Pill)', '938268', '"sennosides, USP"', '7374ae02-74d4-4250-9116-21872e9545ed', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3259, 'Perennial rye grass pollen extract (Injectable)', '40161976', 'perennial rye grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3260, 'PERFECT CHOICE ONE MINUTE (Oral Gel)', '976309', 'Hydrofluoric Acid', '2b678081-29cd-4311-a9fa-d884734778e2', '12/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3261, 'Pergolide (Oral Pill)', '732309', 'Pergolide', 'a26390e8-eb86-4623-8cdd-45b24b14df74', '10/26/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3262, 'PERI-COLACE REFORMULATED FEB 2008 (Oral Pill)', '941258', 'Docusate', 'f63ecf22-fb2b-8677-5bfe-c6ac368977a3', '9/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3263, 'PERIDEX (Mouthwash)', '1790812', 'Chlorhexidine', '6ea1691d-5379-f0c0-1b37-ecf08f6dbc00', '4/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3264, 'PERIGIENE (Soap)', '949459', 'chloroxylenol', '4f6e8610-f474-450e-a385-eaea58f649c8', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3265, 'PERIGUARD (Topical)', '911064', 'Zinc Oxide', '6e4a7df5-684d-4fe4-bf55-05ce9b5685e6', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3266, 'Perindopril (Oral Pill)', '1373225', 'Perindopril', '87768fbf-7c63-47da-8925-0316f343d6ef', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3267, 'PERIO MED (Mouthwash)', '1036094', 'Stannous Fluoride', '7f79eb00-86df-4284-b415-47f45e4849da', '10/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3268, 'PERIOCHIP (Implant)', '1790812', 'Chlorhexidine', 'c40ab6ac-8987-42d2-a95b-95fbfd3b0162', '3/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3269, 'PERIOGARD (Mouthwash)', '1790812', 'Chlorhexidine', '6e537d5f-bce1-41ce-9984-9b3c2861b7c9', '3/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3270, 'PERMAX (Oral Pill)', '732309', 'Pergolide', 'a26390e8-eb86-4623-8cdd-45b24b14df74', '9/6/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3271, 'Permethrin (Shampoo)', '922868', 'Permethrin', '9f4cad52-e1fe-4c7b-ab08-deeef4a86ca9', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3272, 'Permethrin (Topical)', '922868', 'Permethrin', 'a8d4eb78-4556-4315-815c-7f05e691b7aa', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3273, 'Perphenazine (Oral Pill)', '733008', 'Perphenazine', '20c06f4c-639a-4de3-846f-7754537dc935', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3274, 'PERSA-GEL (Topical)', '918172', 'Benzoyl Peroxide', '2af69b7d-258a-4cc2-b3f3-a108ccf99458', '7/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3275, 'PERSANTINE (Oral Pill)', '1331270', 'Dipyridamole', 'ca68879c-0214-4d7c-93b0-bdaf8ef23f8e', '12/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3276, 'Petrolatum (Topical)', '19033354', 'Petrolatum', '8068b6e6-2bb7-4262-acaf-05e7a60249a6', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3277, 'Petrolatum/Resorcinol (Topical)', '19033354', 'Petrolatum', '03f57a4a-f94b-4ba6-b709-41cfb6e16261', '1/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3278, 'Petrolatum/Zinc Oxide (Paste)', '19033354', 'Petrolatum', 'f830a0e4-dba5-4a5f-af35-3832ec70d4d3', '4/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3279, 'PEXEVA (Oral Pill)', '722031', 'Paroxetine', '6c4d4603-190a-496f-a40f-bc09853b9820', '7/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3280, 'PFIZERPEN (Injectable)', '1728416', 'Penicillin G', 'efef4846-9497-41af-8dd6-518f86eca7f2', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3281, 'PHAZYME (Oral Pill)', '966991', 'Simethicone', '740fd60b-ebb8-493b-aadb-55eee80f09fe', '12/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3282, 'PHENADOZ (Rectal)', '1153013', 'Promethazine', 'c293895b-1010-4283-9228-1184f01a0ef0', '12/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3283, 'PHENAZO (Oral Pill)', '933724', 'Phenazopyridine', '78506c63-8061-499c-a57e-bdd88f805591', '2/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3284, 'Phenazopyridine (Oral Pill)', '933724', 'Phenazopyridine', 'efabc3b6-395b-4a39-8e46-01240f26e016', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3285, 'Phendimetrazine (Oral Pill)', '723344', 'phendimetrazine', '112cbc20-15ab-5ac1-e054-00144ff8d46c', '3/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3286, 'Phenelzine (Oral Pill)', '733896', 'Phenelzine', 'afd48e96-a64e-4e5a-ba21-504a53855397', '10/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3287, 'PHENERGAN (Injectable)', '1153013', 'Promethazine', '6f7e47cc-f823-4336-8107-f980e3049617', '10/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3288, 'PHENERGAN (Rectal)', '1153013', 'Promethazine', 'd24e400d-e781-a0a4-b629-e99c32736b8a', '8/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3289, 'PHENobarbital (Oral Liquid)', '734275', 'Phenobarbital', 'ff602c63-870a-4a32-b14e-27dbfb34151f', '3/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3290, 'PHENobarbital (Oral Pill)', '734275', 'Phenobarbital', '1c97b14f-b6a9-4f34-891c-f84280729a89', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3291, 'Phenol (Mucosal)', '923540', 'phenol', '74122093-83c0-4049-a2c8-fb557dacc7c5', '7/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3292, 'Phenol (Oral Lozenge)', '923540', 'phenol', '6f4402aa-3f6e-4469-b512-868dba734d2b', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3293, 'Phenol (Topical)', '923540', 'phenol', '3e7d3299-dad2-401d-a81c-5653f44de3ba', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3294, 'Phentermine (Oral Pill)', '735340', 'Phentermine', 'efa6398d-fd9c-48f4-a91f-5a91b4ae5b5e', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3295, 'Phentermine XR (Oral Pill)', '735340', 'Phentermine', '7ca86c66-409b-4852-8631-c3ada6e60738', '2/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3296, 'Phentolamine (Injectable)', '1335539', 'Phentolamine', '4025cf98-ea87-4531-b0fc-6283c84f63f3', '6/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3297, 'Phenylbutazone (Injectable)', '1135710', 'Phenylbutazone', '340d310d-7987-4f9c-ae39-eab2340d8f74', '4/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3298, 'Phenylbutyrate (Oral Pill)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3299, 'Phenylbutyrate (Oral Powder)', '1539954', 'phenylbutyrate', 'aa638c13-3048-42b2-8a8b-79dae040ea35', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3300, 'Phenylephrine (Injectable)', '1135766', 'Phenylephrine', '1651c487-5454-49f7-af45-71bfb9c9c56b', '9/20/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3301, 'Phenylephrine (Nasal)', '1135766', 'Phenylephrine', '887562bf-1b9d-4980-8859-5d8d8a723994', '6/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3302, 'Phenylephrine (Ophthalmic)', '1135766', 'Phenylephrine', 'a4d3fe20-f063-11e0-ac29-0002a5d5c51b', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3303, 'Phenylephrine (Oral Liquid)', '1135766', 'Phenylephrine', '4dfd46e4-b9f9-464d-aa47-e8fa9e526a5d', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3304, 'Phenylephrine (Oral Pill)', '1135766', 'Phenylephrine', '22feef40-6b75-48a9-827c-f7925cf1f695', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3305, 'Phenylephrine (Rectal)', '1135766', 'Phenylephrine', 'a95c678f-84f7-13db-f5b5-05d4d8761fc4', '2/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3306, 'Phenylephrine/Pramoxine (Rectal)', '1135766', 'Phenylephrine', 'e144fb04-db3c-4e22-9c9f-8378c7f0ce1f', '2/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3307, 'Phenylephrine/Promethazine (Oral Liquid)', '1135766', 'Phenylephrine', '1ed2a01c-6521-451e-819f-7464562314a3', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3308, 'Phenylephrine/Pyrilamine (Oral Liquid)', '1135766', 'Phenylephrine', '1089fc64-2296-4c80-a0db-efd50e693a25', '12/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3309, 'Phenylephrine/Pyrilamine (Oral Pill)', '1135766', 'Phenylephrine', 'fd6ab993-d4ca-490b-a07c-61b0910ea657', '10/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3310, 'Phenylephrine/Thonzylamine (Oral Liquid)', '1135766', 'Phenylephrine', '5e133352-255f-41cc-aacc-0508d634368d', '4/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3311, 'Phenylephrine/Triprolidine (Oral Liquid)', '1135766', 'Phenylephrine', '26c2117e-804e-4132-8707-fc0302fb9090', '3/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3312, 'Phenylephrine/Witch Hazel (Rectal)', '1135766', 'Phenylephrine', '126d0cf5-4619-45c5-88dc-7028a11787fb', '11/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3313, 'PHENYLHISTINE DH (Oral Liquid)', '1192710', 'Chlorpheniramine', '6ca7c4ff-ba0d-490f-b8b8-9518955424e1', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3314, 'PHENYTEK XR (Oral Pill)', '740910', 'Phenytoin', 'fc10b6de-3dbd-4f8a-8049-def272d0a2f1', '7/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3315, 'Phenytoin (Chewable)', '740910', 'Phenytoin', '708599c8-6d55-4765-94b6-0c8229dd1379', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3316, 'Phenytoin (Oral Liquid)', '740910', 'Phenytoin', '9ce9adc8-6fa2-4444-8386-14cd576ac63d', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3317, 'Phenytoin (Oral Pill)', '740910', 'Phenytoin', 'a0663e35-fb54-4267-81eb-a7165be54465', '8/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3318, 'Phenytoin XR (Oral Pill)', '740910', 'Phenytoin', 'f46729db-f841-4bfc-8a29-7a09a48fc9d6', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3319, 'PHISOHEX (Soap)', '1768734', 'Hexachlorophene', 'e9c6f5b4-8374-491a-9b7c-fe008f20e3d1', '7/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3320, 'PHOS-FLUR (Mouthwash)', '19069022', 'Sodium Fluoride', '84de9ca9-7959-4d5f-9bb0-884cee1b8038', '7/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3321, 'PHOS-FLUR (Toothpaste)', '19069022', 'Sodium Fluoride', '540306ab-083a-4129-9c66-7ff5e425d9dc', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3322, 'PHOSLO (Oral Pill)', '951469', 'calcium acetate', '34a29fae-b549-41ed-bd7d-e98fe2110bef', '8/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3323, 'PHOSPHOLINE IODIDE (Ophthalmic)', '958368', 'Echothiophate', 'c4adbc81-6681-4e12-f8ab-5d1cb7723aad', '12/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3324, 'PHOTOFRIN (Injectable)', '19089602', 'Dihematoporphyrin Ether', '5c4841b4-fbc0-4163-8ee1-cb28629cbfbf', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3325, 'Physostigmine (Injectable)', '19044337', 'Physostigmine', 'b81350a6-715b-451c-87e9-3674ec29ffd8', '10/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3326, 'Pignut hickory pollen extract (Injectable)', '40172636', 'pignut hickory pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3327, 'Pilocarpine (Ophthalmic)', '945286', 'Pilocarpine', 'd87192c5-c6b4-4d56-95b1-bb242afed3c1', '4/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3328, 'Pilocarpine (Oral Pill)', '945286', 'Pilocarpine', '610022b7-7dc9-405a-a580-104657f43bdf', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3329, 'Pimecrolimus (Topical)', '915935', 'Pimecrolimus', 'e4027e5a-0f9b-4070-b196-f60172f45c4c', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3330, 'Pimozide (Oral Pill)', '745790', 'Pimozide', 'fd9729c3-545f-4d34-9bc7-72b61e028fc4', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3331, 'Pin oak pollen extract (Injectable)', '40172640', 'pin oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3332, 'PIN-X (Chewable)', '1759270', 'Pyrantel', '8c37db7c-a73e-4d99-a8a9-d55da1a74a3e', '12/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3333, 'Pindolol (Oral Pill)', '1345858', 'Pindolol', '07fe9cc3-1ef2-420c-b45d-7f1e894b6ef9', '10/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3334, 'Pioglitazone (Oral Pill)', '1525215', 'pioglitazone', 'd2ddc491-88a9-4063-9150-443b4fa4330c', '5/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3335, 'Piperacillin (Injectable)', '1746114', 'Piperacillin', 'fac0c875-111e-4af2-d186-ed4d4ee9de59', '5/22/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3336, 'Piperacillin/Tazobactam (Injectable)', '1746114', 'Piperacillin', '7b3ba6b9-59e1-454a-9ddc-ab3592221627', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3337, 'Piperonyl Butoxide/Pyrethrins (Shampoo)', '946340', 'Piperonyl Butoxide', '4954a3f2-8d27-4955-ab88-2518b8a05252', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3338, 'Piperonyl Butoxide/Pyrethrins (Topical)', '946340', 'Piperonyl Butoxide', '7509990f-0bc8-44dc-9678-05b27f2c1368', '9/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3339, 'PIPRACIL (Injectable)', '1746114', 'Piperacillin', 'fac0c875-111e-4af2-d186-ed4d4ee9de59', '5/22/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3340, 'Piroxicam (Oral Pill)', '1146810', 'Piroxicam', '6047dd25-8419-42ce-bd58-9e568ae7b50f', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3341, 'Pitavastatin (Oral Pill)', '40165636', 'pitavastatin', '44dcbf97-99ec-427c-ba50-207e0069d6d2', '10/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3342, 'Pitch pine pollen extract (Injectable)', '40172710', 'pitch pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3343, 'PITOCIN (Injectable)', '1326115', 'Oxytocin', '969d5b35-0add-4c23-9605-6a5b6ab65c95', '11/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3344, 'Plains cottonwood pollen extract (Injectable)', '40167516', 'plains cottonwood pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3345, 'PLAN B ONE-STEP (Oral Pill)', '1589505', 'Levonorgestrel', 'e53e3f9a-d359-4c5a-aceb-d002ed367849', '12/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3346, 'PLAQUENIL (Oral Pill)', '1777087', 'Hydroxychloroquine', '631ed616-f23c-43c9-b63b-f53707c077cb', '7/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3347, 'PLASBUMIN (Injectable)', '1344143', '"Albumin Human, USP"', '5b334e41-5297-540c-5fc1-cd7b845c5685', '4/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3348, 'Plasma protein fraction (Injectable)', '19025693', 'plasma protein fraction', '679bbaf2-b082-5948-8400-ece5340eabc1', '5/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3349, 'PLASMA-LYTE 56 (Injectable)', '19013986', 'magnesium acetate', '94c12711-d672-450d-baae-06e24a72aace', '9/28/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3350, 'PLASMA-LYTE 56 IN 5 % DEXTROSE (Injectable)', '1560524', 'Glucose', '85c08b62-8de0-42d2-8cdc-fe42e6b605d7', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3351, 'PLASMANATE (Injectable)', '19025693', 'plasma protein fraction', '679bbaf2-b082-5948-8400-ece5340eabc1', '5/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3352, 'PLAVIX (Oral Pill)', '1322184', 'clopidogrel', '10360cf0-1671-3cbe-cd7c-2c8e8753bd1b', '3/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3353, 'Pleospora herbarum extract (Injectable)', '40176165', 'Pleospora herbarum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3354, 'Plerixafor (Injectable)', '19017581', 'Plerixafor', '0ed08d2b-5051-46b2-aa37-1d6275bf9003', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3355, 'PLETAL (Oral Pill)', '1350310', 'cilostazol', '24d75b58-bafb-4440-b8d7-4f4079c08b0b', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3356, 'PLEXION (Soap)', '1036252', 'Sulfacetamide', '817a486f-7668-42fa-8f7c-d67ffc647da5', '5/13/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3357, 'PLEXION (Topical)', '1036252', 'Sulfacetamide', 'f4ad79c1-bdac-40aa-af75-476826c7f009', '5/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3358, 'PLURATUSS (Oral Liquid)', '1130863', 'Brompheniramine', '08fb676a-9df6-435f-90f1-9b0b2de453ce', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3359, 'Podofilox (Topical)', '947705', 'podofilox', '6af07697-5203-43e0-ba35-83683af851c3', '3/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3360, 'Polidocanol (Injectable)', '40175900', 'polidocanol', 'dfd6b4a0-b0dc-11e2-9e96-0800200c9a66', '3/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3361, 'POLOCAINE (Injectable)', '702774', 'Mepivacaine', '007fcf17-f78a-40a7-d494-af93bbb40032', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3362, 'POLY HIST CB (Oral Liquid)', '1140640', 'carbetapentane', 'c3a1a47a-27ce-4565-9d6a-a2d8314357a6', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3363, 'POLY HIST FORTE REFORMULATED NOV 2013 (Oral Pill)', '1192710', 'Chlorpheniramine', '8f6622e1-b40d-4d1c-9322-463775728a25', '2/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3364, 'POLY HIST NC (Oral Liquid)', '1201620', 'Codeine', '96a2f945-bace-431e-8fd6-d73a6dc1baea', '3/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3365, 'POLY HIST PD (Oral Liquid)', '1192710', 'Chlorpheniramine', '8728160d-6172-4f4e-b512-46f5d9bca733', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3366, 'POLY TUSSIN EX (Oral Liquid)', '1189596', 'dihydrocodeine', 'a3d94294-e66b-4384-9e9a-489a98bd5964', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3367, 'POLYCIN-B (Ophthalmic)', '915175', 'Bacitracin', '7eee57e9-b09c-4316-add2-66b5b06b6e79', '7/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3368, 'POLYETHYLENE GLYCOL 3350 (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', 'bcd57d3c-e1c4-474f-a757-ca89b020278b', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3369, 'POLYETHYLENE GLYCOL 3350/Potassium Chloride/Sodium Bicarbonate/Sodium Chloride (Oral Liquid)', '986417', 'POLYETHYLENE GLYCOL 3350', '444c83ae-ac3a-467c-be05-e2bcbfbaaba1', '3/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3370, 'Polyethylene Glycol 400 (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '10fcf407-6eaf-4730-9ed0-9b7715cf5701', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3371, 'Polyethylene Glycol 400/Propylene glycol (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '46288fea-f448-4a9e-b3da-f9fc54614ffd', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3372, 'Polyethylene Glycol 400/Tetrahydrozoline (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '36136ce4-9d66-4e56-bd51-0616a79a42a7', '2/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3373, 'Polymyxin B (Injectable)', '948582', 'Polymyxin B', '805caef0-89df-4bcf-876d-9f6b7a89c9a3', '4/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3374, 'Polymyxin B/Trimethoprim (Ophthalmic)', '948582', 'Polymyxin B', '1a01d41b-3da1-4938-9e71-499320c72dd2', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3375, 'Polysaccharide iron complex (Oral Liquid)', '1300751', 'Polysaccharide iron complex', '17cd83ec-8779-45f9-8c8d-0aaa8c7b9b42', '1/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3376, 'Polysaccharide iron complex (Oral Pill)', '1300751', 'Polysaccharide iron complex', '968c74e0-0510-4a0e-add2-37af97fc6928', '3/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3377, 'Polysorbate 80 (Ophthalmic)', '948760', 'Polysorbate 80', 'dbb0d312-c79a-4c89-acb1-b895b52c05d5', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3378, 'POLYSPORIN (Topical)', '915175', 'Bacitracin', 'dd7aceb6-0666-4059-b2a9-8e7fe5f3f0ac', '7/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3379, 'Polythiazide/Reserpine (Oral Pill)', '948787', 'Polythiazide', 'b503fa5e-5726-426d-867c-e8fe59ed3ead', '10/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3380, 'Polyvinyl Alcohol (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '556e7de7-e0ae-4ddb-a190-599238355443', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3381, 'Polyvinyl Alcohol/Povidone (Ophthalmic)', '948856', 'Polyvinyl Alcohol', 'ecaa0eba-1662-4394-b26f-a765f422dcea', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3382, 'Polyvinyl Alcohol/Povidone/Tetrahydrozoline (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '9b5a7220-33ae-4bee-b7d3-65cf2ef86c88', '11/17/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3383, 'Pomalidomide (Oral Pill)', '43014237', 'pomalidomide', '2b25ef01-5c9e-11e1-b86c-0800200c9a66', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3384, 'POMALYST (Oral Pill)', '43014237', 'pomalidomide', '2b25ef01-5c9e-11e1-b86c-0800200c9a66', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3385, 'Ponatinib (Oral Pill)', '43013182', 'ponatinib', '807f988e-117b-4497-934d-73aa78baac71', '10/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3386, 'Post oak pollen extract (Injectable)', '40172774', 'post oak pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3387, 'Potassium Acetate (Injectable)', '19076414', 'Potassium Acetate', '0f2af08c-8dbb-46ce-9582-13239a47b546', '7/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3388, 'Potassium bicarbonate (Effervescent)', '19027080', 'potassium bicarbonate', '98c778f9-5a3d-4b4f-9c9e-8a5f0b84b2a6', '3/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3389, 'Potassium bitartrate/Sodium Bicarbonate (Rectal)', '19086788', 'Potassium bitartrate', 'd868de56-ac3b-4e44-8aa5-031661f0ac25', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3390, 'Potassium Chloride (Effervescent)', '19049105', 'Potassium Chloride', 'd5a02700-b888-43b0-85c5-ac8938438c9e', '4/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3391, 'Potassium Chloride (Injectable)', '19049105', 'Potassium Chloride', '7c390c7c-1a1d-4f8a-a83b-097179278b2a', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3392, 'Potassium Chloride (Oral Liquid)', '19049105', 'Potassium Chloride', 'bae3548f-40fe-4ef5-adb3-eb4cef6f735d', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3393, 'Potassium Chloride XR (Oral Pill)', '19049105', 'Potassium Chloride', '74883ca9-e9cf-4556-929d-72c53f0478ac', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3394, 'Potassium Chloride/Sodium Chloride (Injectable)', '19049105', 'Potassium Chloride', 'becc7410-0a25-49f5-b0c3-240078479dc8', '11/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3395, 'Potassium citrate XR (Oral Pill)', '976545', 'potassium citrate', '2215dc1d-0b5a-469e-9b51-4d7480a51078', '11/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3396, 'Potassium gluconate (Oral Pill)', '19059547', 'Potassium gluconate', '10e2e633-9bc5-41d7-89ab-a10a928e89ce', '1/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3397, 'Potassium Iodide (Oral Pill)', '19049909', 'Potassium Iodide', '566c8453-bae5-4f96-bc82-30d4543c9895', '4/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3398, 'Potassium nitrate (Oral Strip)', '927322', 'potassium nitrate', 'ac99f344-f0a7-4502-a06f-888a1b382edd', '10/5/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3399, 'Potassium nitrate/Silver Nitrate (Topical)', '927322', 'potassium nitrate', 'b7634e27-3c75-4e56-ab42-3e5796edb0c7', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3400, 'Potassium nitrate/Sodium Fluoride (Toothpaste)', '927322', 'potassium nitrate', '1b6618ea-6533-41d7-be2c-13bb9e108dc5', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3401, '"Potassium phosphate/Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Oral Pill)"', '19027362', 'potassium phosphate', '83376725-ee0f-40ad-bd90-31a61b9445cf', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3402, '"Potassium phosphate/Sodium Phosphate, Monobasic (Oral Pill)"', '19027362', 'potassium phosphate', '9f446400-c403-4971-879e-1341f7f7d9da', '10/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3403, 'Povidone-Iodine (Ophthalmic)', '1750087', 'Povidone-Iodine', 'b026de1b-9949-4557-ac49-c7b0038c24cd', '7/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3404, 'Povidone-Iodine (Soap)', '1750087', 'Povidone-Iodine', '4779974e-c149-489d-9cce-a0e9e0e921c9', '7/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3405, 'Povidone-Iodine (Topical)', '1750087', 'Povidone-Iodine', '6ebacffc-e42c-4e8a-a87c-684881460742', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3406, 'Povidone-Iodine (Vaginal)', '1750087', 'Povidone-Iodine', 'ebd9aa34-6b66-4645-bbaa-51e087b54bbd', '4/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3407, 'PRADAXA (Oral Pill)', '40228152', 'dabigatran etexilate', '5db7f199-8752-4d24-85f7-e34ca8f4d02e', '4/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3408, 'Pralidoxime (Injectable)', '1727468', 'pralidoxime', '2741d8fd-51c2-46be-880b-99f2b20a6137', '12/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3409, 'PRAMEGEL REFORMULATED APR 2012 (Topical)', '901656', 'Menthol', '848cfd76-aa0a-427b-959f-66d2cf5f9a34', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3410, 'Pramipexole (Oral Pill)', '720810', 'Pramipexole', '04bf2b80-5371-4641-bbf5-e19587c0e9cf', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3411, 'PRAMOSONE (Topical)', '975125', 'Hydrocortisone', 'f55fbf9a-cfab-4612-ba40-140e1339ca00', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3412, 'Pramoxine (Rectal)', '927478', 'pramoxine', '0494f952-de65-49d8-a8a6-5ee5abd53619', '6/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3413, 'Pramoxine (Soap)', '927478', 'pramoxine', 'c0cd4ef5-860f-4035-9f91-fe4f78c33ae2', '6/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3414, 'Pramoxine (Topical)', '927478', 'pramoxine', 'cb1d2724-dfaa-4c70-8222-124f9db14488', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3415, 'Pramoxine/Zinc Acetate (Topical)', '927478', 'pramoxine', '95a66433-6a68-4f3c-9aaa-4d27443aa7e5', '6/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3416, 'Pramoxine/Zinc Oxide (Rectal)', '927478', 'pramoxine', '0d5ba4f1-1178-490d-8524-143d0aa2f0ef', '3/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3417, 'PRANDIMET (Oral Pill)', '1503297', 'Metformin', '5be33711-b77d-4a01-87c8-3b2618c16e8f', '5/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3418, 'PRANDIN (Oral Pill)', '1516766', 'repaglinide', 'e2a07020-a596-4282-bb7c-c9ebe6edcd61', '5/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3419, 'PRASCION (Soap)', '1036252', 'Sulfacetamide', 'c3aeca7e-4b7d-431c-a0c9-f7f5b05ad5a8', '8/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3420, 'PRASCION (Topical)', '1036252', 'Sulfacetamide', '49052371-e1d6-4665-b82e-442bdf4b177d', '12/27/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3421, 'Prasugrel (Oral Pill)', '40163718', 'prasugrel', 'cb684ad9-0b72-406f-8a07-a419254ccd36', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3422, 'PRAVACHOL (Oral Pill)', '1551860', 'Pravastatin', '897ad8b7-921d-eb02-a61c-3419e662a2da', '10/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3423, 'Pravastatin (Oral Pill)', '1551860', 'Pravastatin', '88295e57-9167-48a0-b52f-6ec9cef61109', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3424, 'PRAX (Topical)', '927478', 'pramoxine', '35ca8ff5-79da-4e7c-be71-91d7b8a6d977', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3425, 'Praziquantel (Oral Pill)', '1750461', 'Praziquantel', '34ce1cdd-648e-4f1e-8512-bf3d4cc22eb9', '7/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3426, 'Prazosin (Oral Pill)', '1350489', 'Prazosin', '14a764d2-6142-443e-9598-414f11cbb627', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3427, 'PRECOSE (Oral Pill)', '1529331', 'Acarbose', 'e2158832-ad0b-4b9c-bbf0-1608a177bf85', '3/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3428, 'PRED FORTE (Ophthalmic)', '1550557', 'prednisolone', '00a5aa88-e361-4ea7-8922-530c738b726e', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3429, 'PRED MILD (Ophthalmic)', '1550557', 'prednisolone', '90fba723-51b1-4404-a30b-816f35001d91', '5/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3430, 'Prednicarbate (Topical)', '928110', 'prednicarbate', 'ccc7985a-da29-475f-8a53-0f76ba20b86d', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3431, 'prednisoLONE (Ophthalmic)', '1550557', 'prednisolone', 'dbcab023-8a71-4c66-ac6b-b98b20a493f9', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3432, 'prednisoLONE (Oral Disintegrating)', '1550557', 'prednisolone', '1e379543-c4cf-4e72-953b-db15b7f0c2a1', '12/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3433, 'prednisoLONE (Oral Liquid)', '1550557', 'prednisolone', '9f4b181e-2675-40c6-a3d7-a8fe671230c1', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3434, 'prednisoLONE (Oral Pill)', '1550557', 'prednisolone', 'b8fadaec-9985-4f17-9b2f-b2f6a28cae1c', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3435, 'PrednisoLONE/Sulfacetamide (Ophthalmic)', '1550557', 'prednisolone', 'e5a2f3a5-2b9d-4d02-ad5c-e6a890569363', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3436, 'predniSONE (Oral Pill)', '1551099', 'Prednisone', 'd3abe47f-8ad5-4752-b772-97b56cca19f2', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3437, 'Pregabalin (Oral Pill)', '734354', 'pregabalin', '59cf1b6b-eaae-4bd8-abca-8e68aeb30ee6', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3438, 'PREGNYL (Injectable)', '1563600', 'Chorionic Gonadotropin', 'dc604794-6dd6-43a7-85fa-2f04ed325c33', '4/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3439, 'PREMARIN (Oral Pill)', '1549080', '"Estrogens, Conjugated (USP)"', '701acf2c-fffe-451a-9b94-82d825e5a47c', '5/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3440, 'PREMSYN PMS (Oral Pill)', '1125315', 'Acetaminophen', 'ce280f7d-ca22-473d-b276-de44933e7957', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3441, 'PREPARATION H COOLING GEL (Rectal)', '1135766', 'Phenylephrine', 'cebee3f7-8591-e4f7-e66a-e43b4ba3aaf4', '4/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3442, 'PREPARATION H MEDICATED WIPES (Topical)', '959196', 'Witch Hazel', '1953ec64-20ce-488b-8f14-44e15cc9e720', '3/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3443, 'PREPARATION H REFORMULATED JUN 2013 (Rectal)', '908523', 'Mineral Oil', 'ce789c2a-1d38-4c5f-923e-9d4dab751c01', '7/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3444, 'PREVACID (Oral Disintegrating)', '929887', 'lansoprazole', '7140f8d9-e478-4f69-a4eb-3fd4c9414576', '7/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3445, 'PREVACID (Oral Pill)', '929887', 'lansoprazole', '2f4c571b-a27e-40ef-b0cd-e6e44ac9a15e', '1/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3446, 'PREVIDENT (Toothpaste)', '19069022', 'Sodium Fluoride', '5b67ae9e-129a-43ab-8eca-d4a38fbbfcf6', '9/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3447, 'PREVIDENT 5000 SENSITIVE (Toothpaste)', '927322', 'potassium nitrate', 'b028cfff-4946-49e8-b8bb-197ab99d0d35', '7/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3448, 'PREVIDENT DENTAL RINSE (Mouthwash)', '19069022', 'Sodium Fluoride', '714c38d1-e018-47a2-9160-6c79ee8c2dc5', '9/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3449, 'PREZISTA (Oral Pill)', '1756831', 'darunavir', '69b6f72d-fe6b-4347-8801-99ece7e2a29b', '5/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3450, 'PriLOSEC (Oral Pill)', '923645', 'Omeprazole', 'd970b074-957a-4036-92d3-1712386f3858', '2/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3451, 'PRIMACOR (Injectable)', '1368671', 'Milrinone', '2a0a2d3a-1900-4c73-89c5-c4bde1b61553', '5/22/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3452, 'Primaquine (Oral Pill)', '1751310', 'Primaquine', '222f3d0a-7649-44ad-99b2-b2dc8c298e7b', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3453, 'PRIMATENE (Oral Pill)', '1143374', 'Ephedrine', '9005482c-25ae-d365-33d1-29269532c74d', '2/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3454, 'PRIMAXIN (Injectable)', '1797258', 'Cilastatin', '7aa0ce90-156c-4583-ae6d-9ed3595960c8', '4/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3455, 'Primidone (Oral Pill)', '751347', 'Primidone', 'a90d5ba6-4170-0b97-5ae3-fc707c9e4f1b', '8/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3456, 'PRIMLEV (Oral Pill)', '1125315', 'Acetaminophen', '94679f29-d63a-41a5-bdda-3aa3fc2db531', '3/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3457, 'PRIMSOL (Oral Liquid)', '1705674', 'Trimethoprim', 'a06ea7d8-a884-4b62-a87f-c36d824f2aa4', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3458, 'Privet pollen extract (Injectable)', '40162001', 'privet pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3459, 'PRIVINE (Nasal)', '914533', 'Naphazoline', 'ec2bb7d7-d014-46ed-a836-453e921da4c5', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3460, 'PROAMATINE (Oral Pill)', '1308368', 'Midodrine', '171543e7-a592-4676-88ef-d68f14701d13', '12/8/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3461, 'Probenecid (Oral Pill)', '1151422', 'Probenecid', '8459857e-1a52-45de-81e6-e06ce18508bb', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3462, 'Procainamide (Injectable)', '1351461', 'Procainamide', 'dfd657ec-aaf5-4f9e-85d0-0a2a081ceaf7', '6/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3463, 'Procaine (Injectable)', '751698', 'Procaine', '999625d5-3a6b-4753-059a-4f19d04c85a5', '9/14/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3464, 'PROCARDIA (Oral Pill)', '1318853', 'Nifedipine', 'e04aa152-b08d-47f7-b976-f8bee4c386db', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3465, 'PROCENTRA (Oral Liquid)', '719311', 'Dextroamphetamine', '1548cce2-fb6b-4f17-8a3b-868933f6c9d6', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3466, 'PROCHIEVE (Vaginal)', '1552310', 'Progesterone', '9f8dc923-65d7-42ff-b718-97e7a7e87822', '12/14/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3467, 'Prochlorperazine (Injectable)', '752061', 'Prochlorperazine', '328bcba6-a2f8-4216-8f6f-c40959fe8779', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3468, 'Prochlorperazine (Oral Pill)', '752061', 'Prochlorperazine', '718c6fee-77d5-4ba1-8a1d-f2ac059298b3', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3469, 'Prochlorperazine (Rectal)', '752061', 'Prochlorperazine', '9bdba30b-53b4-427a-af74-7a39b52130b2', '8/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3470, 'PROCOMYCIN (Topical)', '915175', 'Bacitracin', 'a08ffd2b-6c78-4a1a-9ca4-08a72900119d', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3471, 'PROCORT (Rectal)', '975125', 'Hydrocortisone', '9e899b72-a16e-4b55-93b5-ab5baec37d50', '4/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3472, 'PROCRIT (Injectable)', '1301125', 'Epoetin Alfa', '9bbe9a5b-ad1d-41a4-9699-ff6dc776bce1', '1/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3473, 'PROCTO-PAK (Rectal)', '975125', 'Hydrocortisone', 'a1148e9e-061c-4070-8059-68ffe3d3b20a', '6/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3474, 'PROCTOCORT (Rectal)', '975125', 'Hydrocortisone', 'a2e1222a-ab91-4382-a210-7dfdd6de1407', '2/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3475, 'PROCTOFOAM-HC (Rectal)', '975125', 'Hydrocortisone', '3831e931-ec0a-11e3-ac10-0800200c9a66', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3476, 'PROCTOSOL (Topical)', '975125', 'Hydrocortisone', '565284e7-4994-486b-8267-18bd166655ac', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3477, 'PROCTOZONE HC (Topical)', '975125', 'Hydrocortisone', 'fcd4747b-3c54-4b2f-a6bc-eafa0cf7016e', '6/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3478, 'PROCYSBI (Oral Pill)', '910888', 'Cysteamine', 'b7b6e290-5168-46dc-9e7f-5995420ec1c1', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3479, 'PRODERM (Topical)', '950933', 'Castor Oil', '6bf98ba3-d9f6-4872-8220-a1b403226223', '10/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3480, 'PRODRIN (Oral Pill)', '1125315', 'Acetaminophen', '1d157217-d307-423c-8f50-965b23881330', '8/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3481, 'PROFENAL (Ophthalmic)', '1036636', 'Suprofen', '8de2c303-5d99-46b6-ad6d-a4caadea3604', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3482, 'Progesterone (Injectable)', '1552310', 'Progesterone', '83cfc12e-75d1-4284-bcc3-beadcbd27171', '1/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3483, 'Progesterone (Oral Pill)', '1552310', 'Progesterone', '6e8d8c78-001b-00fb-6a03-3b4489198d25', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3484, 'Progesterone (Vaginal)', '1552310', 'Progesterone', '9f8dc923-65d7-42ff-b718-97e7a7e87822', '12/14/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3485, 'PROGLYCEM (Oral Liquid)', '1523280', 'Diazoxide', 'b16c7832-2fd9-49af-b923-1dc0d91fd6e2', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3486, 'PROGRAF (Oral Pill)', '950637', 'Tacrolimus', '1e56c550-1c2b-4177-8e49-26303e9e335f', '5/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3487, 'PROLENSA (Ophthalmic)', '1139179', 'bromfenac', '4e072537-f73c-4a96-a65f-e2805ce112d8', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3488, 'Promethazine (Injectable)', '1153013', 'Promethazine', 'ed16846a-b054-4625-b4e4-4a951e95c92e', '2/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3489, 'Promethazine (Oral Liquid)', '1153013', 'Promethazine', 'e5be207b-122b-490f-a0d6-841132e45180', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3490, 'Promethazine (Oral Pill)', '1153013', 'Promethazine', '0af133fc-a27d-4099-908a-0bdf7c64f22b', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3491, 'Promethazine (Rectal)', '1153013', 'Promethazine', '9aa7b3f2-4429-4a61-ad8e-876afb14cc45', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3492, 'PROMETHEGAN (Rectal)', '1153013', 'Promethazine', 'bf9d28d7-0ce1-48bb-85e8-48676e35069c', '8/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3493, 'PROMETRIUM (Oral Pill)', '1552310', 'Progesterone', 'cf73c385-5173-4b54-af23-069581c5d560', '9/1/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3494, 'PROMOLAXIN (Oral Pill)', '941258', 'Docusate', '9ff570c5-1d0e-47bb-aea2-347c7b24ca68', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3495, 'PRONTO PLUS (Shampoo)', '946340', 'Piperonyl Butoxide', '3cdec6f3-4da6-467f-96c3-c8941ff46b56', '2/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3496, 'Propafenone (Oral Pill)', '1353256', 'Propafenone', 'a7c8f090-c48c-44f7-9973-2cf4b491e35c', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3497, 'Proparacaine (Ophthalmic)', '929504', 'proparacaine', '37cde651-2549-43f3-97b9-cdc442a0aa7a', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3498, 'PROPECIA (Oral Pill)', '996416', 'Finasteride', '9e7329eb-39f1-4f84-a0bb-91daffaba1c3', '6/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3499, 'PROPEL (Implant)', '905233', 'Mometasone', '6befbf16-3f60-4ce8-94ec-5ce6a2b7f4e1', '1/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3500, 'Propofol (Injectable)', '753626', 'Propofol', 'e3105799-a4b6-f3f4-e6e2-b2b29bbdb538', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3501, 'Propoxyphene (Oral Pill)', '1153664', 'Propoxyphene', 'c6c48eee-240b-4425-8691-35462523652e', '10/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3502, 'Propranolol (Injectable)', '1353766', 'Propranolol', '87688f92-a620-437d-904a-25c19d4270c8', '4/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3503, 'Propranolol (Oral Liquid)', '1353766', 'Propranolol', 'b6f9dd2a-632b-87eb-70f0-b2064d7ed48a', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3504, 'Propranolol (Oral Pill)', '1353766', 'Propranolol', '6112d957-e39e-470d-9f66-0bce4b3455ee', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3505, 'Propylhexedrine (Nasal)', '954036', 'propylhexedrine', '03a8ef3c-a808-6208-e054-00144ff8d46c', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3506, 'Propylthiouracil (Oral Pill)', '1554072', 'Propylthiouracil', 'ff603c99-6620-4945-acdc-c9150b6f77d4', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3507, 'PROSTIN E2 (Vaginal)', '1329415', 'Dinoprostone', 'fae013fc-e199-43f3-86ef-66d34017c534', '10/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3508, 'PROSTIN VR (Injectable)', '1381504', 'Alprostadil', 'dea460fa-d05e-4191-8461-f185a711ad89', '8/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3509, 'Protamine Sulfate (USP) (Injectable)', '19054242', 'Protamine Sulfate (USP)', '8df0a819-9e1a-44ce-97a6-3ea82c867d44', '7/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3510, 'Protein C (Injectable)', '42801108', 'Protein C', '926914a9-78b2-40ea-b37d-2a55c09bf275', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3511, 'PROTONIX (Injectable)', '948078', 'pantoprazole', '3cde88e6-28f2-4cbe-8c3f-770b05cc0e1b', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3512, 'PROTONIX (Oral Granules)', '948078', 'pantoprazole', '189b7b6a-9717-44eb-b87b-fd3e985b2268', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3513, 'PROTONIX (Oral Pill)', '948078', 'pantoprazole', 'e6238767-90da-4176-8ac6-d71c2025dcb5', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3514, 'PROTOPAM (Injectable)', '1727468', 'pralidoxime', '2741d8fd-51c2-46be-880b-99f2b20a6137', '12/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3515, 'Protriptyline (Oral Pill)', '754270', 'Protriptyline', '700abc58-9362-4ef5-9d7a-dd3c4d364d0a', '7/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3516, 'PROVENGE (Injectable)', '40224095', 'sipuleucel-T', '8309b497-5d4e-4408-ac0c-2452c11c8a35', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3517, 'PROVIGIL (Oral Pill)', '710650', 'modafinil', '8b79d52e-e6e5-4aaf-8835-242c72d6ee38', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3518, 'PROzac (Oral Pill)', '755695', 'Fluoxetine', '4b8fcce1-abfc-4631-9975-9d66e178dab6', '2/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3519, 'PRUDOXIN (Topical)', '738156', 'Doxepin', '64311378-2da2-4835-a222-5df5204c59c2', '2/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3520, 'Prussian blue (Oral Pill)', '19095769', 'Prussian blue', 'baa68c79-5f3d-468a-a510-58b9e978cd50', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3521, 'PSEUDODINE C (Oral Liquid)', '1201620', 'Codeine', 'dd62a5eb-dd5a-4329-8696-07acb555af10', '3/20/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3522, 'Pseudoephedrine (Oral Liquid)', '1154332', 'Pseudoephedrine', '0ae49d7e-ceec-4ad6-a0b8-cb20237e2b70', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3523, 'Pseudoephedrine (Oral Pill)', '1154332', 'Pseudoephedrine', '5377d4dd-aad1-4820-bc05-e7dbb152c0f5', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3524, 'Pseudoephedrine/Triprolidine (Oral Liquid)', '1154332', 'Pseudoephedrine', 'b7c62fdd-5709-4023-9c30-6970de4ad2b3', '12/21/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3525, 'Pseudoephedrine/Triprolidine (Oral Pill)', '1154332', 'Pseudoephedrine', '7f1ff0eb-78e9-465d-9ec9-a900fe8bd9c4', '4/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3526, 'PSORCON (Topical)', '960988', 'Diflorasone', '29c78a72-3dde-493f-b6a2-f286bec1f09e', '8/6/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3527, 'PSORIASIN (Topical)', '1000995', 'Coal Tar', '33b9c589-5953-4c9f-bdd0-d827c3446240', '6/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3528, 'PSORIASIN WASH (Soap)', '964407', 'Salicylic Acid', '3153a8b5-c027-4254-a61b-0c376a38d0f6', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3529, 'Psyllium (Oral Liquid)', '957797', 'Psyllium', 'bb6f5b6a-5111-4e50-8897-74e8ab859cfd', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3530, 'Psyllium (Oral Pill)', '957797', 'Psyllium', 'ea99f870-428a-4d36-8d2d-0eca0240fb54', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3531, '"Psyllium/Sennosides, USP (Oral Pill)"', '957797', 'Psyllium', '3b5e5397-fe64-48c5-8607-47c0a0900953', '12/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3532, 'Pullularia extract (Injectable)', '40161386', 'Pullularia extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3533, 'PULMICORT (Inhalant)', '939259', 'Budesonide', '2e0fa140-85a0-42db-ba15-a068120076b4', '4/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3534, 'PULMOZYME (Inhalant)', '1125443', 'Dornase Alfa', 'd8c78a7e-ff99-48f3-8952-643ec2ea0f86', '1/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3535, 'PURALUBE (Ophthalmic)', '908523', 'Mineral Oil', '6a4a2053-f947-4ce3-a885-a1c1465c8b0b', '8/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3536, 'Purified Protein Derivative of Tuberculin (Injectable)', '19058274', 'Purified Protein Derivative of Tuberculin', '96d91ba3-9dfe-4420-a835-57647ea30b40', '5/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3537, 'PYLERA (Oral Pill)', '958134', 'bismuth subcitrate', '7fe5d2db-c59d-4e15-acd7-f9df8eca45aa', '3/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3538, 'Pyrantel (Chewable)', '1759270', 'Pyrantel', '8c37db7c-a73e-4d99-a8a9-d55da1a74a3e', '12/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3539, 'Pyrantel (Oral Liquid)', '1759270', 'Pyrantel', '82a9fe66-7646-42cf-9be9-b9e181076e02', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3540, 'Pyrazinamide (Oral Pill)', '1759455', 'Pyrazinamide', 'dd5cde5a-4b8b-4b16-92f4-a4b77f5b4ba3', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3541, 'PYRIDIUM (Oral Pill)', '933724', 'Phenazopyridine', 'ae0f0808-51ed-43b9-86a3-b947c42da89f', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3542, 'Pyridostigmine (Oral Pill)', '759740', 'Pyridostigmine', '9448c360-0ce2-42fe-9f0c-50f2159e8483', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3543, 'Pyridostigmine XR (Oral Pill)', '759740', 'Pyridostigmine', '93454159-0c58-1980-34b9-4038a2260420', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3544, 'Pyridoxine (Oral Pill)', '19005046', 'pyridoxine', 'a524c0ff-4893-4df0-aaca-7f690b2bbb13', '7/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3545, 'Pyrimethamine (Oral Pill)', '1760039', 'Pyrimethamine', '3e4d5027-7939-480f-ae19-82e764d9fa97', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3546, 'QLEARQUIL ALLERGY RELIEF (Oral Pill)', '1107830', 'Loratadine', '486e5b2b-0456-4794-b263-004102f0795a', '4/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3547, 'QLEARQUIL DAYTIME SINUS & CONGESTION (Oral Pill)', '1125315', 'Acetaminophen', '119ee51b-6a7f-451b-bf69-ecb92c6a352b', '10/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3548, 'QLEARQUIL NASAL DECONGESTANT (Nasal)', '925636', 'Oxymetazoline', '9a10ca38-ac96-47ab-ab21-0519c034b8a3', '3/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3549, 'QUADRAMET (Injectable)', '1338558', 'SAMARIUM Sm153', '61e84808-0999-4923-910c-2a480d5f971a', '12/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3550, 'QUALAQUIN (Oral Pill)', '1760616', 'Quinine', 'ce2ffee3-3048-43a0-ac45-ee32ce0c4c33', '5/27/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3551, 'Quazepam (Oral Pill)', '731188', 'quazepam', '5d9472c0-e1df-4365-91c9-b54c7019fad3', '3/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3552, 'QUELICIN (Injectable)', '836208', 'Succinylcholine', 'c06156ae-b889-4250-bc85-1435b2635829', '6/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3553, 'QUESTRAN (Oral Liquid)', '19095309', 'Cholestyramine Resin', '362ddd91-a63f-4ec6-841a-75785dd208c8', '1/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3554, 'QUEtiapine (Oral Pill)', '766814', 'quetiapine', '03325ca1-4f51-41a1-92f3-ff7f96e01cc8', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3555, 'Quinapril (Oral Pill)', '1331235', 'quinapril', 'a2de05b9-d1aa-4fbb-a9a3-6918cc306f78', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3556, 'quiNIDine (Injectable)', '1360421', 'Quinidine', '11d14362-8f69-4c30-b487-5d05f6462bd7', '8/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3557, 'quiNIDine (Oral Pill)', '1360421', 'Quinidine', 'a90a03b0-ffbe-4cf6-90b5-bfb0412a1cb2', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3558, 'quiNIDine XR (Oral Pill)', '1360421', 'Quinidine', 'a08a0f0b-6cf5-4fa4-a861-0b054d6fddfc', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3559, 'quiNINE (Oral Pill)', '1760616', 'Quinine', '0b5bbefd-5b56-46f9-84f5-1456371577fd', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3560, 'QUIXIN (Ophthalmic)', '1742253', 'Levofloxacin', '09b3a912-97f9-45ae-a162-9f45c860dc22', '9/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3561, 'R-GENE 10 (Injectable)', '19006410', 'Arginine', '6accf33f-9841-4327-8923-93c42020ef12', '4/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3562, 'RABEprazole (Oral Pill)', '911735', 'rabeprazole', '5a1edab0-a602-4786-9ef5-40063f9efdb4', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3563, '"Rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated (Injectable)"', '544505', '"rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated"', 'ba8d4e72-f452-4859-ae6f-3644b4b0a78c', '9/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3564, 'Racepinephrine (Inhalant)', '1300153', 'Racepinephrine', '5c6d98fe-3e86-4816-92f2-49d38a432e39', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3565, 'RADIOGARDASE (Oral Pill)', '19095769', 'Prussian blue', 'baa68c79-5f3d-468a-a510-58b9e978cd50', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3566, 'RADIUM CHLORIDE RA-223 (Injectable)', '43526934', 'RADIUM CHLORIDE RA-223', 'a398400e-bd31-41a9-9696-4f7c06569ede', '5/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3567, 'RAGWITEK (Sublingual)', '40171301', 'short ragweed pollen extract', '986abfaf-67fc-47fb-8c86-d9f9cce6fa8b', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3568, 'Raloxifene (Oral Pill)', '1513103', 'Raloxifene', '7f4bd906-2af7-4f93-af23-6f13b0f5d868', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3569, 'Raltegravir (Oral Pill)', '1712889', 'raltegravir', 'e463b253-ad05-4e5c-8a3b-595d55c56ed7', '4/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3570, 'Ramelteon (Oral Pill)', '781182', 'ramelteon', '7a51d289-2013-4d37-adf2-91ea49df7932', '1/21/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3571, 'Ramipril (Oral Pill)', '1334456', 'Ramipril', '2dbd4a0a-09f6-4295-8852-613bd3a0fbfb', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3572, 'Ranibizumab (Injectable)', '19080982', 'ranibizumab', 'de4e66cc-ca05-4dc9-8262-e00e9b41c36d', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3573, 'Ranitidine (Injectable)', '961047', 'Ranitidine', '9268c1df-bcf3-4899-896d-044492802a33', '8/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3574, 'Ranitidine (Oral Liquid)', '961047', 'Ranitidine', 'dd7a6355-0341-4bce-a942-2a8bba3fb669', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3575, 'Ranitidine (Oral Pill)', '961047', 'Ranitidine', 'b8be814d-24ff-4b46-9b50-187aa1b4aaa0', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3576, 'RAPAMUNE (Oral Pill)', '19034726', 'Sirolimus', '0f26220a-f4ab-4ceb-9a98-a13dbdeed81f', '5/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3577, 'Rasagiline (Oral Pill)', '715710', 'rasagiline', 'eb558270-1b12-4704-9b09-39f668f30529', '12/23/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3578, 'RASH RELIEF ANTIBACTERIAL (Topical)', '915175', 'Bacitracin', 'f439fb97-0722-42ee-bc90-67daf0497aa8', '11/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3579, 'RASH RELIEF ANTIFUNGAL (Topical)', '916662', 'dimethicone', '4114c685-acd1-4c65-842b-1cb7840852dc', '11/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3580, 'RASH RELIEF CLEAR (Topical)', '916662', 'dimethicone', '0b5753aa-b591-4d6e-8341-fcc9456299b6', '11/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3581, 'RASH RELIEF WITH ZINC OXIDE (Topical)', '916662', 'dimethicone', '54d7250e-6aaa-4fc8-88b3-2fee58ebaf73', '11/7/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3582, 'RAYOS (Oral Pill)', '1551099', 'Prednisone', '281ab967-7565-4bef-9c0c-a646589c671e', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3583, 'RAZADYNE (Oral Pill)', '757627', 'Galantamine', 'e62efb5a-d2cc-4e11-9e61-10e65ef3d897', '2/24/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3584, 'REA LO (Topical)', '906914', 'Urea', '5fcff124-7709-4137-af94-539246e331f4', '9/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3585, 'REA-LO (Topical)', '906914', 'Urea', 'bac5d4a7-2819-48f4-a0de-00d1c2d5ed31', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3586, 'RECOMBINATE (Injectable)', '1352213', 'Factor VIII', '2a569ec5-08d7-44ab-b649-384a496e173c', '1/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3587, 'RECOTHROM (Topical)', '1300673', 'Thrombin', 'af304504-85af-87ba-edb6-9bf35985cba8', '5/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3588, 'RECTICARE (Rectal)', '989878', 'Lidocaine', '49cb48cf-7a26-4d7a-887f-2e98261d269d', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3589, 'RECTIV (Rectal)', '1361711', 'Nitroglycerin', 'af05dde8-1c06-4cd5-bcd0-8e318874536a', '10/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3590, 'Red mulberry pollen extract (Injectable)', '40161918', 'red mulberry pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3591, 'Red pine pollen extract (Injectable)', '40172530', 'red pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3592, 'Redberry juniper pollen extract (Injectable)', '40172534', 'redberry juniper pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3593, 'Redroot pigweed pollen extract (Injectable)', '40161926', 'redroot pigweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3594, 'Redtop grass pollen extract (Injectable)', '40161930', 'redtop grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3595, 'Redwood pollen extract (Injectable)', '40228820', 'redwood pollen extract', '3b904f52-6163-4095-a456-11b3018b227a', '12/15/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3596, 'REFENESEN (Oral Pill)', '1163944', 'Guaifenesin', '8a172972-d5dd-4c0e-8359-b5fd9edc96d8', '11/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3597, 'REFENESEN PE (Oral Pill)', '1163944', 'Guaifenesin', '5667fc64-88b5-4caa-87bb-f08808a1d35c', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3598, 'REFISSA (Topical)', '903643', 'Tretinoin', 'fda09c9d-efee-40dc-8030-065ceacd7a5c', '5/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3599, 'REFRESH DROPS (Ophthalmic)', '949279', 'Carboxymethylcellulose', 'cd467181-9d56-4b11-9826-15b5357d0689', '12/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3600, 'REFRESH LACRI-LUBE (Ophthalmic)', '908523', 'Mineral Oil', 'd232a44b-516d-4cdf-a4e7-c3a9a50dc7af', '6/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3601, 'REFRESH LIQUIGEL (Ophthalmic)', '949279', 'Carboxymethylcellulose', '4b8b2f6a-4b89-446c-9e5b-9b83c453a01d', '4/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3602, 'REFRESH LUBRICANT (Ophthalmic)', '948856', 'Polyvinyl Alcohol', '31bf1d6c-9719-4060-b6a3-409a2fe7b560', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3603, 'REFRESH OPTIVE SENSITIVE (Ophthalmic)', '949279', 'Carboxymethylcellulose', '7f8d88af-fd3b-4138-af61-f24c59ccebd7', '7/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3604, 'REFRESH PM (Ophthalmic)', '908523', 'Mineral Oil', '24365d64-cd94-41cc-a7e1-033102d98114', '8/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3605, 'REGENECARE (Topical)', '989878', 'Lidocaine', 'c3eec066-38e8-4617-b34d-2f72ffb7a324', '6/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3606, 'REGIMEX (Oral Pill)', '719128', 'Benzphetamine', '1a5d7233-4453-42a5-8144-a4276db39660', '3/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3607, 'REGITINE (Injectable)', '1335539', 'Phentolamine', '6db10859-2a3f-4782-ac33-94300463658f', '10/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3608, 'REGLAN (Oral Pill)', '906780', 'Metoclopramide', '55f1ee88-a455-44ba-b51a-2fcefe8eda65', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3609, 'REGRANEX (Topical)', '912476', 'Becaplermin', 'fd2c7d21-7b07-4ab3-8983-816ab3223771', '3/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3610, 'REGULOID (Oral Liquid)', '957797', 'Psyllium', 'f25f3b52-8ac4-4be5-8830-f0a50d19008b', '7/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3611, 'RELAGESIC (Oral Pill)', '1125315', 'Acetaminophen', '8f1bb6e5-3de5-48b4-bf44-d4e881be5ab0', '5/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3612, 'RELCOF C (Oral Liquid)', '1201620', 'Codeine', '357c9914-8d87-43d0-ba2f-516a0a455175', '3/9/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3613, 'RELPAX (Oral Pill)', '1189697', 'eletriptan', '6bb510c8-2ae2-4159-b4c6-0aec5e64b4c9', '3/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3614, 'REMBRANDT (Toothpaste)', '19069022', 'Sodium Fluoride', '11df694e-1594-4eb4-9318-05d6bab51335', '8/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3615, 'REMEDY ANTIFUNGAL (Topical)', '907879', 'Miconazole', 'c31bb2b7-f84b-4c58-8da9-78f3d305419d', '2/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3616, 'REMEDY ZINC SKIN PROTECTANT (Paste)', '19033354', 'Petrolatum', 'f830a0e4-dba5-4a5f-af35-3832ec70d4d3', '4/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3617, 'REMERON (Oral Pill)', '725131', 'Mirtazapine', '8feda54f-a3fa-4108-bfc4-c15b0eab4396', '2/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3618, 'REMEVEN (Topical)', '906914', 'Urea', 'f5e87f91-e355-4347-ae9b-f38b41802cf3', '5/11/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3619, 'Remifentanil (Injectable)', '19016749', 'remifentanil', 'dbc63b6e-f8c5-4fd0-8ec3-4f5e19125313', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3620, 'RENACIDIN (Irrigation)', '950435', 'Citric Acid', 'bdb3cef8-79c4-4322-9a21-c13123abe0cc', '3/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3621, 'RENAGEL (Oral Pill)', '952004', 'sevelamer', 'ee835dc1-36b7-4447-a5c6-5ed9e06a839d', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3622, 'RENESE-R (Oral Pill)', '948787', 'Polythiazide', 'b503fa5e-5726-426d-867c-e8fe59ed3ead', '10/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3623, 'RENOVA (Topical)', '903643', 'Tretinoin', '9f0a0e8d-1051-48a4-80c5-1bd260dd9c36', '8/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3624, 'RENVELA (Oral Pill)', '952004', 'sevelamer', '6178c669-a2e5-4a82-9ca2-7dfef56b63b9', '9/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3625, 'Repaglinide (Oral Pill)', '1516766', 'repaglinide', '457c2638-86cd-4afc-b562-eea925e9d42a', '6/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3626, 'REPREXAIN (Oral Pill)', '1174888', 'Hydrocodone', 'ae37a79e-ca8f-44d7-83a3-96cf2ebebedd', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3627, 'REQUIP (Oral Pill)', '713823', 'ropinirole', 'de0bb94f-4fd8-4f27-5ba6-6f392dd5160f', '9/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3628, 'RESCON TABLETS (Oral Pill)', '1188114', 'dexchlorpheniramine', '9d08d801-6cca-4a1c-ab53-5979f16e3110', '3/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3629, 'RESCON-GG (Oral Liquid)', '1163944', 'Guaifenesin', 'af378f6d-d506-47b0-8044-5e184ebc5d6a', '2/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3630, 'RESCRIPTOR (Oral Pill)', '1747157', 'Delavirdine', '992306f0-c612-41dd-a4df-35d1fd360033', '7/7/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3631, 'RESINOL (Topical)', '19033354', 'Petrolatum', '03f57a4a-f94b-4ba6-b709-41cfb6e16261', '1/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3632, 'Resorcinol/Sulfur (Topical)', '935390', 'resorcinol', 'd30564d2-c27f-44ce-ac21-e24b45acac81', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3633, 'RESPAIRE (Oral Pill)', '1163944', 'Guaifenesin', 'bd8e9558-235a-42f6-81c3-f3c80b2b235d', '11/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3634, 'RETAINE (Ophthalmic)', '949279', 'Carboxymethylcellulose', '6b40c38e-31f8-4aca-9456-04128e6c2e93', '10/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3635, 'RETAINE HPMC (Ophthalmic)', '902251', 'hypromellose', 'ba8f8be3-4641-bc28-2ec0-2ff9f4f9be9f', '6/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3636, 'Retapamulin (Topical)', '991003', 'retapamulin', '5da8f60f-c809-4161-a802-6fe823d532bb', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3637, 'RETAVASE (Injectable)', '19024191', 'Reteplase', 'e9ae6656-977c-4105-8528-bee664aab27a', '1/6/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3638, 'Reteplase (Injectable)', '19024191', 'Reteplase', 'e9ae6656-977c-4105-8528-bee664aab27a', '1/6/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3639, 'RETIN-A (Topical)', '903643', 'Tretinoin', '0ee4fccd-087f-4134-9b66-1d5186c116c0', '5/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3640, 'REVATIO (Oral Pill)', '1316262', 'sildenafil', 'f757f066-8288-4d6c-8c5e-2471007c7966', '8/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3641, 'REVONTO (Injectable)', '711714', 'Dantrolene', '0055d78a-9dc2-4267-8c9e-c3f2c98a66ff', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3642, 'REYATAZ (Oral Pill)', '1727223', 'Atazanavir', '025876b6-f031-43ea-967a-b1d95b4685a6', '2/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3643, 'REZAMID (Topical)', '935390', 'resorcinol', 'd02ace0b-7244-45d4-987f-eb569303a426', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3644, 'REZIRA (Oral Liquid)', '1174888', 'Hydrocodone', '7b873615-d90e-41a1-acc6-60f0526eeead', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3645, 'RHEUMATREX (Oral Pill)', '1305058', 'Methotrexate', '2cb70aa1-f73a-41c8-9a7f-edbcf1a06efd', '3/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3646, 'RI-MOX PLUS (Oral Liquid)', '985247', 'Aluminum Hydroxide', 'a21a94c5-7981-4cf9-af23-fc397b7ded1c', '4/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3647, 'RIASTAP (Injectable)', '19044986', 'fibrinogen concentrate (human)', '903dc8d0-39da-462c-9dac-004e0c7a26cc', '2/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3648, 'RIAX (Topical)', '918172', 'Benzoyl Peroxide', 'a585dbbe-a316-4183-bb6e-24a1b52966c3', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3649, 'Ribavirin (Oral Pill)', '1762711', 'Ribavirin', '3b8b0c65-e466-4662-9e85-5a253d31ebe8', '6/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3650, 'RIDAURA (Oral Pill)', '1114771', 'Auranofin', '05c34ddf-a0f7-4267-83f5-d02be3defc37', '12/15/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3651, 'Rifabutin (Oral Pill)', '1777417', 'Rifabutin', '4be9cc3f-0016-4426-a700-574b45ce245b', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3652, 'RIFADIN (Injectable)', '1763204', 'Rifampin', '036ab68e-5085-4edc-bd83-784b43d64eab', '7/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3653, 'RIFADIN (Oral Pill)', '1763204', 'Rifampin', '036ab68e-5085-4edc-bd83-784b43d64eab', '7/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3654, 'RIFAMATE (Oral Pill)', '1782521', 'isoniazid', '3cc36609-8e2d-4caa-a8e0-c0367e3e52df', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3655, 'Rifampin (Injectable)', '1763204', 'Rifampin', '6f03bb2a-1527-42c7-ab43-f4b4f789e69d', '9/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3656, 'Rifampin (Oral Pill)', '1763204', 'Rifampin', '26a2dbca-5090-4f6c-99ed-e11a70bb5af0', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3657, 'RIFATER (Oral Pill)', '1782521', 'isoniazid', '429a2f62-9fe6-4299-b314-92a9d22b1381', '4/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3658, 'Rifaximin (Oral Pill)', '1735947', 'rifaximin', '523f0320-cc73-445a-a48d-7a181c182307', '8/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3659, 'Rilonacept (Injectable)', '19023450', 'rilonacept', '282f4099-e848-432a-bac1-e041c192a5ba', '3/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3660, 'RILUTEK (Oral Pill)', '735951', 'Riluzole', 'e49d207d-8e32-4183-94ba-cd264f124090', '1/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3661, 'Riluzole (Oral Pill)', '735951', 'Riluzole', '4c851be4-f0d0-4b24-baf9-427ddfc6f7b0', '5/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3662, 'Rimantadine (Oral Liquid)', '1763339', 'Rimantadine', '9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', '7/19/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3663, 'Rimantadine (Oral Pill)', '1763339', 'Rimantadine', '49f7d69a-820b-4c75-a31d-b2104c019c12', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3664, 'RIMSO-50 (Irrigation)', '928980', 'Dimethyl Sulfoxide', '58b25d79-78f2-4953-b0c6-61658dc4ef0d', '6/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3665, 'Risedronate (Oral Pill)', '1516800', 'Risedronate', 'ef2dbc86-b4f5-4990-a83f-0b121cfe2ec1', '6/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3666, 'RisperDAL (Oral Pill)', '735979', 'Risperidone', 'ccb70f90-9ef1-4eac-925f-0178cacdac6b', '5/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3667, 'risperiDONE (Oral Disintegrating)', '735979', 'Risperidone', '7073b706-1946-4ff2-8788-fb9452a59cae', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3668, 'risperiDONE (Oral Liquid)', '735979', 'Risperidone', '5ceafd11-de77-4a91-9873-3ce0ae688397', '1/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3669, 'risperiDONE (Oral Pill)', '735979', 'Risperidone', '24a5d048-b351-4df5-89c8-f68147daba88', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3670, 'RITALIN (Oral Pill)', '705944', 'Methylphenidate', 'cd83fc91-47a3-4be4-9727-caf9ec0371e8', '1/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3671, 'Ritonavir (Oral Pill)', '1748921', 'Ritonavir', '624120b3-0a32-42a7-abfc-324e6b6c93df', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3672, 'Rivaroxaban (Oral Pill)', '40241331', 'Rivaroxaban', '10db92f9-2300-4a80-836b-673e1ae91610', '3/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3673, 'Rivastigmine (Oral Pill)', '733523', 'rivastigmine', '36b4f524-90e6-415c-8c0c-8983da2c7fd4', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3674, 'Rizatriptan (Oral Disintegrating)', '1154077', 'rizatriptan', '57ed2505-28f1-4292-b3c3-a49bf0f7c683', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3675, 'Rizatriptan (Oral Pill)', '1154077', 'rizatriptan', '2978b28c-91e1-4b17-9670-7b03717c1711', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3676, 'ROBAFEN (Oral Liquid)', '1163944', 'Guaifenesin', 'a925e169-a63d-4614-925e-e556daef9ec5', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3677, 'ROBAFEN AC (Oral Liquid)', '1201620', 'Codeine', 'e4bf6ada-e8b4-49e1-98aa-0fde1d0a7e47', '4/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3678, 'ROBAFEN COUGH (Oral Pill)', '1119510', 'Dextromethorphan', '9b6295c7-377b-4392-83b1-13018b0bc295', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3679, 'ROBAFEN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'c1c85b72-0883-4409-ba9c-d9f8d4f63825', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3680, 'ROBAXIN (Injectable)', '704943', 'Methocarbamol', '8f91e243-7395-4ec9-adf5-37520983daf2', '6/26/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3681, 'ROBAXIN (Oral Pill)', '704943', 'Methocarbamol', '5666ece8-9a10-4dcc-a7dc-3cd29df10e28', '5/15/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3682, 'ROBINUL (Injectable)', '963353', 'Glycopyrrolate', '3adddbd4-0b17-4312-83a2-a8420caf045e', '3/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3683, 'ROBINUL (Oral Pill)', '963353', 'Glycopyrrolate', 'bd65ee5e-2000-423c-b0a6-72eb213455c4', '9/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3684, 'ROBITUSSIN CHEST CONGESTION (Oral Liquid)', '1163944', 'Guaifenesin', '259c8b69-c625-4146-b888-34ef43b8385f', '3/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3685, 'ROBITUSSIN COUGH GELS (Oral Pill)', '1119510', 'Dextromethorphan', 'a19d233a-bc41-4603-dcbc-e15088045c2d', '6/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3686, 'ROBITUSSIN NIGHTTIME COUGH DM (Oral Liquid)', '1119510', 'Dextromethorphan', '598ea332-9cf3-403f-9fdc-991cbc62d744', '3/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3687, 'ROBITUSSIN PEAK COLD NASAL (Oral Pill)', '1125315', 'Acetaminophen', 'fb7e074d-4c4f-892e-f34e-13b9803fc436', '12/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3688, 'ROBITUSSIN PEDIATRIC COUGH & COLD LA (Oral Liquid)', '1192710', 'Chlorpheniramine', 'becb4025-b63e-f2ea-9d11-d51fdf4e5c13', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3689, 'ROBITUSSIN PEDIATRIC COUGH SUPPRESSANT (Oral Liquid)', '1119510', 'Dextromethorphan', '75bc7827-4439-e6a8-a65c-7154d5592e58', '10/2/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3690, 'ROCALTROL (Oral Liquid)', '19035631', 'Calcitriol', 'd1013494-bf62-4e68-9f0c-e6571137f20f', '10/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3691, 'ROCALTROL (Oral Pill)', '19035631', 'Calcitriol', 'd1013494-bf62-4e68-9f0c-e6571137f20f', '10/13/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3692, 'Rocuronium (Injectable)', '19003953', 'Rocuronium', '6ec8c417-6613-45e0-bc86-293a8b1ee83f', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3693, 'Roflumilast (Oral Pill)', '40236897', 'Roflumilast', 'c9a1d0a8-581f-4f91-a2b8-f419192d0ebf', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3694, 'ROGAINE (Topical)', '1309068', 'Minoxidil', '88f17a5a-a8e3-488a-8a96-8bd6f150c043', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3695, 'ROLAIDS REFORMULATED AUG 2006 (Chewable)', '19035704', 'Calcium Carbonate', '50aa27e4-00c9-477a-88c0-a10de1fa3f75', '6/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3696, 'ROMAZICON (Injectable)', '19055153', 'Flumazenil', '69049fa6-7dc4-4ae7-99f4-06839af06498', '9/13/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3697, 'romiDEPsin (Injectable)', '40168385', 'romidepsin', '6005c345-ccf9-4fff-8660-3fd73485b0d9', '1/4/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3698, 'rOPINIRole (Oral Pill)', '713823', 'ropinirole', 'de0bb94f-4fd8-4f27-5ba6-6f392dd5160f', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3699, 'Ropivacaine (Injectable)', '1136487', 'ropivacaine', '05b3b09e-e54c-4933-8913-5279d04b521d', '9/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3700, 'ROSADAN (Topical)', '1707164', 'Metronidazole', '99eaa138-0cfa-45e1-abbf-a88271707979', '4/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3701, 'Rosiglitazone (Oral Pill)', '1547504', 'rosiglitazone', 'dd8d7ec8-79b0-4152-8789-d247c77232ce', '6/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3702, 'Rosuvastatin (Oral Pill)', '1510813', 'rosuvastatin', '2c1a3c18-fa77-401b-8784-8e18b0d862f1', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3703, 'Rough cocklebur pollen extract (Injectable)', '40222500', 'rough cocklebur pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3704, 'ROWASA (Rectal)', '968426', 'mesalamine', 'a666d21d-da21-498d-aea2-055326cafd70', '12/4/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3705, 'ROXICODONE (Oral Pill)', '1124957', 'Oxycodone', '5a8157d3-ba20-4abf-b0d4-6ad141b31d63', '1/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3706, 'ROZEREM (Oral Pill)', '781182', 'ramelteon', '7a51d289-2013-4d37-adf2-91ea49df7932', '1/21/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3707, 'RU HIST D (Oral Pill)', '1135766', 'Phenylephrine', 'ae3f15f0-d7ac-4be7-93c2-67d2ed82f4dc', '2/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3708, 'RYANODEX (Injectable)', '711714', 'Dantrolene', '8f7b3ac0-604d-4c78-b545-5e0f8ea3d698', '8/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3709, 'RYMED-D (Oral Pill)', '1188114', 'dexchlorpheniramine', 'c1d6e914-74cc-4cdf-9587-7eaaa4a386e5', '4/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3710, 'RYNEZE (Oral Liquid)', '1192710', 'Chlorpheniramine', '9aca3d25-d042-479b-a00e-63be5b5073fe', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3711, 'Sacrosidase (Oral Liquid)', '951980', 'Sacrosidase', 'd613bb7f-c3f4-462e-81a2-da2347cc4b6b', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3712, 'SAFETUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'ac9f25a7-03cc-461b-af3e-8c16b7146a22', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3713, 'SAFETUSSIN PM (Oral Liquid)', '1119510', 'Dextromethorphan', '0f7e2c22-0c59-4027-ad61-6bdd048a605c', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3714, 'SALACYN (Topical)', '964407', 'Salicylic Acid', 'ac10b92d-2103-41cd-a819-440d35818532', '12/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3715, 'SALAGEN (Oral Pill)', '945286', 'Pilocarpine', 'fb4810ec-d26f-429d-b87c-5898a7870169', '5/11/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3716, 'SALEX (Shampoo)', '964407', 'Salicylic Acid', 'bd9eca8a-87df-46c8-b731-9d8211296e0c', '7/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3717, 'SALEX (Topical)', '964407', 'Salicylic Acid', 'bd9eca8a-87df-46c8-b731-9d8211296e0c', '7/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3718, 'Salicylic Acid (Paste)', '964407', 'Salicylic Acid', '6d3298e8-f623-4771-8497-fb43b5434923', '5/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3719, 'Salicylic Acid (Shampoo)', '964407', 'Salicylic Acid', 'a6b3a6ef-a285-4d77-b4c6-3372a3192ec3', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3720, 'Salicylic Acid (Soap)', '964407', 'Salicylic Acid', '72f2fd8e-4d6c-4944-83a4-5f07f7726598', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3721, 'Salicylic Acid (Topical)', '964407', 'Salicylic Acid', 'b33d61f2-386b-4a8d-a4c9-8e1373eddd53', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3722, 'Salicylic Acid (Transdermal)', '964407', 'Salicylic Acid', 'fa2e95b5-fe90-4406-b981-05bca62fd25c', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3723, 'Salicylic Acid/Sulfur (Shampoo)', '964407', 'Salicylic Acid', '7afc2219-712b-4a0c-b8a9-725f41cbf343', '12/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3724, 'Salmon calcitonin (Injectable)', '1537655', 'salmon calcitonin', '2a27340f-26e7-4003-b817-60de6696088b', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3725, 'Salmon calcitonin (Nasal)', '1537655', 'salmon calcitonin', 'a6eaedb3-5c96-4859-be43-a48c9c818bc7', '9/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3726, 'SALONPAS (Transdermal)', '939881', 'Capsaicin', 'ef5373aa-9857-4d01-95af-2d7716e54ae4', '12/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3727, 'SALONPAS GEL-PATCH (Transdermal)', '939881', 'Capsaicin', 'ee0ec612-3abd-4365-bfd4-9fa69abf0186', '12/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3728, 'SALONPAS MASSAGE FOAM (Topical)', '901656', 'Menthol', 'bf478e06-408c-4958-b98f-68570b14a2de', '5/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3729, 'SALONPAS PAIN RELIEF PATCH (Transdermal)', '901656', 'Menthol', '2e88c933-89e6-4a48-be7a-dc6a36e5c8f8', '9/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3730, 'SALONPAS PAIN RELIEVING PATCH (Transdermal)', '938205', 'Camphor', '1ebe6a18-5247-4172-93ee-161416db060d', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3731, 'Salsalate (Oral Pill)', '1137460', 'Salsalate', 'ae3ee7d8-1a27-4148-8527-102d3d95d3d9', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3732, 'Saltbush pollen extract (Injectable)', '40172670', 'saltbush pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3733, 'SALURON (Oral Pill)', '1376289', 'Hydroflumethiazide', '6153ef9e-77f0-4233-a5bc-3e3d1f732323', '10/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3734, 'SALVAX (Topical)', '964407', 'Salicylic Acid', '879e31b4-3449-40ce-9b34-815563d4e272', '12/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3735, 'SAMARIUM Sm153 (Injectable)', '1338558', 'SAMARIUM Sm153', '89cae12d-05fc-4d53-920f-e271b2940a5d', '12/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3736, 'SandoSTATIN (Injectable)', '1522957', 'Octreotide', '4e2c9856-1836-49f0-9472-4dbeeb408f39', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3737, 'SANSERT (Oral Pill)', '1106740', 'Methysergide', '3fae28ee-700e-4d4f-a040-02ef01a2aeb4', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3738, 'SANTYL (Topical)', '980311', 'COLLAGENASE', 'a7bf0341-49ff-4338-a339-679a3f3f953d', '2/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3739, 'SAPHRIS (Sublingual)', '40164052', 'Asenapine', '5429f134-839f-4ffc-9944-55f51238def8', '3/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3740, 'Saquinavir (Oral Pill)', '1746244', 'Saquinavir', 'b8b53129-06ab-4143-b9b7-7675e49a52ef', '9/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3741, 'SARAPIN (Injectable)', '19030860', 'SARRACENIA PURPUREA preparation', '2c51acbc-033b-40a2-93b1-81ba89223b13', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3742, 'Sargramostim (Injectable)', '1308432', 'sargramostim', 'c96afe62-f0cf-4d4b-b57d-194a8ec12389', '8/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3743, 'SARNA (Topical)', '938205', 'Camphor', 'a64e2fdb-54ba-4a5a-b31b-85a1d4d871eb', '8/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3744, 'SARNA SENSITIVE (Topical)', '927478', 'pramoxine', '6fe48995-0b1c-48dd-bc6e-5d41b31a6486', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3745, 'SARRACENIA PURPUREA preparation (Injectable)', '19030860', 'SARRACENIA PURPUREA preparation', '2c51acbc-033b-40a2-93b1-81ba89223b13', '3/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3746, 'SAVELLA (Oral Pill)', '19080226', 'milnacipran', '9b3d078b-d12f-47ef-baa4-35b88b090ed4', '1/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3747, 'Saxagliptin (Oral Pill)', '40166035', 'saxagliptin', 'd45fc842-2563-4421-86af-a55b3191e19b', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3748, 'SCALPICIN ITCH RELIEF (Topical)', '975125', 'Hydrocortisone', '7b1a29fa-b266-43e6-a87b-aa3c96ab4041', '11/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3749, 'SCALPICIN SCALP RELIEF (Topical)', '964407', 'Salicylic Acid', 'c072181f-827e-4e55-93e6-74929eabdbd1', '2/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3750, 'SCANDONEST (Injectable)', '702774', 'Mepivacaine', '7215f107-d1ca-466d-8f4b-f86e5249d39b', '7/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3751, 'SCLEROSOL (Topical)', '1036667', 'Talc', 'c89eb8fd-6c31-4f8b-8103-1f559424eda1', '7/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3752, 'Scopolamine (Injectable)', '965748', 'Scopolamine', 'b85b3ca0-89ce-44fe-b748-62e160e8c349', '8/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3753, 'SCOT-TUSSIN (Oral Liquid)', '1163944', 'Guaifenesin', '2cd6ab31-1fae-4737-b6af-50586323b751', '1/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3754, 'SCOT-TUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', '4f0aefe3-e80f-44b8-bc24-1a325f36c2d3', '1/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3755, 'SCOT-TUSSIN SUGAR FREE DM (Oral Liquid)', '1192710', 'Chlorpheniramine', '17bfd444-32a5-4036-a5fc-eb11b977e1e5', '1/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3756, 'Scotch pine pollen extract (Injectable)', '40171787', 'Scotch pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3757, 'SCYTERA (Topical)', '1000995', 'Coal Tar', '3637ca89-694d-4061-a23d-e691093276e7', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3758, 'SEB-PREV (Topical)', '1036252', 'Sulfacetamide', '51e81749-8306-4e3e-9165-28c34cdcca62', '9/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3759, 'SEBEX (Shampoo)', '964407', 'Salicylic Acid', 'aec81d61-1d28-490f-9654-f66bd4a30ffa', '1/15/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3760, 'Secobarbital (Oral Pill)', '766067', 'Secobarbital', '19647025-6c7b-4079-8040-51e26347b014', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3761, 'SECONAL SODIUM (Oral Pill)', '766067', 'Secobarbital', '6698bc44-b971-49cc-a5de-11e569493c59', '7/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3762, 'SECTRAL (Oral Pill)', '1319998', 'Acebutolol', '7eee95bf-0452-4d6e-9712-33403768695a', '1/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3763, 'Selegiline (Oral Disintegrating)', '766209', 'Selegiline', '380d7717-2a79-42f3-a712-efe5e7696ba0', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3764, 'Selegiline (Oral Pill)', '766209', 'Selegiline', 'ed802863-bf91-46a4-9c44-a6c5ce905edc', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3765, 'Selenious Acid (Injectable)', '19038024', 'Selenious Acid', 'db7454bc-4f18-4632-b771-2e86db889bae', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3766, 'Selenium sulfide (Shampoo)', '938061', 'selenium sulfide', '4a90c2c6-f2a5-4c0d-8879-b7d6863ea179', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3767, 'Selenium sulfide (Topical)', '938061', 'selenium sulfide', '4b0c6317-7473-45de-b704-5d48d5c2dbe9', '12/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3768, 'SELRX (Shampoo)', '938061', 'selenium sulfide', '44170482-124c-4d18-a4b5-fb5f39514689', '9/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3769, 'SELSUN BLUE (Shampoo)', '938061', 'selenium sulfide', 'f97e458c-cce3-498f-81fc-1b96a4e8f50a', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3770, 'SELSUN BLUE NATURALS (Shampoo)', '964407', 'Salicylic Acid', 'ed031a0f-7467-4b2c-a6b6-95306f6ee828', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3771, 'SELZENTRY (Oral Pill)', '1787101', 'maraviroc', '2b5e5c5d-852a-413b-825c-8491d4539e67', '2/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3772, 'SEMPREX-D (Oral Pill)', '1140123', 'acrivastine', 'd86c6a13-9e5f-43c2-92f5-c7ed7bfcedfc', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3773, 'SENEXON (Oral Liquid)', '938268', '"sennosides, USP"', '90983cc4-04cf-4cfc-a705-5681b985e6a0', '6/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3774, 'SENEXON (Oral Pill)', '938268', '"sennosides, USP"', 'ffc422f2-a3e0-4b48-8186-a11e4088c85e', '9/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3775, 'SENEXON S (Oral Pill)', '941258', 'Docusate', 'bb2064aa-b820-4e07-962a-a506145942df', '5/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3776, 'SENNA LAX (Oral Pill)', '938268', '"sennosides, USP"', '0398229e-2e65-43cf-9e76-cfdd6ac5da46', '8/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3777, '"Sennosides, USP (Chewable)"', '938268', '"sennosides, USP"', 'c8ea170b-57b5-4643-ba88-4cf2ae1bf6a0', '5/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3778, '"Sennosides, USP (Oral Liquid)"', '938268', '"sennosides, USP"', 'b2bf2d76-7dc0-4864-bfc2-ef41e155d316', '9/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3779, '"Sennosides, USP (Oral Pill)"', '938268', '"sennosides, USP"', 'da71f182-032f-4438-a6d4-e973b4cf6241', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3780, 'SENOKOT (Oral Pill)', '938268', '"sennosides, USP"', 'f27cb405-9820-4fe9-8432-e50643f2c7f0', '2/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3781, 'SENOKOT-S (Oral Pill)', '941258', 'Docusate', 'c24cdc5e-62e0-41a6-8afb-512202a569f4', '8/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3782, 'SENSI-CARE BODY (Topical)', '916662', 'dimethicone', '736a6d4e-852b-4611-9638-904979b94ad4', '12/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3783, 'SENSIPAR (Oral Pill)', '1548111', 'cinacalcet', 'e4d86a0f-7164-41c9-9838-ea51d91c43b0', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3784, 'SENSORCAINE (Injectable)', '732893', 'Bupivacaine', 'ab7d1ab1-3d58-4562-a3be-c8b2b12e99cf', '11/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3785, 'SENSORCAINE WITH EPINEPHRINE (Injectable)', '732893', 'Bupivacaine', 'bc61a9a6-0a4e-48a9-b908-e5e66b9f23eb', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3786, 'SEPTOCAINE (Injectable)', '19080512', 'Articaine', '0eba0bd2-ccb6-4f7e-8d0c-e4b4e6cdce03', '7/12/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3787, 'SER-AP-ES (Oral Pill)', '1373928', 'Hydralazine', 'bdd0658e-38fb-4726-9720-09c502138ab0', '8/21/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3788, 'SEROMYCIN (Oral Pill)', '1710446', 'Cycloserine', 'e1e08327-4b90-463e-bb2a-22438cabcef2', '10/6/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3789, 'SEROquel (Oral Pill)', '766814', 'quetiapine', '6d34c9a4-cf73-4e2d-82f6-a132412c20fe', '5/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3790, 'Sertaconazole (Topical)', '939134', 'sertaconazole', '821073f7-33f6-464d-baed-f66d97987d6d', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3791, 'Sertraline (Oral Liquid)', '739138', 'Sertraline', '7f144b68-ae90-483c-b030-f6824662a734', '12/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3792, 'Sertraline (Oral Pill)', '739138', 'Sertraline', '250d998f-7100-495c-81ff-10fcfd5ba61d', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3793, 'Sevelamer (Oral Pill)', '952004', 'sevelamer', 'b2a373e4-110e-4f9a-9abe-e0c4374770d4', '7/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3794, 'Sevoflurane (Inhalant)', '19039298', 'sevoflurane', '3b59360e-2b93-4fcb-b3a3-295f1fee4634', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3795, 'Shagbark hickory pollen extract (Injectable)', '40162231', 'shagbark hickory pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3796, 'Sheep sorrel pollen extract/Yellow dock pollen extract (Injectable)', '40162235', 'sheep sorrel pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3797, 'SHEER DESENZ (Oral Strip)', '927322', 'potassium nitrate', 'ac99f344-f0a7-4502-a06f-888a1b382edd', '10/5/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3798, 'Short ragweed pollen extract (Injectable)', '40171301', 'short ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3799, 'Short ragweed pollen extract (Sublingual)', '40171301', 'short ragweed pollen extract', '986abfaf-67fc-47fb-8c86-d9f9cce6fa8b', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3800, 'Siberian elm pollen extract (Injectable)', '42801112', 'Siberian elm pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3801, 'SIGNIFOR (Injectable)', '43012417', 'pasireotide', '442f0d9d-5c7d-4b81-b329-d71be8cf2be2', '3/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3802, 'SILADRYL (Oral Liquid)', '1129625', 'Diphenhydramine', '717c622c-570e-47d4-be73-041a88e8ebf8', '6/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3803, 'Sildenafil (Injectable)', '1316262', 'sildenafil', 'bb92d686-a81e-4b91-8048-693af0534cb3', '7/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3804, 'Sildenafil (Oral Pill)', '1316262', 'sildenafil', '47af30e9-a189-4721-8c8f-652256df75a1', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3805, 'SILENOR (Oral Pill)', '738156', 'Doxepin', '1bec1223-5239-4eb6-a9e8-62444106d2c0', '12/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3806, 'SILTUSSIN (Oral Liquid)', '1163944', 'Guaifenesin', '264abf3d-c466-4209-b911-29ce18b0b816', '2/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3807, 'SILTUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', 'ad9916ec-633b-4dcd-a955-88d5f0ec439e', '11/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3808, 'SILVADENE (Topical)', '966956', 'Silver Sulfadiazine', 'c437213a-1cd4-445e-a39f-bbcacb9f746f', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3809, 'Silver sulfadiazine (Topical)', '966956', 'Silver Sulfadiazine', 'c2b6aaa5-3325-403c-9466-977c4f63f36f', '6/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3810, 'Simethicone (Chewable)', '966991', 'Simethicone', '23005295-c5f2-4a76-8431-4a9b8d817d4d', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3811, 'Simethicone (Oral Liquid)', '966991', 'Simethicone', '395be942-d883-4bcb-8811-6fe1521d5a92', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3812, 'Simethicone (Oral Pill)', '966991', 'Simethicone', 'dda3c826-143e-420c-817e-d46d0ee523fb', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3813, 'SIMPLY SLEEP (Oral Pill)', '1129625', 'Diphenhydramine', '37c606b0-04d5-49f0-886a-3ee2c9b0e9cc', '9/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3814, 'SIMPONI (Injectable)', '19041065', 'golimumab', '9e260a47-55af-4c92-8d88-a86ccc767fff', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3815, 'Simvastatin (Oral Disintegrating)', '1539403', 'Simvastatin', '34b56f73-bea4-4265-8b2a-c57520cf8e70', '2/5/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3816, 'Simvastatin (Oral Pill)', '1539403', 'Simvastatin', 'c6985b00-59b5-4ff3-a940-478c616fc227', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3817, 'Sincalide (Injectable)', '19067803', 'Sincalide', 'c56a824b-a8ba-42db-b05c-49c731130879', '7/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3818, 'SINE-OFF MAXIMUM STRENGTH REFORMULATED SEP 2008 (Oral Pill)', '1125315', 'Acetaminophen', 'e37237f4-20a0-4599-84c8-d96c62062861', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3819, 'SINEMET XR (Oral Pill)', '740560', 'Carbidopa', '69e575b9-f8a5-494f-b736-2520ef505cb0', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3820, 'SINEX LONG-ACTING (Nasal)', '925636', 'Oxymetazoline', 'a892608a-56d5-426e-b348-881099a4068d', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3821, 'SINGULAIR (Chewable)', '1154161', 'montelukast', 'e8d9021d-73aa-4c96-8b8a-e90069e78555', '2/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3822, 'SINGULAIR (Oral Pill)', '1154161', 'montelukast', '10cd5ca5-6f8b-417c-af11-a2054a2dde34', '3/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3823, 'Sipuleucel-T (Injectable)', '40224095', 'sipuleucel-T', '8309b497-5d4e-4408-ac0c-2452c11c8a35', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3824, 'Sirolimus (Oral Pill)', '19034726', 'Sirolimus', '0f26220a-f4ab-4ceb-9a98-a13dbdeed81f', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3825, 'Sisal fiber extract (Injectable)', '40162251', 'sisal fiber extract', 'a363efb9-0817-4347-8c36-6630b5b99dc5', '12/18/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3826, 'sitaGLIPtin (Oral Pill)', '1580747', 'sitagliptin', '588f94fa-ef4c-4633-8d65-d0d93f374ffc', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3827, 'SITAVIG (Buccal)', '1703687', 'Acyclovir', '00f7425a-6236-47ff-a087-f28f8cdb1aec', '8/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3828, 'SKELAXIN (Oral Pill)', '780369', 'metaxalone', '7a4163f2-c553-4d14-7e98-d14c5c7f772a', '6/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3829, 'SKLICE (Topical)', '1784444', 'Ivermectin', '4c5557cd-c4cf-11df-851a-0800200c9a66', '7/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3830, 'SKYLA (Implant)', '1589505', 'Levonorgestrel', '9f44ff35-e052-49cd-a1c2-0bfd87d49309', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3831, 'Slash pine pollen extract (Injectable)', '40172778', 'slash pine pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3832, 'SLEEPINAL (Oral Pill)', '1129625', 'Diphenhydramine', '111e891d-acd8-44f9-b958-09cb876d388c', '1/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3833, 'Smooth brome pollen extract (Injectable)', '40162259', 'smooth brome pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3834, 'SOCHLOR (Ophthalmic)', '967823', 'Sodium Chloride', '3f78386f-42f1-22a9-1f27-349381dad0b0', '2/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3835, 'Sodium Acetate (Injectable)', '19077884', 'Sodium Acetate', 'ce9a7469-c4ba-4f60-8f7a-47ef0974316e', '4/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3836, 'Sodium Bicarbonate (Injectable)', '939506', 'Sodium Bicarbonate', '41735bcb-602f-49a0-b578-18c1bdb33d03', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3837, 'Sodium Bicarbonate (Oral Pill)', '939506', 'Sodium Bicarbonate', 'e73b5871-4a87-4473-ab00-5e5395be017d', '3/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3838, 'Sodium Bicarbonate/Sodium Chloride (Nasal)', '939506', 'Sodium Bicarbonate', 'ff4df6c5-c85f-406a-89d7-8c2853fd5e10', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3839, 'Sodium Chloride (Inhalant)', '967823', 'Sodium Chloride', 'b4fd60c9-6fd9-430a-b4f6-0424b46bdbe1', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3840, 'Sodium Chloride (Injectable)', '967823', 'Sodium Chloride', 'f55bd888-5e01-474d-871b-24654c070178', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3841, 'Sodium Chloride (Irrigation)', '967823', 'Sodium Chloride', '05dee566-7b82-4216-8a6b-765d2b4d9dc7', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3842, 'Sodium Chloride (Nasal)', '967823', 'Sodium Chloride', 'f852bdfe-12af-4ac7-9158-4a1450bcb025', '12/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3843, 'Sodium Chloride (Ophthalmic)', '967823', 'Sodium Chloride', '93fafa27-5031-4d95-b4b8-5574b7204ae2', '9/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3844, 'Sodium citrate (Injectable)', '977968', 'sodium citrate', '447528e6-55cd-4a9b-868e-2a741b2693d3', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3845, 'Sodium ferric gluconate complex (Injectable)', '1399177', 'Sodium ferric gluconate complex', '218d1b8d-b24f-4f77-b588-97c7dd1c2eec', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3846, 'Sodium Fluoride (Chewable)', '19069022', 'Sodium Fluoride', '58b3e7ff-c032-4e42-823a-8ed7b93d606f', '3/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3847, 'Sodium Fluoride (Mouthwash)', '19069022', 'Sodium Fluoride', '1a57bfa0-3b18-4612-ad8c-5e651abb3530', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3848, 'Sodium Fluoride (Oral Foam)', '19069022', 'Sodium Fluoride', 'feaab33f-87b2-4e79-b8c3-649d79002111', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3849, 'Sodium Fluoride (Oral Gel)', '19069022', 'Sodium Fluoride', 'ec50b003-cf61-4f66-bb62-f779e48363c2', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3850, 'Sodium Fluoride (Oral Liquid)', '19069022', 'Sodium Fluoride', 'cc162a0e-b601-4466-9a4e-192985ee014a', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3851, 'Sodium Fluoride (Paste)', '19069022', 'Sodium Fluoride', '0f859886-ce63-4de2-994e-7288b19d9656', '8/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3852, 'Sodium Fluoride (Toothpaste)', '19069022', 'Sodium Fluoride', 'd93ee76f-454b-40bf-9357-39a2ae3b6ccb', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3853, 'Sodium Fluoride/Xylitol (Chewable)', '19069022', 'Sodium Fluoride', '4c854364-e732-4dec-b1d1-b8a97e4e1176', '8/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3854, 'Sodium Iodide (Injectable)', '19069873', 'Sodium Iodide', '64c7014a-c9b1-4264-b365-c610c3d733fd', '6/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3855, 'Sodium Morrhuate (Injectable)', '19069904', 'Sodium Morrhuate', '9298b254-4311-46cd-9244-8651dd87417e', '9/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3856, 'Sodium Nitrite (Injectable)', '19069907', 'Sodium Nitrite', 'ff4941b3-9901-4aab-adcf-c5327bede34e', '12/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3857, 'Sodium Oxybate (Oral Liquid)', '769935', 'Sodium Oxybate', '926eb076-a4a8-45e4-91ef-411f0aa4f3ca', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3858, 'Sodium phosphate (Oral Pill)', '939871', 'sodium phosphate', '983ce15f-cd37-4f3a-9e51-205860e80976', '8/24/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3859, '"Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Injectable)"', '991710', '"Sodium Phosphate, Dibasic"', '348ecd15-59c0-4833-88ea-7acf6ac0dbef', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3860, '"Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Oral Liquid)"', '991710', '"Sodium Phosphate, Dibasic"', 'baa19edb-d585-451e-a536-96293f2a7688', '12/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3861, '"Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Rectal)"', '991710', '"Sodium Phosphate, Dibasic"', 'fb260df0-7bda-4299-84a5-44c8f9447798', '8/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3862, '"SODIUM PHOSPHATE,MONOBASIC,MONOHYDRATE/Sodium Phosphate, Dibasic (Oral Pill)"', '991710', '"Sodium Phosphate, Dibasic"', '57ccd52e-5b13-4b39-8aa0-ebecc49a7db4', '12/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3863, 'Sodium polystyrene sulfonate (Oral Liquid)', '19078126', 'Sodium polystyrene sulfonate', '905c3ee5-d1a7-4deb-a345-4a42296704fa', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3864, 'Sodium Tetradecyl Sulfate (Injectable)', '19070012', 'Sodium Tetradecyl Sulfate', 'f1756c28-dcd2-4b49-be62-07ca20682018', '7/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3865, 'Sodium thiosulfate (Injectable)', '940004', 'sodium thiosulfate', 'ff4941b3-9901-4aab-adcf-c5327bede34e', '12/20/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3866, 'SOLARCAINE (Topical)', '989878', 'Lidocaine', '88f3cb40-2258-4e1c-92fb-e1891ddb3135', '9/4/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3867, 'Solifenacin (Oral Pill)', '916005', 'Solifenacin', '5256f116-ad56-4ce0-8a5e-69d401f3ea00', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3868, 'SOLTAMOX (Oral Liquid)', '1436678', 'Tamoxifen', '8e4710a7-8757-49be-8bec-a1dc39e6c695', '10/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3869, 'Solu-CORTEF (Injectable)', '975125', 'Hydrocortisone', 'b2b4c961-363d-49fe-b354-d59b39fd517a', '5/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3870, 'Solu-MEDROL (Injectable)', '1506270', 'Methylprednisolone', '68ef8ec4-16de-4a8c-8696-b09359660380', '1/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3871, 'SOMA (Oral Pill)', '749910', 'Carisoprodol', '6543c6ba-852e-40fb-b7ec-1331b9c83656', '12/10/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3872, 'Somatropin (Injectable)', '1584910', 'Somatropin', '85ba081b-bee0-4a9a-aa0f-ae5b5e9a0886', '4/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3873, 'SOMBRA WARM PAIN RELIEVING GEL (Topical)', '938205', 'Camphor', 'de78dba9-53b3-4dbd-9dd2-6a692378da34', '1/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3874, 'SOMINEX (Oral Pill)', '1129625', 'Diphenhydramine', '9e70ead1-479f-48bb-9be4-a8b30b784795', '2/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3875, 'SONATA (Oral Pill)', '720727', 'zaleplon', '43ac81cb-1e3f-4d44-86bd-13db2721d060', '9/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3876, 'SOOTHE & COOL MOISTURE BARRIER (Topical)', '19033354', 'Petrolatum', '59625382-2769-4c91-9c53-e19dfd6ca115', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3877, 'SOOTHE NIGHT TIME (Ophthalmic)', '908523', 'Mineral Oil', '638d3c3f-9960-43da-956e-0e28c77f533e', '12/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3878, 'SOOTHE REGULAR STRENGTH (Oral Liquid)', '937791', 'bismuth subsalicylate', '82f2b3a4-3428-4046-9372-2ef9046a071c', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3879, 'Sorbitol (Irrigation)', '970011', 'Sorbitol', '5f7be402-f25a-428e-b81f-6a4a00de894c', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3880, 'Sorbitol (Rectal)', '970011', 'Sorbitol', '16cc9d47-5382-4237-ab84-f22c5436fe2e', '7/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3881, 'SORINE (Oral Pill)', '1370109', 'Sotalol', '6ee6e904-a8e2-41d4-8261-67103ecfa605', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3882, 'Sotalol (Injectable)', '1370109', 'Sotalol', '2afe7385-2441-4e22-b63e-ab8614b275df', '9/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3883, 'Sotalol (Oral Liquid)', '1370109', 'Sotalol', '1f33f900-0777-4a92-a7f7-00cf3d57d95c', '3/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3884, 'Sotalol (Oral Pill)', '1370109', 'Sotalol', '03de4b65-29b0-4e30-a94b-b5877a050f93', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3885, 'SOTRADECOL (Injectable)', '19070012', 'Sodium Tetradecyl Sulfate', 'f1756c28-dcd2-4b49-be62-07ca20682018', '7/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3886, 'SOTRET (Oral Pill)', '984232', 'Isotretinoin', 'd5a26c5e-9c3e-4781-8c08-62b91d21a68d', '12/1/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3887, 'SOTYLIZE (Oral Liquid)', '1370109', 'Sotalol', '1f33f900-0777-4a92-a7f7-00cf3d57d95c', '3/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3888, 'SPECTRACEF (Oral Pill)', '1747005', 'cefditoren', '1c90b649-5536-417c-82cb-89663137f14f', '6/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3889, 'Spinosad (Shampoo)', '40172543', 'spinosad', '5cd2bff8-40cd-4e63-9907-77b80d774cb7', '6/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3890, 'SPIRIVA (Inhalant)', '1106776', 'tiotropium', '1cf82d42-5ad0-4b86-838e-9230c61cf3d4', '7/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3891, 'Spironolactone (Oral Pill)', '970250', 'Spironolactone', 'd895f00f-ce8c-47cf-9e3f-78ec2d1a0a1b', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3892, 'SPORTSCREME (Topical)', '943116', 'trolamine salicylate', 'cfaae612-43df-409e-80b4-4704fbf53b04', '12/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3893, 'SPRYCEL (Oral Pill)', '1358436', 'dasatinib', '0e7f054c-7a27-4192-bd1c-6115d8be858f', '6/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3894, 'SSD (Topical)', '966956', 'Silver Sulfadiazine', 'cecc0b75-fccf-418d-923a-2a5869c1d043', '12/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3895, 'STAHIST AD (Oral Pill)', '990413', 'chlorcyclizine', 'ccedbc38-2479-4c35-9f86-a9f29bcfab3f', '1/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3896, 'STAHIST AD LIQUID (Oral Liquid)', '990413', 'chlorcyclizine', '4e1bd76c-3fd8-4372-907f-6b799d67cfbb', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3897, 'STANBACK HEADACHE POWDER REFORMULATED JAN 2011 (Oral Powder)', '1112807', 'Aspirin', 'caaa1313-09e4-45aa-8836-346f6a370196', '6/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3898, 'Stannous Fluoride (Mouthwash)', '1036094', 'Stannous Fluoride', 'd2f0df92-d52f-4c9c-99d0-3cd2a025e5e9', '6/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3899, 'Stannous Fluoride (Oral Gel)', '1036094', 'Stannous Fluoride', '3b21d029-271b-43f4-9406-429507621bf7', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3900, 'Stannous Fluoride (Toothpaste)', '1036094', 'Stannous Fluoride', '2ee74342-c3f6-4aa5-a4d6-d9123d24a5aa', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3901, 'Starch (Rectal)', '1036157', 'Starch', '6a3ee178-39a9-44bf-8fdb-5eacbd089998', '8/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3902, 'Starch/Zinc Oxide (Topical)', '1036157', 'Starch', '9f12dee2-7afa-45e9-a729-0fd42bb77715', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3903, 'STATROL (Ophthalmic)', '915981', 'Neomycin', '7218af16-9378-472a-a033-4c9f9d5524db', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3904, 'STATUSS GREEN REFORMULATED JAN 2012 (Oral Liquid)', '990413', 'chlorcyclizine', '9d1d42e4-9d69-4360-a057-81f909133880', '1/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3905, 'Stavudine (Oral Liquid)', '1781406', 'Stavudine', '259fbf19-ad1a-424f-873a-ba12e42b9315', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3906, 'Stavudine (Oral Pill)', '1781406', 'Stavudine', '6d397a2a-06fc-467e-b014-c19e6384c8d9', '11/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3907, 'STAXYN (Oral Disintegrating)', '1311276', 'vardenafil', '0e5139d8-bf61-4f21-a36b-81b96b9b07d1', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3908, 'STOPAIN (Topical)', '901656', 'Menthol', 'da5b7666-3df4-4b11-afb3-7e292c065053', '11/30/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3909, 'STRATTERA (Oral Pill)', '742185', 'atomoxetine', '23c702e2-3abc-4d7d-b88f-a089e2179f42', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3910, 'Streptomycin (Injectable)', '1836191', 'Streptomycin', 'abd1f64e-4283-4370-aae8-3666316aa36e', '10/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3911, 'Streptozocin (Injectable)', '19136210', 'Streptozocin', '15d161ed-9e7b-4c92-ba45-0556d2423e67', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3912, 'STRI-DEX (Topical)', '964407', 'Salicylic Acid', '843d3424-bd6c-44aa-976b-63c9da15014e', '5/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3913, 'STRIANT (Buccal)', '1636780', 'Testosterone', '9af8ef50-f650-44ca-a272-135bfce9daca', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3914, 'STRIBILD (Oral Pill)', '42874220', 'cobicistat', '144067b2-0532-476a-996e-e4a0a9d09b05', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3915, 'STRIDEX (Topical)', '964407', 'Salicylic Acid', 'b3a78318-293a-4869-b442-3b6a9965791f', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3916, 'STYPTSTIX (Topical)', '927322', 'potassium nitrate', 'b7634e27-3c75-4e56-ab42-3e5796edb0c7', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3917, 'SUBLIMAZE (Injectable)', '1154029', 'Fentanyl', '8944ea18-016e-4971-876d-2365fac190ea', '5/15/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3918, 'SUBOXONE (Oral Strip)', '1133201', 'Buprenorphine', '426a0094-f192-48ff-be40-c4f7c9566d50', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3919, 'SUBOXONE (Sublingual)', '1133201', 'Buprenorphine', '8083b4e1-9863-4311-b72d-cbad288f7652', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3920, 'Succimer (Oral Pill)', '1728909', 'Succimer', '62035612-9505-3a3f-1ac8-e2dbd711d24e', '8/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3921, 'Succinylcholine (Injectable)', '836208', 'Succinylcholine', 'c06156ae-b889-4250-bc85-1435b2635829', '6/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3922, 'SUCRAID (Oral Liquid)', '951980', 'Sacrosidase', 'd613bb7f-c3f4-462e-81a2-da2347cc4b6b', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3923, 'Sucralfate (Oral Liquid)', '1036228', 'Sucralfate', '0fb67b1c-b4c0-46f2-8a81-df1510e006aa', '5/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3924, 'Sucralfate (Oral Pill)', '1036228', 'Sucralfate', '989ca8a8-3ad6-4ee4-aa9c-eed731828753', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3925, 'SUCRETS (Oral Lozenge)', '992308', 'dyclonine', '68f3e4d6-4292-4c5c-96de-2c4d38ec6399', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3926, 'SUCRETS DM (Oral Lozenge)', '1119510', 'Dextromethorphan', '00ad5b08-5371-4a2f-be49-4254106d7f64', '11/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3927, 'SUCRETS ORIGINAL (Oral Lozenge)', '969004', 'Hexylresorcinol', 'e282ba65-b674-45d5-82c2-ab4e4a95243b', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3928, 'SUDAFED (Oral Liquid)', '1154332', 'Pseudoephedrine', '52e9307b-ad38-4f65-bb2f-4fa262e82010', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3929, 'SUDAFED (Oral Pill)', '1154332', 'Pseudoephedrine', 'd280abe9-6bdf-4e1e-a0cf-95fd0451c999', '6/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3930, 'SUDAFED PE (Oral Pill)', '1135766', 'Phenylephrine', '74716ae2-b035-47e2-9fc6-9ce53fdcd790', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3931, 'SUDAFED PE CHILDREN''S COLD & COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', '20e45243-3989-413a-bcf1-49d754ff2e44', '3/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3932, 'SUDAFED PE CHILDREN''S NASAL DECONGESTANT (Oral Liquid)', '1135766', 'Phenylephrine', '4dfd46e4-b9f9-464d-aa47-e8fa9e526a5d', '6/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3933, 'Sudan grass pollen extract (Injectable)', '40237944', 'Sudan grass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3934, 'SUDO-TAB (Oral Pill)', '1135766', 'Phenylephrine', '6f70ed59-a1f8-4daa-8614-feaf2533687b', '11/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3935, 'SUDOGEST (Oral Liquid)', '1154332', 'Pseudoephedrine', '0ae49d7e-ceec-4ad6-a0b8-cb20237e2b70', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3936, 'SUDOGEST (Oral Pill)', '1154332', 'Pseudoephedrine', '7d26821c-a08a-40a8-9729-251f21d54702', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3937, 'SUDOGEST SINUS & ALLERGY (Oral Pill)', '1192710', 'Chlorpheniramine', '7cd8f7f3-c262-4f7c-bcaf-068be2c952f9', '5/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3938, 'SUFentanil (Injectable)', '19078219', 'Sufentanil', '53dbe21e-0b97-4271-a7af-2d18986adcd8', '4/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3939, 'Sulconazole (Topical)', '940535', 'sulconazole', 'b3aea089-3961-43ea-8335-8128e9bae13b', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3940, 'SULF-10 (Ophthalmic)', '1036252', 'Sulfacetamide', '43aab37c-3020-4f7e-8b21-f9be22e9d356', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3941, 'Sulfacetamide (Ophthalmic)', '1036252', 'Sulfacetamide', '26983557-e3e8-477f-bb63-64f04b1606eb', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3942, 'Sulfacetamide (Shampoo)', '1036252', 'Sulfacetamide', '6a034465-e600-49cb-91bd-7b9ceee6ffc6', '10/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3943, 'Sulfacetamide (Soap)', '1036252', 'Sulfacetamide', 'a77aed6c-355f-44ed-ae95-78b4d1549c2b', '1/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3944, 'Sulfacetamide (Topical)', '1036252', 'Sulfacetamide', '5a005021-dfa1-4aeb-8661-045516723baf', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3945, 'Sulfacetamide/Sulfur (Soap)', '1036252', 'Sulfacetamide', '0e76c520-d02a-4064-bcda-fc45cf9e6fa3', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3946, 'Sulfacetamide/Sulfur (Topical)', '1036252', 'Sulfacetamide', '5fff8c9a-a798-4b5b-b818-6c1817936d5d', '3/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3947, 'Sulfamethoxazole/Trimethoprim (Injectable)', '1836430', 'Sulfamethoxazole', 'b89b5502-ce87-45a6-a43c-9891da3cfca4', '8/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3948, 'Sulfamethoxazole/Trimethoprim (Oral Liquid)', '1836430', 'Sulfamethoxazole', 'bbad2036-e2a8-4c56-bb92-dea833598ebc', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3949, 'Sulfamethoxazole/Trimethoprim (Oral Pill)', '1836430', 'Sulfamethoxazole', 'a0f86f52-8841-4e1c-8536-2e78320471ed', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3950, 'SULFAMYLON (Topical)', '992716', 'Mafenide', '9972db4c-703f-4cbc-915c-ec993bff6fb9', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3951, 'Sulfanilamide (Vaginal)', '1036475', 'Sulfanilamide', 'd344f475-1bf2-4aaf-aae3-0cd0be4995d1', '12/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3952, 'sulfaSALAzine (Oral Pill)', '964339', 'Sulfasalazine', 'ad13d598-7b1b-48d3-a25b-08635b419f99', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3953, 'SULFATRIM (Oral Liquid)', '1836430', 'Sulfamethoxazole', 'a8df90d8-78b3-48c3-b42e-1e651d81454b', '11/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3954, 'SULFONATED PHENOL/Sulfuric acid (Mucosal)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3955, 'SULFONATED PHENOL/Sulfuric acid (Topical)', '991706', 'SULFONATED PHENOL', '15d22ca4-503e-2751-e054-00144ff8d46c', '5/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3956, 'Sulfur (Soap)', '1036525', 'Sulfur', 'bd35f939-a36a-4a96-98df-36bf81ab8628', '6/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3957, 'Sulfur (Topical)', '1036525', 'Sulfur', '0280e008-8f9d-4bb8-897b-3e5fbb49aa1e', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3958, 'Sulindac (Oral Pill)', '1236607', 'Sulindac', '19dde540-3d29-4db4-9570-6ca15f09e0fe', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3959, 'SULPHO-LAC (Soap)', '1036525', 'Sulfur', '2f838efd-831d-4171-8387-83c8eab3c51a', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3960, 'SUMADAN WASH (Soap)', '1036252', 'Sulfacetamide', 'f4b493b8-1193-4a3f-b7a2-77d08d5b3d66', '12/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3961, 'SUMAtriptan (Injectable)', '1140643', 'Sumatriptan', '24259865-233b-4258-a01b-e895a873f2c4', '3/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3962, 'SUMAtriptan (Nasal)', '1140643', 'Sumatriptan', '6c95caa4-812e-4e47-bcfc-c641c00db3f7', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3963, 'SUMAtriptan (Oral Pill)', '1140643', 'Sumatriptan', '1ecbd827-e22b-113d-e054-00144ff8d46c', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3964, 'SUMAtriptan (Transdermal)', '1140643', 'Sumatriptan', '806a07a0-e042-11df-9548-0002a5d5c51b', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3965, 'SUMAXIN (Soap)', '1036252', 'Sulfacetamide', '2e3350eb-ca10-4bf2-819f-3eb46c7437b7', '9/3/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3966, 'SUMAXIN (Topical)', '1036252', 'Sulfacetamide', '5d9ddc1a-fbae-4595-86ce-3bbca7d03482', '12/29/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3967, 'SUPERDENT HEMAL (Mucosal)', '957393', 'aluminum chloride', 'cb363bac-c935-4398-892e-d9024eb7d121', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3968, 'SUPRANE (Inhalant)', '19002770', 'desflurane', 'bf4d8d29-852d-4281-b732-4af0eca019e1', '3/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3969, 'SUPRAX (Chewable)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3970, 'SUPRAX (Oral Liquid)', '1796435', 'Cefixime', '7e2462b2-bfed-4da4-8c47-46838d6153f8', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3971, 'SUPRAX (Oral Pill)', '1796435', 'Cefixime', 'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', '9/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3972, 'Suprofen (Ophthalmic)', '1036636', 'Suprofen', '8de2c303-5d99-46b6-ad6d-a4caadea3604', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3973, 'SURFAK STOOL SOFTENER (Oral Pill)', '941258', 'Docusate', 'f2ea1d6b-fce6-40b4-9c06-48ca40323e01', '11/25/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3974, 'SURFAXIN (Injectable)', '42800204', 'lucinactant', 'f2ba0c81-ceb0-11e0-9572-0800200c9a66', '5/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3975, 'SURMONTIL (Oral Pill)', '705755', 'Trimipramine', '0177d783-773c-41bf-9db9-eb7e5c64474a', '2/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3976, 'SUSTIVA (Oral Pill)', '1738135', 'efavirenz', '04b5c345-c446-43a4-83f0-509bc287e10b', '3/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3977, 'Suvorexant (Oral Pill)', '45775760', 'Suvorexant', 'e5b72731-1acb-45b7-9c13-290ad12d3951', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3978, 'SYLATRON (Injectable)', '1797155', 'peginterferon alfa-2b', '3874c95c-092e-4cd5-b104-6ed2bc391b0e', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3979, 'SYNALAR (Topical)', '996541', 'fluocinolone', '4feecef4-553f-4a90-a3ce-a19eb04bd68e', '2/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3980, 'SYNALGOS-DC (Oral Pill)', '1112807', 'Aspirin', '3e863ce5-936c-4145-b14b-76670e21bdad', '5/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3981, 'SYNERA (Transdermal)', '989878', 'Lidocaine', 'b3eee508-8bf3-4bd3-9a71-47ee6ea87f95', '3/5/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3982, 'SYNERCID (Injectable)', '1789517', 'dalfopristin', '28f698df-b584-4455-2e94-6efc41313960', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3983, 'SYNRIBO (Injectable)', '19069046', 'omacetaxine mepesuccinate', '83a504ef-cf92-467d-9ecf-d251194a3484', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3984, '"Synthetic conjugated estrogens, A (Oral Pill)"', '1596779', '"synthetic conjugated estrogens, A"', '410f9433-98ed-4c3f-abb1-2386296d2f72', '8/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3985, '"Synthetic conjugated estrogens, B (Oral Pill)"', '1586808', '"synthetic conjugated estrogens, B"', 'b7aba0b2-72d1-4429-bb64-98b92e9d9433', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3986, 'SYNTHROID (Oral Pill)', '1501700', 'Thyroxine', '1083d90e-398e-4c8f-99a7-4ddf377ffffe', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3987, 'SYPRINE (Oral Pill)', '19004969', 'Trientine', '0ed52ecf-cda9-4a06-bacc-2c2827cc8967', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3988, 'SYSTANE (Ophthalmic)', '948490', 'Polyethylene Glycol 400', '14916d2c-a63d-491e-bd91-a61f300af38a', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3989, 'SYSTANE BALANCE (Ophthalmic)', '929128', 'Propylene glycol', 'c7b1a03a-a5f2-409e-a34a-d6f166671de5', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3990, 'SYSTANE NIGHTTIME (Ophthalmic)', '908523', 'Mineral Oil', '4689c59c-5721-3f91-6c85-e41501998fd0', '5/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3991, 'TABLOID (Oral Pill)', '1437379', 'Thioguanine', '4490128b-e73f-4849-9d6e-e8591639d771', '3/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3992, 'TACHOSIL (Transdermal)', '19054702', 'Fibrinogen', '5918e503-b457-48ab-b68b-243e29651d06', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3993, 'TACLONEX (Topical)', '920458', 'Betamethasone', 'ef43ba2d-20ce-4415-b5c2-e486b836812e', '1/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3994, 'Tacrolimus (Oral Pill)', '950637', 'Tacrolimus', '61dee012-43af-0e9a-3843-9b9b91e022c4', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3995, 'Tacrolimus (Topical)', '950637', 'Tacrolimus', '1bf44a84-14fd-4f80-ad8a-99b1431d631f', '11/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3996, 'TACTINAL (Oral Pill)', '1125315', 'Acetaminophen', '0a5b8720-dec4-4cb2-e054-00144ff88e88', '12/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3997, 'Tadalafil (Oral Pill)', '1336926', 'tadalafil', 'ebddb745-81f9-4b25-8739-b2886032ed26', '3/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3998, 'TAFINLAR (Oral Pill)', '43532299', 'dabrafenib', '803beaaa-33f9-48cc-9a95-c2e887e095b4', '2/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(3999, 'Tag alder pollen extract (Injectable)', '40162097', 'tag alder pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4000, 'TAGAMET (Oral Pill)', '997276', 'Cimetidine', 'e6401e0a-8612-42e8-bf89-2d67243f28dc', '12/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4001, 'TAKE ACTION (Oral Pill)', '1589505', 'Levonorgestrel', '94f251c1-599c-4517-8c60-50a896b06992', '3/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4002, 'TALACEN (Oral Pill)', '1125315', 'Acetaminophen', '927f1bb9-6c13-4229-a5c8-0bf0b4c3bb35', '11/14/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4003, 'Talc (Topical)', '1036667', 'Talc', 'c89eb8fd-6c31-4f8b-8103-1f559424eda1', '7/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4004, 'Talc/Zinc Oxide (Topical)', '1036667', 'Talc', '8ebc1ab4-6dcb-42ec-908b-5b97648331db', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4005, 'Taliglucerase alfa (Injectable)', '42800246', 'taliglucerase alfa', 'fa3cbd5d-677c-4b19-9032-d9182cb69a83', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4006, 'Tall oat grass pollen extract (Injectable)', '40225727', 'tall oat grass pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4007, 'Tamarack pollen extract (Injectable)', '40172606', 'tamarack pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4008, 'TAMBOCOR (Oral Pill)', '1354860', 'Flecainide', 'b764c8b8-7e23-4016-830f-68312d84f3d3', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4009, 'TAMIFLU (Oral Liquid)', '1799139', 'Oseltamivir', '1948cafd-b5b3-4212-9d5d-8c293b1baad5', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4010, 'TAMIFLU (Oral Pill)', '1799139', 'Oseltamivir', '2f912317-c0de-445a-8729-a99a8d2acaad', '5/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4011, 'Tamoxifen (Oral Liquid)', '1436678', 'Tamoxifen', '8e4710a7-8757-49be-8bec-a1dc39e6c695', '10/1/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4012, 'Tamoxifen (Oral Pill)', '1436678', 'Tamoxifen', 'f5ffe9dd-f76d-4aab-9473-81e33b26710b', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4013, 'Tamsulosin (Oral Pill)', '924566', 'tamsulosin', '836447d8-fdea-4fa7-bb2f-e269fcb251f9', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4014, 'TANAC LIQUID (Mucosal)', '917006', 'Benzocaine', '4fec813b-f5ad-4d15-8db5-529d5aa8bcb6', '1/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4015, 'TAPAZOLE (Oral Pill)', '1504620', 'Methimazole', '0659f574-542f-4931-8fe7-d9f6b431bb9a', '3/13/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4016, 'Tapentadol (Oral Liquid)', '19026459', 'tapentadol', 'e921054f-b3f1-4624-8edd-f6628c6f0fd9', '11/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4017, 'Tapentadol (Oral Pill)', '19026459', 'tapentadol', 'e35e8385-db1f-41a8-8307-20979569ac72', '3/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4018, 'TARCEVA (Oral Pill)', '1325363', 'erlotinib', '5783976b-0862-44e5-9b19-0f41d236d5c3', '1/30/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4019, 'TARGRETIN (Oral Pill)', '1389888', 'bexarotene', '1d056725-0576-4338-8089-6336e768ccdc', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4020, 'TARGRETIN (Topical)', '1389888', 'bexarotene', 'e415c4c8-3144-4172-94a0-f4f3243130ae', '2/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4021, 'TARSUM (Shampoo)', '1000995', 'Coal Tar', 'd990a3d8-8be8-44e3-8e84-a6d8da21f3b5', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4022, 'Tasimelteon (Oral Pill)', '44814600', 'tasimelteon', 'ca4a9b63-708e-49e9-8f9b-010625443b90', '12/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4023, 'TASMAR (Oral Pill)', '715727', 'tolcapone', 'a0e47a9d-78e7-4523-983a-aa259f221736', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4024, 'TAVIST (Oral Pill)', '1197677', 'Clemastine', 'da09ea30-067f-45bc-9dc8-6fdd63db9ee1', '9/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4025, 'Tazarotene (Topical)', '947416', 'tazarotene', '75145c21-6ef2-455a-8a67-d48ddd4181a4', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4026, 'TAZORAC (Topical)', '947416', 'tazarotene', 'dd02ea43-7668-4872-a655-ee31c456e345', '7/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4027, 'Tea Tree Oil (Topical)', '19008374', 'Tea Tree Oil', '31952c39-8b43-4e93-b2e8-9388da8bdaf8', '3/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4028, 'TEARS RENEWED (Ophthalmic)', '1319156', 'Dextran 70', '8cb4d4b4-44e5-4584-a4a4-940ad50b2f9d', '5/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4029, 'Teduglutide (Injectable)', '43013171', 'teduglutide', '66b69c1e-b25c-44d3-b5ff-1c1de9a516fa', '1/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4030, 'Tegretol', '19045157', 'carbamazepine', '8d409411-aa9f-4f3a-a52c-fbcb0c3ec053', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4031, 'TEKTURNA (Oral Pill)', '1317967', 'aliskiren', '4c222831-90af-4336-8bf6-5628ddf24326', '1/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4032, 'TEKTURNA HCT (Oral Pill)', '1317967', 'aliskiren', '40d12d97-152d-4fea-bc59-b69e5c29fde2', '11/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4033, 'Telavancin (Injectable)', '40166675', 'telavancin', 'c09655ea-7af5-4443-a769-86e416214f59', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4034, 'TELDRIN HBP (Oral Pill)', '1192710', 'Chlorpheniramine', '4cdbecbe-3219-4083-adc0-5479dc3ad3b9', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4035, 'Telithromycin (Oral Pill)', '1702911', 'telithromycin', 'ba1cca98-f350-4655-88e3-6ef990779fb9', '3/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4036, 'Telmisartan (Oral Pill)', '1317640', 'telmisartan', '209b005e-12d7-3d34-e054-00144ff8d46c', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4037, 'Temazepam (Oral Pill)', '836715', 'Temazepam', 'f1ff672d-0b95-4e1b-9104-a545e02f4ee7', '7/31/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4038, 'TEMODAR (Oral Pill)', '1341149', 'temozolomide', '819571ea-b808-4fd8-93c7-1ea2e33d71cf', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4039, 'TEMOVATE (Topical)', '998415', 'Clobetasol', '830a28fb-9b80-4fbb-99dc-56ec80e4e581', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4040, 'Temozolomide (Oral Pill)', '1341149', 'temozolomide', '819571ea-b808-4fd8-93c7-1ea2e33d71cf', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4041, 'Tenecteplase (Injectable)', '19098548', 'Tenecteplase', '66a1e273-ab59-4e7a-a223-a96b86501f51', '9/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4042, 'TENEX (Oral Pill)', '1344965', 'Guanfacine', '886e050c-dd22-4f35-ac3b-243f091125c3', '7/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4043, 'Tenofovir disoproxil (Oral Pill)', '1710281', 'tenofovir disoproxil', 'e122435e-cd0b-4c90-940a-b7a0d090d866', '4/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4044, 'TENORETIC (Oral Pill)', '1314002', 'Atenolol', '0ebcca1e-ca16-4483-429a-aec5dcacd1dc', '11/8/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4045, 'TENORMIN (Injectable)', '1314002', 'Atenolol', '4f266bf9-05ba-45bd-f683-d156c06d9acc', '12/8/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4046, 'TERAZOL 3 (Vaginal)', '941472', 'terconazole', '61eab575-94e4-41cb-8045-af73424bb316', '7/31/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4047, 'TERAZOL 7 (Vaginal)', '941472', 'terconazole', '61eab575-94e4-41cb-8045-af73424bb316', '12/22/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4048, 'Terazosin (Oral Pill)', '1341238', 'Terazosin', '24a4243f-0855-44c1-bb78-ba6f14b273f9', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4049, 'Terbinafine (Oral Pill)', '1741309', 'terbinafine', 'aa9f660f-29e6-42fe-ba66-ee9387ce0385', '4/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4050, 'Terbinafine (Topical)', '1741309', 'terbinafine', '2a342421-fc4b-4c21-a394-5ddb9d4a96d5', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4051, 'Terbutaline (Injectable)', '1236744', 'Terbutaline', 'cec31032-f366-4524-9e01-63146e473b2b', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4052, 'Terbutaline (Oral Pill)', '1236744', 'Terbutaline', '879be756-991a-42c5-a381-9c8c2ad1fbdb', '3/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4053, 'Terconazole (Vaginal)', '941472', 'terconazole', '2b3923b5-0a97-428c-b8d2-4a3ceb3447a1', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4054, 'TERRAMYCIN (Oral Pill)', '925952', 'Oxytetracycline', 'd30ffe60-a418-4425-883e-58d10417b9bf', '9/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4055, 'Tesamorelin (Injectable)', '40231628', 'tesamorelin', '3de31cec-31dc-4ac4-9717-367a687d22f2', '3/11/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4056, 'TESSALON PERLES (Oral Pill)', '1136601', 'benzonatate', '8edd07a0-5f5b-9000-bafb-dbf8ff7609d4', '8/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4057, 'TESTOPEL (Implant)', '1636780', 'Testosterone', 'a1741a0b-3d4c-42dc-880d-a06e96cce9ef', '7/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4058, 'Testosterone (Buccal)', '1636780', 'Testosterone', '9af8ef50-f650-44ca-a272-135bfce9daca', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4059, 'Testosterone (Implant)', '1636780', 'Testosterone', 'a1741a0b-3d4c-42dc-880d-a06e96cce9ef', '7/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4060, 'Testosterone (Injectable)', '1636780', 'Testosterone', '786cfd08-40a2-420a-bb29-230db15816bc', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4061, 'TESTRED (Oral Pill)', '1506602', 'Methyltestosterone', '09db5a9d-9662-4bfb-824c-9c9aaad488dc', '4/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4062, '"Tetanus toxoid vaccine, inactivated (Injectable)"', '529411', '"tetanus toxoid vaccine, inactivated"', '669abb62-e995-48f1-a80d-e954f9192fa5', '8/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4063, 'Tetrabenazine (Oral Pill)', '836877', 'Tetrabenazine', '5867189c-17bd-4e70-a079-c4730f9950d1', '7/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4064, 'Tetracaine (Injectable)', '1036884', 'Tetracaine', 'b29124f7-c238-4961-b810-f4e7fabe4bb1', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4065, 'Tetracaine (Ophthalmic)', '1036884', 'Tetracaine', '5c7b1de4-9f55-1d0e-ef6d-b0ba2cbaba79', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4066, 'Tetracycline (Oral Pill)', '1836948', 'Tetracycline', 'd07410b3-37e6-4382-97de-0c2676bc1103', '7/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4067, 'Tetracycline (Topical)', '1836948', 'Tetracycline', '8654de63-4200-439d-b3f9-4a21ef1ad0b4', '5/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4068, 'Tetrahydrocannabinol (Oral Pill)', '1037005', 'Tetrahydrocannabinol', '08adbfd9-789a-4888-a9e2-2a6dac867885', '4/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4069, 'Tetrahydrozoline (Nasal)', '941577', 'tetrahydrozoline', '9bea4aec-219f-46a9-9af4-5baab2552073', '9/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4070, 'Tetrahydrozoline (Ophthalmic)', '941577', 'tetrahydrozoline', '253fb4ed-e6e7-4dee-b2c3-364ccf36dde6', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4071, 'Tetrahydrozoline/Zinc Sulfate (Ophthalmic)', '941577', 'tetrahydrozoline', 'ac928224-804c-40c7-b76a-c573ed33535b', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4072, 'TETRAVISC (Ophthalmic)', '1036884', 'Tetracaine', '8534f262-6755-4a3c-980b-c25a6c9110e4', '5/27/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4073, 'TETTERINE (Topical)', '907879', 'Miconazole', '4de96ed4-7506-4acd-8e8d-ea74bfd18e4a', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4074, 'TEVETEN HCT (Oral Pill)', '1346686', 'eprosartan', 'b1dfcac3-ef66-4d3e-9d58-37d3f516eb31', '1/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4075, 'TEXACORT (Topical)', '975125', 'Hydrocortisone', '25279d46-6bad-471f-8bd6-736d53cfd942', '5/8/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4076, 'THALITONE (Oral Pill)', '1395058', 'Chlorthalidone', 'e2eb7dad-3ea3-439c-dcbb-d1d61aa49dfc', '8/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4077, 'THEO-24 XR (Oral Pill)', '1237049', 'Theophylline', '7a108fa0-c230-475f-be93-6f864b98a410', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4078, 'THEOLAIR (Oral Pill)', '1237049', 'Theophylline', '3829d74e-b3ab-46df-a08b-f0327b63304e', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4079, 'Theophylline (Injectable)', '1237049', 'Theophylline', 'c3bb34c1-89b2-48c3-9ad2-16b4b2bce5f9', '5/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4080, 'Theophylline (Oral Liquid)', '1237049', 'Theophylline', '2676f761-4fe5-40a9-a07d-ed2542847883', '11/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4081, 'Theophylline (Oral Pill)', '1237049', 'Theophylline', '3829d74e-b3ab-46df-a08b-f0327b63304e', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4082, 'Theophylline XR (Oral Pill)', '1237049', 'Theophylline', '1750235a-ad52-4231-abe5-d3c441ba39e8', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4083, 'THERA TEARS (Ophthalmic)', '949279', 'Carboxymethylcellulose', '661d8764-8ae6-4229-9485-867553ee8e16', '7/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4084, 'THERACYS (Topical)', '19023835', '"BCG, Live, Connaught Strain"', '8e456333-5a25-4484-84bf-53ece67c000a', '11/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4085, 'THERASEAL HAND PROTECTION (Topical)', '916662', 'dimethicone', '2c8dc616-20c1-4d33-8a89-9bcdb22b35c8', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4086, 'THERATEARS (Ophthalmic)', '949279', 'Carboxymethylcellulose', '17a01236-130f-495b-9f8d-92b6a23b2dc5', '10/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4087, 'THERMAZENE (Topical)', '966956', 'Silver Sulfadiazine', 'b3767ee9-038e-43ff-88bf-2a4577ac608a', '1/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4088, 'Thiamine (Injectable)', '19137312', 'Thiamine', '4a8ea036-44e8-4329-ae13-3ef4ada26dfc', '9/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4089, 'Thioguanine (Oral Pill)', '1437379', 'Thioguanine', '4490128b-e73f-4849-9d6e-e8591639d771', '3/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4090, 'THIOLA (Oral Pill)', '903031', 'tiopronin', '494a714e-923c-cd57-df6c-12886afb265a', '12/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4091, 'Thioridazine (Oral Pill)', '700299', 'Thioridazine', '9c4bedb4-2d59-4fcd-aad7-fce988cd96d8', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4092, 'Thiothixene (Oral Pill)', '700465', 'Thiothixene', '92a1f215-e063-4c3e-89f5-f56d78a4c64e', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4093, 'Thrombin (Topical)', '1300673', 'Thrombin', 'bcf44467-b1eb-479b-8866-a8ac2c780c22', '5/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4094, 'Thyroid (USP) (Oral Pill)', '1501309', 'thyroid (USP)', 'c815faa3-1d02-4680-96ef-5fad1645e99b', '3/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4095, 'THYROLAR (Oral Pill)', '1501700', 'Thyroxine', '7d028b83-5166-4b2e-b442-ba6cbfefbfd6', '5/17/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4096, 'Thyrotropin-Releasing Hormone (Injectable)', '19001701', 'Thyrotropin-Releasing Hormone', 'af5da799-76bf-415a-9dc7-99c7ddc62bc4', '10/24/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4097, 'tiaGABine (Oral Pill)', '715458', 'tiagabine', '25225511-70b8-4377-ad4f-6629025ac75f', '5/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4098, 'TICE BCG (Topical)', '19086176', '"BCG, Live, Tice Strain"', 'c9b74876-e665-442b-87ad-b7333bc9a67a', '3/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4099, 'Ticlopidine (Oral Pill)', '1302398', 'Ticlopidine', '13d85420-75e2-46e7-93eb-dcd10675cd03', '6/3/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4100, 'TIGAN (Injectable)', '942799', 'trimethobenzamide', '97191d37-7c2e-48c6-91bf-0631fd7b1dd8', '1/4/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4101, 'TIGAN (Oral Pill)', '942799', 'trimethobenzamide', '01a95f6d-f7d6-4ed1-a262-3c5848915252', '3/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4102, 'TIGER BALM (Topical)', '938205', 'Camphor', 'ce703715-4c11-472c-9270-daac87b7be05', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4103, 'TIGER BALM LINIMENT (Topical)', '901656', 'Menthol', '51293a06-5922-4072-ae14-afaba9c1b58e', '4/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4104, 'TIGER BALM MUSCLE RUB (Topical)', '938205', 'Camphor', '24385c6e-11d8-4573-ab23-7ad0fa981a84', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4105, 'Timolol (Ophthalmic)', '902427', 'Timolol', 'c9726422-f794-4d39-a437-17dcb8c0f3b5', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4106, 'Timolol (Oral Pill)', '902427', 'Timolol', '57c62928-63d8-4505-9b9e-c085a3a12c95', '6/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4107, 'TIMOPTIC (Ophthalmic)', '902427', 'Timolol', '15ca19c2-f28b-4703-aa23-5af265af9e8b', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4108, 'Timothy grass pollen extract (Injectable)', '40161488', 'Timothy grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '7/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4109, 'Timothy grass pollen extract (Sublingual)', '40161488', 'Timothy grass pollen extract', '1d7f3e56-c233-47a4-9bcd-80098ffff47d', '2/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4110, 'TINACTIN (Topical)', '902950', 'Tolnaftate', 'ec83cef5-d8ea-4df1-aa2a-08c25040b32c', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4111, 'TINDAMAX (Oral Pill)', '1702559', 'Tinidazole', 'a0d01539-8413-4703-94cc-d221918630a1', '7/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4112, 'TINEACIDE ANTIFUNGAL (Topical)', '914244', 'Undecylenate', '3a7caf9f-2552-41be-a7d4-ac3a18b5a0d5', '3/23/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4113, 'TING (Topical)', '902950', 'Tolnaftate', 'bc89b8ec-4f9d-42d8-a38c-9b6284a54a34', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4114, 'Tinidazole (Oral Pill)', '1702559', 'Tinidazole', 'c8169a92-39e3-4794-87f5-13d31f0f15b3', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4115, 'Tinzaparin (Injectable)', '1308473', 'tinzaparin', '1513b960-d9d1-11de-8a1e-0002a5d5c51b', '10/21/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4116, 'Tioconazole (Vaginal)', '942028', 'tioconazole', '22ac4774-87b4-437f-8520-e4a4ed6e1c55', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4117, 'Tiopronin (Oral Pill)', '903031', 'tiopronin', '494a714e-923c-cd57-df6c-12886afb265a', '12/19/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4118, 'Tirofiban (Injectable)', '19017067', 'tirofiban', 'fe0ced75-ccbf-4d2e-bd0d-b57e60ab913f', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4119, 'TISSEEL (Topical)', '19036781', 'Calcium Chloride', 'e1aca067-0c96-4025-88bc-bd2345a46a30', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4120, 'TITRALAC (Chewable)', '19035704', 'Calcium Carbonate', '5d630381-88f0-4406-af0c-95b86c43f3c9', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4121, 'TITRALAC PLUS (Chewable)', '19035704', 'Calcium Carbonate', '68725b83-46fc-47ae-bb5c-51f080dcacfe', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4122, 'TIVICAY (Oral Pill)', '43560385', 'dolutegravir', '63df5af3-b8ac-4e76-9830-2dbb340af922', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4123, 'TIVORBEX (Oral Pill)', '1178663', 'Indomethacin', '04ca474c-798e-43dd-be7a-1b36720e6a3d', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4124, 'tiZANidine (Oral Pill)', '778474', 'tizanidine', 'd24e0cda-a22f-404f-b861-f85090cef099', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4125, 'TL GARD RX (Oral Pill)', '19111620', 'Folic Acid', '737ba5b9-8aec-4593-a93a-d3d0b4a5c529', '5/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4126, 'TNKASE (Injectable)', '19098548', 'Tenecteplase', '66a1e273-ab59-4e7a-a223-a96b86501f51', '9/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4127, 'Tobacco leaf extract (Injectable)', '40162187', 'tobacco leaf extract', 'd71013ab-718c-4cb0-ae1a-31fdd6db8851', '12/18/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4128, 'TOBI (Inhalant)', '902722', 'Tobramycin', '625a4499-4e46-4f5a-8d0c-d104f520d97e', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4129, 'TOBRADEX (Ophthalmic)', '1518254', 'Dexamethasone', '330ac1f7-d583-454d-96bf-37c5af31a369', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4130, 'TOBRAFLEX (Ophthalmic)', '955583', 'Fluorometholone', 'cbdf11f4-d84c-4c4a-aac2-f8c23304fb02', '3/13/08', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4131, 'Tobramycin (Inhalant)', '902722', 'Tobramycin', 'da1e5afd-d707-4af1-8935-8195ba6d769f', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4132, 'Tobramycin (Injectable)', '902722', 'Tobramycin', '8cfeb84f-193a-458a-bdec-205d9274e1a4', '4/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4133, 'Tobramycin (Ophthalmic)', '902722', 'Tobramycin', 'cdd423c5-a231-47d4-bf51-00b5c29e6a60', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4134, 'TOBREX (Ophthalmic)', '902722', 'Tobramycin', '3d4be22b-7a8c-4247-ac35-143611342de1', '7/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4135, 'Tofacitinib (Oral Pill)', '42904205', 'tofacitinib', '68e3d6b2-7838-4d2d-a417-09d919b43e13', '11/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4136, 'TOLAZamide (Oral Pill)', '1502809', 'Tolazamide', 'f82dcff5-4afa-45d8-bc8c-f0f7c0c96272', '1/23/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4137, 'TOLBUTamide (Oral Pill)', '1502855', 'Tolbutamide', '3995eed8-39ec-ce5e-8cc2-062f93445c8d', '6/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4138, 'Tolcapone (Oral Pill)', '715727', 'tolcapone', 'a0e47a9d-78e7-4523-983a-aa259f221736', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4139, 'Tolmetin (Oral Pill)', '1102917', 'Tolmetin', '6e0228a8-e3d3-4ae9-8873-d7aa3e0dcfee', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4140, 'Tolnaftate (Topical)', '902950', 'Tolnaftate', '7357adcd-437d-4651-8922-6ef830f9f85a', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4141, 'Tolterodine (Oral Pill)', '913782', 'tolterodine', '304023e8-57ad-4dd7-9cf0-a4524623aa6c', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4142, 'TOPAMAX (Oral Pill)', '742267', 'topiramate', 'cea5f748-3127-4d36-83af-9ab3cf58503c', '6/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4143, 'TOPEX (Oral Gel)', '917006', 'Benzocaine', '87083cc6-fedc-4676-84e1-3134f690dfa9', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4144, 'TOPICAL HEMO-STAT (Mucosal)', '957393', 'aluminum chloride', '6223c9d2-5944-4ca1-bf6f-24047a51a5f5', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4145, 'TOPICORT (Topical)', '917336', 'Desoximetasone', '96dfac6f-540f-4b7d-bcee-7e62088ebc93', '10/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4146, 'Topiramate (Oral Pill)', '742267', 'topiramate', 'cea5f748-3127-4d36-83af-9ab3cf58503c', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4147, 'Topotecan (Injectable)', '1378509', 'Topotecan', '996430c0-ee26-4ed9-82b8-a8b645becba6', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4148, 'Toremifene (Oral Pill)', '1342346', 'Toremifene', '2cab8dd1-3a10-48e6-86ce-0e5275ed49e5', '11/29/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4149, 'Torsemide (Injectable)', '942350', 'torsemide', 'f95454ab-33fa-483b-bba3-91d6562765c3', '4/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4150, 'Torsemide (Oral Pill)', '942350', 'torsemide', 'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4151, 'TRADJENTA (Oral Pill)', '40239216', 'Linagliptin', 'dfe327e8-f6ab-41e5-bdef-d520118cd83a', '7/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4152, 'traMADol (Oral Pill)', '1103314', 'Tramadol', 'd5ab4f08-1d12-4c64-b3bf-e72c705aeca8', '8/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4153, 'TRANDATE (Oral Pill)', '1386957', 'Labetalol', 'a4195473-51a9-40f1-8678-1478ebca2d84', '12/7/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4154, 'Trandolapril (Oral Pill)', '1342439', 'trandolapril', '26404e50-011e-4068-9745-647d2de681a3', '7/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4155, 'Tranexamic Acid (Injectable)', '1303425', 'Tranexamic Acid', '6f033f1e-8c78-4c87-b870-6493944315ff', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4156, 'Tranexamic Acid (Oral Pill)', '1303425', 'Tranexamic Acid', 'add851b1-0f2d-46e9-b122-f4f5ff216539', '11/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4157, 'TRANSANOSIL (Topical)', '939881', 'Capsaicin', '14b76eca-29f6-4dbd-890b-f72865877ad3', '8/27/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4158, 'TRANXENE (Oral Pill)', '790253', 'clorazepate', '9c7ab45c-7461-6e4e-ee6d-f0ebe3eb4a28', '8/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4159, 'Tranylcypromine (Oral Pill)', '703470', 'Tranylcypromine', 'cd45db80-3cf3-4714-989b-de11f249bdfb', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4160, 'Trastuzumab (Injectable)', '1387104', 'trastuzumab', '492dbdb2-077e-4064-bff3-372d6af0a7a2', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4161, 'TRASYLOL (Injectable)', '19000729', 'Aprotinin', '8a5982c6-825f-4d05-90f5-1519a7291d15', '5/17/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4162, 'TRAVATAN (Ophthalmic)', '904501', 'travoprost', 'db08d5f3-6713-4372-a66c-fad3018ef5c6', '9/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4163, 'TRAVEL-EASE (Oral Pill)', '994341', 'Meclizine', 'c941f16b-b192-4a10-aabe-cc25ee8cc445', '3/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4164, 'Travoprost (Ophthalmic)', '904501', 'travoprost', 'db08d5f3-6713-4372-a66c-fad3018ef5c6', '9/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4165, 'traZODone (Oral Pill)', '703547', 'Trazodone', '10124262-e443-49a5-a1cc-8cc34c74d953', '3/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4166, 'TRETIN X (Topical)', '903643', 'Tretinoin', '1cecc7e2-00bd-4c63-af1d-723aaf892f60', '8/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4167, 'Tretinoin (Oral Pill)', '903643', 'Tretinoin', '0f81f505-a962-414e-8612-c3ef3b159e9a', '7/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4168, 'Tretinoin (Topical)', '903643', 'Tretinoin', 'ac92dfd3-6517-43d0-b6c1-b86fdf3a761f', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4169, 'TRETTEN (Injectable)', '19106100', 'factor XIII', '8664978e-1814-4930-aca5-97a24455f6df', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4170, 'TREXALL (Oral Pill)', '1305058', 'Methotrexate', 'e942f8db-510f-44d6-acb5-b822196f5e8c', '5/21/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4171, 'TREZIX (Oral Pill)', '1125315', 'Acetaminophen', '63841f53-a567-4102-80b5-3565d9b52373', '7/18/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4172, 'TRI-CHLOR (Topical)', '987009', 'Trichloroacetate', 'd929f1d6-3234-491c-b084-644c91e61302', '10/8/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4173, 'TRI-LUMA (Topical)', '996541', 'fluocinolone', 'a35fa709-5eb5-4429-b38f-f1e0019bf0ee', '4/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4174, 'TRIACIN C (Oral Liquid)', '1201620', 'Codeine', '6cc01bb7-27c5-43c4-8e21-64ecbfbb4fa2', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4175, 'Triamcinolone (Injectable)', '903963', 'Triamcinolone', '53522b35-6215-4e9c-b51d-8b81728e0817', '8/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4176, 'Triamcinolone (Oral Paste)', '903963', 'Triamcinolone', 'b353c8b1-9088-4969-8199-37876f2461cc', '10/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4177, 'Triamcinolone (Topical)', '903963', 'Triamcinolone', '5b1d1510-118f-4b82-9119-386d572971d2', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4178, 'TRIAMINIC COLD AND ALLERGY REFORMULATED JAN 2014 (Oral Liquid)', '1130863', 'Brompheniramine', '0da4b415-6aaf-4c64-9c1c-f59e7edc4db2', '1/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4179, 'TRIAMINIC COUGH & SORE THROAT REFORMULATED JUL 2007 (Oral Liquid)', '1125315', 'Acetaminophen', 'bccbf604-768c-4e20-995a-bb0212374202', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4180, 'TRIAMINIC COUGH AND CONGESTION (Oral Liquid)', '1119510', 'Dextromethorphan', '85cdcb69-2336-4e36-9f24-711d391f3215', '6/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4181, 'TRIAMINIC DAY TIME COLD & COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', '9437b637-fb70-41dd-8ead-d79698a61e22', '7/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4182, 'TRIAMINIC FEVER & PAIN (Oral Liquid)', '1125315', 'Acetaminophen', 'd8b68434-2d0b-4431-b79d-7d6510f50e1b', '10/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4183, 'TRIAMINIC LONG ACTING COUGH (Oral Liquid)', '1119510', 'Dextromethorphan', '83bb1f25-23e8-4827-bfc4-25ff3c87de18', '10/1/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4184, 'TRIAMINIC NIGHT TIME COLD & COUGH (Oral Liquid)', '1129625', 'Diphenhydramine', '40ae8bfc-4007-4483-bb08-cf32f2e802c6', '11/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4185, 'Triamterene (Oral Pill)', '904542', 'Triamterene', 'ffe24e3d-cfe8-4d5a-8213-69f0bbc9f4d5', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4186, 'TRIANEX (Topical)', '903963', 'Triamcinolone', 'cde13809-a606-12ca-aece-f2ae594baa71', '2/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4187, 'Triazolam (Oral Pill)', '704599', 'Triazolam', '6d743386-a8e4-4a3f-ac82-c046896f35ae', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4188, 'Trichloroacetate (Topical)', '987009', 'Trichloroacetate', '1c515490-1d4a-408c-8a99-0f9b34dbe270', '9/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4189, 'Trichophyton mentagrophytes extract (Injectable)', '40167348', 'Trichophyton mentagrophytes extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4190, 'Trichothecium roseum extract (Injectable)', '40175764', 'Trichothecium roseum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4191, 'Triclosan (Soap)', '1704758', 'Triclosan', '439c9213-b6b2-4dd6-bf5c-1d2209cb28c8', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4192, 'Triclosan (Topical)', '1704758', 'Triclosan', '3fc53a6d-15cb-44d0-8e0c-e0ab48a6f748', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4193, 'TRICOR (Oral Pill)', '1551803', 'Fenofibrate', '194cd14a-d952-4507-91be-3f1d5371d3b8', '6/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4194, 'Trientine (Oral Pill)', '19004969', 'Trientine', 'c34f77a7-996b-4470-b5df-d946a7fe5dbe', '1/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4195, 'TRIESENCE (Injectable)', '903963', 'Triamcinolone', '3f045347-3e5e-4bbd-90f8-6c3100985ca5', '6/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4196, 'Trifluoperazine (Oral Pill)', '704984', 'Trifluoperazine', '10b124e8-3167-4b2c-85f1-197b5aa8dabf', '4/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4197, 'Trifluridine (Ophthalmic)', '905078', 'Trifluridine', 'f3a14d86-0ff2-4535-318c-ac8bc8ede42c', '6/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4198, 'Trihexyphenidyl (Oral Liquid)', '705178', 'Trihexyphenidyl', 'd6f08000-e973-4bab-810c-b69f6c8ee4f3', '6/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4199, 'Trihexyphenidyl (Oral Pill)', '705178', 'Trihexyphenidyl', 'd25fa10c-cc9c-4d8c-9896-4ccc544bbbde', '8/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4200, 'Triiodothyronine (Injectable)', '1505346', 'Triiodothyronine', '4cd4baf4-18d2-434f-b80b-4f4b19996cf9', '5/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4201, 'Triiodothyronine (Oral Pill)', '1505346', 'Triiodothyronine', 'fecd164d-1344-4d2f-97a7-ebe972470d2b', '9/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4202, 'TRILEPTAL (Oral Pill)', '718122', 'oxcarbazepine', 'd9741f36-0abd-49b7-9f43-e9700663122b', '2/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4203, 'TRILIPIX (Oral Pill)', '1551803', 'Fenofibrate', '3057fc9c-ff77-43eb-b687-776660423742', '1/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4204, 'Trilostane (Oral Pill)', '19042801', 'trilostane', '22a5e838-c9a3-40d2-84cd-15df6ada913b', '9/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4205, 'Trimethobenzamide (Injectable)', '942799', 'trimethobenzamide', 'c1d3cc1f-f990-42b1-bc42-3551c1bfa12a', '7/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4206, 'Trimethobenzamide (Oral Pill)', '942799', 'trimethobenzamide', '760afbcd-bc81-4595-82c8-ec1cbd7c2b08', '2/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4207, 'Trimethoprim (Oral Liquid)', '1705674', 'Trimethoprim', 'a06ea7d8-a884-4b62-a87f-c36d824f2aa4', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4208, 'Trimethoprim (Oral Pill)', '1705674', 'Trimethoprim', '7d25e3f9-7b0d-452d-953e-f100bb0f2db7', '7/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4209, 'Trimetrexate (Injectable)', '1750928', 'Trimetrexate', 'ad0f8925-f817-4460-aa6b-172a043a440b', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4210, 'Trimipramine (Oral Pill)', '705755', 'Trimipramine', '0177d783-773c-41bf-9db9-eb7e5c64474a', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4211, 'TRIMOX (Oral Pill)', '1713332', 'Amoxicillin', '2f4c571b-a27e-40ef-b0cd-e6e44ac9a15e', '12/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4212, 'TRIOSTAT (Injectable)', '1505346', 'Triiodothyronine', '4cd4baf4-18d2-434f-b80b-4f4b19996cf9', '5/7/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4213, 'TRIPLE PASTE (Topical)', '911064', 'Zinc Oxide', 'f9fd9395-48bc-43be-a3d9-ec7fcad339a9', '1/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4214, 'TRIPLE PASTE AF (Topical)', '907879', 'Miconazole', '8d19b86d-b63c-485f-b143-2bc35f76c659', '11/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4215, 'Triprolidine (Oral Liquid)', '1105889', 'Triprolidine', 'cc466d33-cf3e-4f1c-a794-6d3d79903adf', '3/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4216, 'TRISENOX (Injectable)', '1333379', 'arsenic trioxide', 'dec51fab-3784-deb7-752f-2d4d5692a20f', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4217, 'TRIUMEQ (Oral Pill)', '1736971', 'abacavir', '2997739a-aa91-42aa-a206-a70e2db7b84f', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4218, 'TRIZIVIR (Oral Pill)', '1736971', 'abacavir', '3354e50f-4dc5-413f-b5ae-87353ab8913d', '4/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4219, 'Trolamine salicylate (Topical)', '943116', 'trolamine salicylate', 'e1cfadb7-7370-4735-a87a-071c6eedd87a', '9/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4220, 'TRONOLANE ANESTHETIC (Rectal)', '927478', 'pramoxine', '0d5ba4f1-1178-490d-8524-143d0aa2f0ef', '3/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4221, 'Tropicamide (Ophthalmic)', '906072', 'Tropicamide', '0d4f4a2e-eb00-4c65-b3fa-baf5738d468d', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4222, 'Trospium (Oral Pill)', '991825', 'Trospium', '0ac65eae-b3dd-4cda-aec2-ff1e954a93a4', '5/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4223, 'Trovafloxacin (Oral Pill)', '1712549', 'trovafloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', '7/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4224, 'TROVAN (Oral Pill)', '1712549', 'trovafloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', '7/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4225, 'TROVAN IV (Injectable)', '19018154', 'alatrofloxacin', 'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', '7/13/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4226, 'TRU-MICIN (Topical)', '943116', 'trolamine salicylate', '49c41d92-9c48-4245-b251-13226fb11c94', '6/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4227, 'TRUSOPT (Ophthalmic)', '981709', 'dorzolamide', '26d26f80-aebf-441c-6383-327cb95eae4d', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4228, 'TRUVADA (Oral Pill)', '1703069', 'emtricitabine', 'd0b3d18b-7e5d-49ea-bcaf-8408414e8094', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4229, 'TUBERSOL (Injectable)', '19058274', 'Purified Protein Derivative of Tuberculin', '96d91ba3-9dfe-4420-a835-57647ea30b40', '5/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4230, 'TUCKS HEMORRHOIDAL (Rectal)', '908523', 'Mineral Oil', '347ff421-3ad9-409f-8731-af0183682e12', '8/8/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4231, 'TUCKS SUPPOSITORIES (Rectal)', '1036157', 'Starch', '1b051fc4-bc4c-4eb6-96f8-f40e577c3072', '8/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4232, 'TUMS (Chewable)', '19035704', 'Calcium Carbonate', '91b240f2-856c-44cf-a3de-a6ead2891f0d', '5/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4233, 'TUSNEL C (Oral Liquid)', '1201620', 'Codeine', '403935ac-5111-4f8b-80ae-1bd47ae774c7', '1/31/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4234, 'TUSNEL DIABETIC (Oral Liquid)', '1119510', 'Dextromethorphan', '66b3c094-809e-4d2c-bc15-46563de685cb', '4/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4235, 'TUSSIGON (Oral Pill)', '1101703', 'homatropine', '6c0bba34-07db-42f5-9e5e-ad79b71b4276', '10/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4236, 'TYBOST (Oral Pill)', '42874220', 'cobicistat', '3784c35c-e87f-410c-900b-8fd6313c6010', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4237, 'TYLENOL (Oral Liquid)', '1125315', 'Acetaminophen', 'ad40b276-fbff-4b8d-9197-32345573fa80', '7/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4238, 'TYLENOL (Oral Pill)', '1125315', 'Acetaminophen', '937d3bee-2c37-4dac-a79b-2c2b2075db7d', '8/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4239, 'TYLENOL PM (Oral Pill)', '1125315', 'Acetaminophen', '1b6e88d7-8e18-4838-9cee-db876f14f14f', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4240, 'TYLENOL WITH CODEINE (Oral Pill)', '1125315', 'Acetaminophen', '96847717-e3ff-42ee-a25b-1df72c427572', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4241, 'TYPHIM VI (Injectable)', '532881', '"Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain"', 'ad1fbe7f-2995-45dd-92f3-7baccaab85d9', '4/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4242, '"Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain (Injectable)"', '532881', '"Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain"', 'ad1fbe7f-2995-45dd-92f3-7baccaab85d9', '4/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4243, 'TYZINE (Nasal)', '941577', 'tetrahydrozoline', '9bea4aec-219f-46a9-9af4-5baab2552073', '9/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4244, 'U-CORT (Topical)', '975125', 'Hydrocortisone', '1eb217be-34f1-4b3b-a3a5-4dfb83fb6143', '3/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4245, 'ULESFIA (Topical)', '919681', 'Benzyl Alcohol', 'aeba2488-1ac3-4c02-833c-78a36859f029', '7/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4246, 'Ulipristal (Oral Pill)', '40225722', 'ulipristal', '052bfe45-c485-49e5-8fc4-51990b2efba4', '7/2/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4247, 'ULORIC (Oral Pill)', '19017742', 'febuxostat', '3803df6e-b765-4917-ab0e-4d91a23be47f', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4248, 'ULTIVA (Injectable)', '19016749', 'remifentanil', 'dbc63b6e-f8c5-4fd0-8ec3-4f5e19125313', '3/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4249, 'ULTRACET (Oral Pill)', '1125315', 'Acetaminophen', '2d20df3c-8b5b-4bdf-a49f-ec904522575d', '8/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4250, 'ULTRAM (Oral Pill)', '1103314', 'Tramadol', '288ddb7b-29e4-46c7-9d84-38a188231710', '12/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4251, 'ULTRASAL (Topical)', '964407', 'Salicylic Acid', 'a01a3ccd-d9bc-40b6-b269-cddd6d0e47c5', '10/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4252, 'ULTRAVATE (Topical)', '949759', 'halobetasol', 'b73836e9-7ccc-41bb-b4ef-65ad2d865085', '2/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4253, 'ULTRESA (Oral Pill)', '919204', 'Amylases', '73861076-218d-4f8e-872d-0e0690c374a8', '4/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4254, 'UMECTA (Topical)', '906914', 'Urea', 'fd7b3fe5-8ba6-4808-8ead-1b20a87a2ed2', '1/3/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4255, 'UMECTA PD (Topical)', '787787', 'hyaluronate', 'ce953fdf-a73a-4f7e-8946-959346990626', '12/2/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4256, 'Undecylenate (Topical)', '914244', 'Undecylenate', 'eaedf82d-2fae-4360-8a88-f2f62ae9a18c', '8/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4257, 'UNISOM SLEEP (Oral Disintegrating)', '1129625', 'Diphenhydramine', '9105f4f1-7f94-408d-a025-83afb68dc9f0', '5/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4258, 'UNISOM SLEEP (Oral Pill)', '1129625', 'Diphenhydramine', '17383d22-91cc-4d9e-a0b8-3f7d9a18af83', '3/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4259, 'UNITHROID (Oral Pill)', '1501700', 'Thyroxine', '07562e72-7eaa-4ce6-94f0-e08814787e50', '7/3/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4260, 'UNIVASC (Oral Pill)', '1310756', 'moexipril', 'e16c2ad3-1ce5-48fc-96b2-5d63dc6b68d5', '10/4/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4261, 'URAMAXIN (Topical)', '906914', 'Urea', '67993648-4930-4a98-8d26-5995b4e58b45', '4/27/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4262, 'Urea (Topical)', '906914', 'Urea', '0e5d02d2-fa60-46e9-b45c-9fd5ee51a637', '1/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4263, 'URECHOLINE (Oral Pill)', '937439', 'Bethanechol', '5513ddc8-90c8-4548-8188-5a807465cdc4', '9/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4264, 'URELLE (Oral Pill)', '923672', 'Hyoscyamine', 'd801fc5b-f0df-4347-9b9b-8f439328cdde', '1/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4265, 'URIBEL (Oral Pill)', '923672', 'Hyoscyamine', 'fa2cc334-bd86-46cc-bc6a-12c71303f963', '8/2/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4266, 'URICALM INTENSIVE (Oral Pill)', '1125315', 'Acetaminophen', '99730efd-aa2a-4437-bef2-60aa3f349905', '9/30/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4267, 'UROCIT-K XR (Oral Pill)', '976545', 'potassium citrate', 'd2c923d5-85c1-4bbb-9f93-556080a5ef87', '4/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4268, 'Urofollitropin (Injectable)', '1515417', 'Urofollitropin', '46f7740f-c879-4a77-9a16-2821fd772641', '9/28/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4269, 'UROGESIC BLUE REFORMULATED APR 2012 (Oral Pill)', '923672', 'Hyoscyamine', '36527dcb-dc17-469c-8286-b752b0d8badf', '2/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4270, 'URSO (Oral Pill)', '988095', 'Ursodeoxycholate', 'e8fc4fc2-fe5c-4cba-b6e0-5ceaf2157a61', '6/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4271, 'Ursodeoxycholate (Oral Pill)', '988095', 'Ursodeoxycholate', 'c9aa0223-3ea4-4cb7-b53b-f35e5a04cec7', '8/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4272, 'UTA CAPSULE (Oral Pill)', '923672', 'Hyoscyamine', '206ac12b-a081-4e37-aa0e-73b8794608d8', '7/19/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4273, 'UVADEX (Injectable)', '905223', 'Methoxsalen', '5ad333bd-845f-43f8-9ecf-43491f26c7c7', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4274, 'VAGIFEM (Vaginal)', '1548195', 'Estradiol', 'd67888ac-5041-4758-88db-845a41f67df4', '3/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4275, 'VAGISIL ORIGINAL FORMULA (Vaginal)', '917006', 'Benzocaine', '4929a228-44bc-4f1c-b1d9-a82132c5c278', '9/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4276, 'VAGISTAT (Vaginal)', '907879', 'Miconazole', 'c91cba6b-61fc-4708-9edb-3ba086cc1038', '9/30/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4277, 'valACYclovir (Oral Pill)', '1717704', 'valacyclovir', 'c31fdda3-217c-c452-eb9b-aba705456aa1', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4278, 'VALCHLOR (Topical)', '1394337', 'Mechlorethamine', '706bd420-2f32-11e0-aaee-0002a5d5c51b', '10/21/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4279, 'VALCYTE (Oral Liquid)', '1703063', 'valganciclovir', 'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4280, 'VALCYTE (Oral Pill)', '1703063', 'valganciclovir', 'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4281, 'Valdecoxib (Oral Pill)', '1103374', 'valdecoxib', 'caf64301-262c-45ca-acd1-a9d6696c584e', '3/23/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4282, 'valGANciclovir (Oral Liquid)', '1703063', 'valganciclovir', 'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4283, 'valGANciclovir (Oral Pill)', '1703063', 'valganciclovir', '4db6dd63-e56b-45a4-86b2-ee125a1854a0', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4284, 'VALIUM (Oral Pill)', '723013', 'Diazepam', '957f79d9-2bcb-4e6b-885d-fa34851f062d', '1/29/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4285, 'Valproate (Injectable)', '745466', 'Valproate', '7a687b2f-246d-4736-a20c-92421c263268', '6/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4286, 'Valproate (Oral Liquid)', '745466', 'Valproate', 'caf12ea3-06c8-44c1-9e89-3ecaff89a22b', '3/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4287, 'Valproate (Oral Pill)', '745466', 'Valproate', 'f738ddad-fef0-43cb-b791-b046fdcec311', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4288, 'Valsartan (Oral Pill)', '1308842', 'valsartan', '8e4382de-df78-4821-b11e-c423442a7ff8', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4289, 'VALTREX (Oral Pill)', '1717704', 'valacyclovir', 'b4450539-78ec-4e8a-8cfc-56dcde7984a0', '6/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4290, 'VANACOF-8 (Oral Liquid)', '1150886', 'chlophedianol', 'fc6b92e8-932a-4040-b424-c2cb5b1b503c', '9/10/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4291, 'VANCOCIN (Oral Pill)', '1707687', 'Vancomycin', 'b7f386c7-8b78-4751-b6ae-e171925c2d54', '8/6/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4292, 'Vancomycin (Injectable)', '1707687', 'Vancomycin', 'b01aaa02-8f1d-4b57-96a5-337503428af1', '8/18/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4293, 'Vancomycin (Oral Pill)', '1707687', 'Vancomycin', 'a078d9c2-f89c-4f9f-8ded-60ffb2983c3f', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4294, 'VANDAZOLE (Vaginal)', '1707164', 'Metronidazole', '27d71471-8f89-4a1e-8c55-020a58961454', '10/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4295, 'Vandetanib (Oral Pill)', '40238052', 'Vandetanib', 'd2a87691-c9ad-4753-97a1-311fccfe6515', '2/13/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4296, 'VANIPLY (Topical)', '916662', 'dimethicone', '53f53dc6-21e3-4f55-bc0f-b0615dd8c8cf', '2/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4297, 'VANIQA (Topical)', '978236', 'Eflornithine', 'a2c3d206-b893-4f65-a2f6-c11fa9a0e486', '9/10/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4298, 'VANOS (Topical)', '955252', 'Fluocinonide', '34b91547-31f6-4043-b91c-16c9ebd81349', '12/10/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4299, 'VANOXIDE-HC (Topical)', '918172', 'Benzoyl Peroxide', '1f0edbd9-103e-4a49-b7a8-6552ef172c13', '10/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4300, 'VAPRISOL (Injectable)', '19010927', 'conivaptan', '5150d9d9-01dc-4a52-9858-214c66d8caea', '5/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4301, 'Vardenafil (Oral Disintegrating)', '1311276', 'vardenafil', '0e5139d8-bf61-4f21-a36b-81b96b9b07d1', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4302, 'Vardenafil (Oral Pill)', '1311276', 'vardenafil', 'b3bbc16e-8305-469a-9dc3-8e698339a98b', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4303, 'Varenicline (Oral Pill)', '780442', 'varenicline', '2468ba8d-4c77-4ea0-88d8-b64497a72222', '9/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4304, 'Varicella-zoster immune globulin (Injectable)', '543291', 'varicella-zoster immune globulin', 'ac96a331-e2ff-4839-a4d5-fda3d858c969', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4305, 'VARITHENA (Injectable)', '40175900', 'polidocanol', 'dfd6b4a0-b0dc-11e2-9e96-0800200c9a66', '3/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4306, 'VARIZIG (Injectable)', '543291', 'varicella-zoster immune globulin', 'ac96a331-e2ff-4839-a4d5-fda3d858c969', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4307, 'VASELINE (Topical)', '19033354', 'Petrolatum', 'eb182cdf-985e-4039-b426-fcbaef1ef78d', '12/8/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4308, 'VASOCON (Ophthalmic)', '914533', 'Naphazoline', '0f25812f-96ab-44f4-bacf-2eb012cbddc7', '9/18/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4309, 'Vasopressin (USP) (Injectable)', '1507835', 'Vasopressin (USP)', '977ab16e-c2c1-4aa2-98cb-af065b37c944', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4310, 'VASOSTRICT (Injectable)', '1507835', 'Vasopressin (USP)', 'b1147beb-743e-4c62-8927-91192447f8b8', '10/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4311, 'VASOTEC (Oral Pill)', '1341927', 'Enalapril', 'da4704d6-dc9e-4539-809e-4bdbc898043a', '10/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4312, 'VECAMYL (Oral Pill)', '1394333', 'Mecamylamine', '0774cc48-7287-4093-91d6-9df41a81408a', '6/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4313, 'VECTICAL (Topical)', '19035631', 'Calcitriol', 'a1567da9-af74-4afd-9ac5-8b53ec5d7cbf', '3/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4314, 'Vecuronium (Injectable)', '19012598', 'Vecuronium', '96e69586-e9af-4b07-990f-12d93faa7edd', '6/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4315, 'Vedolizumab (Injectable)', '45774639', 'vedolizumab', '6e94621c-1a95-4af9-98d1-52b9e6f1949c', '5/23/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4316, 'VELETRI (Injectable)', '1354118', 'Epoprostenol', 'df502787-46ec-4dd1-a2c0-be90f6d95a5d', '7/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4317, 'Velvet grass pollen extract (Injectable)', '40162058', 'velvet grass pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4318, 'Venlafaxine (Oral Pill)', '743670', 'venlafaxine', '6490e629-062b-4caa-a0aa-3d9c75c693d7', '9/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4319, 'VENOFER (Injectable)', '1395773', '"ferric oxide, saccharated"', 'f1ab1a22-2b99-4d27-8b5a-9c3bcd5e3040', '1/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4320, 'Verapamil (Oral Pill)', '1307863', 'Verapamil', '0c604923-4a37-45ac-ad93-3610a5eadc16', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4321, 'Verapamil XR (Oral Pill)', '1307863', 'Verapamil', '887b91f5-f117-47e6-8d59-87ac61d17175', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4322, 'VERSACLOZ (Oral Liquid)', '800878', 'Clozapine', '693cb9d4-39db-4ecf-9eae-b01f06f8d5d1', '9/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4323, 'Verteporfin (Injectable)', '912803', 'Verteporfin', '952f4c80-50b1-4308-9ee6-311ffefb13df', '1/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4324, 'VERTICALM (Oral Pill)', '994341', 'Meclizine', '5ce8022e-9d09-4e38-b952-9c7b118ac0fa', '4/16/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4325, 'Verticillium albo-atrum extract (Injectable)', '40175719', 'Verticillium albo-atrum extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4326, 'VESICARE (Oral Pill)', '916005', 'Solifenacin', 'e433dc68-6b2a-4c48-beae-4ec946f1ff1e', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4327, 'VFEND (Injectable)', '1714277', 'voriconazole', '08d08721-1f4c-478a-8abf-d9c402d50553', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4328, 'VFEND (Oral Pill)', '1714277', 'voriconazole', 'ac3e3964-90c0-44dd-800c-ec9606629572', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4329, 'VIAGRA (Oral Pill)', '1316262', 'sildenafil', '1da7847b-16e4-4bf1-957f-3894d023b339', '5/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4330, 'VIBATIV (Injectable)', '40166675', 'telavancin', '9fc67b76-9ba1-45ec-9749-ca3f3a6477d9', '12/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4331, 'VICKS VAPODROPS (Oral Lozenge)', '901656', 'Menthol', 'ff232f72-1ccd-457a-a64d-66c89fd9a510', '10/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4332, 'VICKS VAPORUB (Topical)', '938205', 'Camphor', 'e69a7c9b-fd04-4109-a7c8-6edfd83855fc', '10/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4333, 'VICKS VAPOSTEAM (Inhalant)', '938205', 'Camphor', '196a38e2-efe5-4fc8-a5bd-eb9e9f07ba8b', '10/12/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4334, 'VICODIN (Oral Pill)', '1125315', 'Acetaminophen', '496ed99b-7bce-4ade-b7c3-6c59feebce6f', '5/16/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4335, 'VIDAZA (Injectable)', '1314865', 'Azacitidine', 'e437efe0-9c6a-4f87-b3b4-de90443b095f', '12/23/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4336, 'VIGAMOX (Ophthalmic)', '1716903', 'moxifloxacin', '68cca7e1-120c-4ac6-8851-15a17e11bd9f', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4337, 'VIIBRYD (Oral Pill)', '40234834', 'vilazodone', 'bfef9e19-d0f5-40fa-954c-b73c812eb242', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4338, 'Vilazodone (Oral Pill)', '40234834', 'vilazodone', 'bfef9e19-d0f5-40fa-954c-b73c812eb242', '9/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4339, 'VIMOVO (Oral Pill)', '904453', 'Esomeprazole', 'baa47781-7151-4c75-a9a2-d2eac0a7d55e', '6/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4340, 'vinBLAStine (Injectable)', '19008264', 'Vinblastine', 'f073b58e-56d6-4c8d-a2ce-b37719402d77', '1/25/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4341, 'VINCASAR (Injectable)', '1308290', 'Vincristine', '01cee93f-3ab9-44fa-8c9a-dd5958fd2db9', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4342, 'vinCRIStine (Injectable)', '1308290', 'Vincristine', '01cee93f-3ab9-44fa-8c9a-dd5958fd2db9', '10/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4343, 'Vincristine liposome (Injectable)', '42874135', 'vincristine liposome', 'a1869e23-b93b-4407-843b-4b830319d82e', '1/14/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4344, 'Vinorelbine (Injectable)', '1343346', 'vinorelbine', 'dd3dcc9a-e40c-4677-9ee6-f318e7c7d835', '1/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4345, 'VIOKACE (Oral Pill)', '919204', 'Amylases', 'd85c7e20-4e1d-43cd-a64b-ced3bda70eed', '5/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4346, 'VIRACEPT (Oral Pill)', '1715472', 'Nelfinavir', '84948e6a-971f-4e86-928e-7d32a1883a23', '3/28/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4347, 'VIRAMUNE (Oral Pill)', '1769389', 'Nevirapine', '46fb9dbc-5345-48a4-a0ec-75039622c76c', '6/11/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4348, 'VIREAD (Oral Pill)', '1710281', 'tenofovir disoproxil', 'e122435e-cd0b-4c90-940a-b7a0d090d866', '4/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4349, 'VIROPTIC (Ophthalmic)', '905078', 'Trifluridine', 'f3a14d86-0ff2-4535-318c-ac8bc8ede42c', '6/26/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4350, 'VISICOL (Oral Pill)', '991710', '"Sodium Phosphate, Dibasic"', '57ccd52e-5b13-4b39-8aa0-ebecc49a7db4', '12/15/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4351, 'VISINE AC (Ophthalmic)', '941577', 'tetrahydrozoline', '159f0bae-7a3d-42d8-8572-aebcabae86ba', '9/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4352, 'VISINE ADVANCED RELIEF (Ophthalmic)', '1319156', 'Dextran 70', '619c2e09-aa29-4225-89b9-d2582f89ebe9', '1/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4353, 'VISINE PURE TEARS (Ophthalmic)', '961145', 'Glycerin', 'fe902038-7afc-4c54-93fd-1744ca9c659e', '9/21/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4354, 'VISINE TIRED EYE RELIEF (Ophthalmic)', '961145', 'Glycerin', '2d3f9d75-72e8-47c9-bc73-eabc827b2a11', '4/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4355, 'VISINE-A (Ophthalmic)', '914533', 'Naphazoline', '82500e4c-bc01-4ce0-80d8-6e9f0be99163', '4/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4356, 'VISKEN (Oral Pill)', '1345858', 'Pindolol', '07fe9cc3-1ef2-420c-b45d-7f1e894b6ef9', '12/1/06', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4357, 'Vismodegib (Oral Pill)', '42709321', 'vismodegib', 'eb368bb6-80e3-4df9-8a85-91df0a2ada6a', '6/5/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4358, 'VISTARIL (Oral Pill)', '777221', 'Hydroxyzine', 'c271f97f-040e-492b-9194-2c8b74675a95', '5/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4359, 'VISUDYNE (Injectable)', '912803', 'Verteporfin', '952f4c80-50b1-4308-9ee6-311ffefb13df', '1/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4360, 'Vitamin B 12 (Injectable)', '1308738', 'Vitamin B 12', '74141034-87b2-4401-b100-44aee4849fe8', '7/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4361, 'Vitamin B 12 (Nasal)', '1308738', 'Vitamin B 12', 'ee2b4869-cd13-489b-b12f-1ce4fe081157', '5/24/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4362, 'Vitamin B6 (Oral Pill)', '1353228', 'Vitamin B6', 'a524c0ff-4893-4df0-aaca-7f690b2bbb13', '12/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4363, 'Vitamin K 1 (Injectable)', '19044727', 'Vitamin K 1', 'b08d2ba5-c3c5-47ce-a9d6-64d7cee9483b', '4/29/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4364, 'Vitamin K 1 (Oral Pill)', '19044727', 'Vitamin K 1', '9b9be805-15a6-4391-96d7-062056567d5b', '7/7/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4365, 'VITEKTA (Oral Pill)', '42874212', 'elvitegravir', 'be87c3bc-97bb-49cb-8053-9b0c756a1965', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4366, 'VITRASE (Injectable)', '19073699', 'Hyaluronidase', '21fbd12e-4a12-4ad1-ad01-964cd5ec9996', '1/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4367, 'VIVACAINE (Injectable)', '732893', 'Bupivacaine', 'b4c60d8e-e350-45b2-9d6b-5815eeb6c994', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4368, 'VIVAGLOBIN (Injectable)', '19117912', 'Immunoglobulin G', '88eac3b8-55a5-4451-9d25-c30e43ab7068', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4369, 'VIVARIN (Oral Pill)', '1134439', 'Caffeine', '587358ab-e28c-11e3-8b68-0800200c9a66', '6/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4370, 'VOLTAREN (Topical)', '1124300', 'Diclofenac', '2280a305-34bd-4f9c-8f31-d6bb6fad90d5', '9/3/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4371, 'VORAXAZE (Injectable)', '42709319', 'glucarpidase', 'acaef5a6-b740-40e3-8ffe-74a75c74745c', '4/8/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4372, 'Voriconazole (Injectable)', '1714277', 'voriconazole', '08d08721-1f4c-478a-8abf-d9c402d50553', '4/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4373, 'Voriconazole (Oral Liquid)', '1714277', 'voriconazole', '74f51144-c228-440e-8043-c3ec9cb1b42e', '3/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4374, 'Voriconazole (Oral Pill)', '1714277', 'voriconazole', 'f1889599-be14-49af-8781-5594e9bd026b', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4375, 'Vortioxetine (Oral Pill)', '44507700', 'vortioxetine', '4b0700c9-b417-4c3a-b36f-de461e125bd3', '9/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4376, 'VUSION (Topical)', '907879', 'Miconazole', '8d8aaac5-3203-4ade-ae74-e2ea469dae18', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4377, 'VYTONE (Topical)', '975125', 'Hydrocortisone', '3d7278ee-2c8e-4df1-9372-d43403122945', '9/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4378, 'VYTORIN (Oral Pill)', '1526475', 'ezetimibe', '65e1c3ae-a462-4345-8a28-c7d2c0388af8', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4379, 'VYVANSE (Oral Pill)', '709567', 'Lisdexamfetamine', 'a310fc51-2743-4755-8398-fed5402283f6', '1/18/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4380, 'WAL ZYR 24 HOUR ALLERGY (Oral Liquid)', '1149196', 'Cetirizine', '416d3ef9-7d36-4f58-815e-178e17d10521', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4381, 'WAL-ACT (Oral Pill)', '1154332', 'Pseudoephedrine', '7f1ff0eb-78e9-465d-9ec9-a900fe8bd9c4', '4/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4382, 'WAL-DRYL (Topical)', '1129625', 'Diphenhydramine', '0c8d5ee1-96ce-407f-947f-dd98f35fc8ad', '3/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4383, 'WAL-DRYL ALLERGY (Oral Disintegrating)', '1129625', 'Diphenhydramine', '826c5868-c9bf-42b2-a97e-2e7ae6fae057', '7/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4384, 'WAL-DRYL ALLERGY (Oral Pill)', '1129625', 'Diphenhydramine', 'b484db36-8460-4ea7-b9f5-71cc663b7d77', '7/27/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4385, 'WAL-DRYL CHILDRENS (Oral Liquid)', '1129625', 'Diphenhydramine', '53e6f72d-15a4-4efe-8b1f-5753fed53df8', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4386, 'WAL-DRYL-D (Oral Pill)', '1129625', 'Diphenhydramine', 'd8ed0a4f-c711-4517-b667-3698e9a5699a', '3/22/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4387, 'WAL-FEX (Oral Pill)', '1153428', 'fexofenadine', '15ad58b4-4056-4602-a663-d600224ae92d', '8/7/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4388, 'WAL-FINATE-D (Oral Pill)', '1192710', 'Chlorpheniramine', '6c6a8a9f-7af6-4674-9dac-e17c02759359', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4389, 'WAL-ITIN (Oral Liquid)', '1107830', 'Loratadine', 'bb7392d6-77b9-42d3-82d2-8b21715774c8', '1/24/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4390, 'WAL-ITIN (Oral Pill)', '1107830', 'Loratadine', '84d752d2-33e4-4b69-a015-8b744f5f8d3c', '10/15/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4391, 'WAL-PHED (Oral Pill)', '1154332', 'Pseudoephedrine', '54cc6eff-a5aa-4574-97a0-c2e5295cc840', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4392, 'WAL-PHED PE (Oral Pill)', '1135766', 'Phenylephrine', 'b028c23d-4527-47d8-b3e1-04dc6cb16604', '10/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4393, 'WAL-PROFEN COLD AND SINUS (Oral Pill)', '1177480', 'Ibuprofen', 'faa26964-a140-4d30-ab1e-19f49f9458ac', '11/10/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4394, 'WAL-SLEEP Z (Oral Pill)', '1129625', 'Diphenhydramine', 'cfb67ead-61f9-4d0f-b2db-792b8df3d148', '12/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4395, 'WAL-TAP CHILDREN''S COLD & ALLERGY (Oral Liquid)', '1130863', 'Brompheniramine', '3f438f28-d1ad-44da-a573-f1b0824b051c', '4/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4396, 'WAL-TUSSIN CHEST CONGESTION (Oral Liquid)', '1163944', 'Guaifenesin', '2a61f2f5-75f5-4b00-bc02-8492180f28b2', '8/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4397, 'WAL-TUSSIN DM (Oral Liquid)', '1119510', 'Dextromethorphan', '21119906-3de1-4bee-b656-cec1f30bdd17', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4398, 'WAL-ZAN (Oral Pill)', '961047', 'Ranitidine', '94d7a63a-8df6-e260-80dd-67e8286e3ce5', '8/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4399, 'WAL-ZYR (Oral Pill)', '1149196', 'Cetirizine', '16625a43-22c1-4754-a7bd-ccc262e2dbd5', '1/28/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4400, 'WAL-ZYR ITCHY EYE (Ophthalmic)', '986117', 'Ketotifen', '123101a3-ee3c-483a-a347-7200d4c8756d', '12/6/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4401, 'Warfarin (Oral Pill)', '1310149', 'Warfarin', 'de5e4ed4-e9a5-4784-b512-b40199f17bd8', '8/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4402, 'Water (Injectable)', '19010309', 'Water', 'ccadcf46-6a6f-436b-9bbc-17e2983a335f', '5/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4403, 'Water (Irrigation)', '19010309', 'Water', 'fb20b834-4ca2-4ef0-ab16-8c7e1e3cd3b9', '8/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4404, 'Water (Ophthalmic)', '19010309', 'Water', '6119892d-ce34-4b3e-9a3e-3f8a94f3fbca', '10/1/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4405, 'Weakleaf bur ragweed pollen extract (Injectable)', '40242456', 'weakleaf bur ragweed pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4406, 'WELCHOL (Oral Liquid)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', '2/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4407, 'WELCHOL (Oral Pill)', '1518148', 'colesevelam', 'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', '2/14/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4408, 'WELLBUTRIN (Oral Pill)', '750982', 'Bupropion', 'fb118c90-41b7-4bc9-a82f-a4a415faabbb', '12/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4409, 'Western black willow pollen extract (Injectable)', '40228767', 'western black willow pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4410, 'Western ragweed pollen extract (Injectable)', '40162070', 'western ragweed pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4411, 'Western sycamore pollen extract (Injectable)', '40162074', 'western sycamore pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4412, 'White (mexican) dock pollen extract (Injectable)', '40228792', 'white (mexican) dock pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4413, 'White hickory pollen extract (Injectable)', '40162128', 'white hickory pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4414, 'White poplar pollen extract (Injectable)', '40162140', 'white poplar pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4415, 'White sweet clover pollen extract (Injectable)', '40228755', 'white sweet clover pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4416, 'White sweet clover pollen extract/Yellow sweet clover pollen extract (Injectable)', '40228755', 'white sweet clover pollen extract', 'c7d383a6-94b8-4101-8a4c-fa7747a21468', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4417, 'White-rot fungus extract (Injectable)', '40175955', 'white-rot fungus extract', '6d2006e2-55ea-41db-bd17-ce6d080f28a0', '11/23/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4418, 'Witch Hazel (Topical)', '959196', 'Witch Hazel', '8492ef49-db8d-46a2-9a92-c4d908c02e1b', '7/16/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4419, 'XALATAN (Ophthalmic)', '954688', 'latanoprost', '0f4881ec-2984-4853-bc25-5b14c3b79da7', '4/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4420, 'XARELTO (Oral Pill)', '40241331', 'Rivaroxaban', '10db92f9-2300-4a80-836b-673e1ae91610', '3/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4421, 'XELJANZ (Oral Pill)', '42904205', 'tofacitinib', '68e3d6b2-7838-4d2d-a417-09d919b43e13', '11/9/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4422, 'XELODA (Oral Pill)', '1337620', 'capecitabine', 'a732b303-9bbd-42ba-a7c5-61c21629ba93', '6/11/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4423, 'XENICAL (Oral Pill)', '741530', 'orlistat', 'a9c47f08-bd02-4731-aaf7-42173155b2d0', '6/16/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4424, 'XERAC AC (Topical)', '957393', 'aluminum chloride', '59e37deb-01da-465f-b806-ff1a76255e71', '4/14/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4425, 'XERESE (Topical)', '1703687', 'Acyclovir', '3b6ac164-0f1e-4f36-94a1-1fdb07d710f5', '12/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4426, 'XIFAXAN (Oral Pill)', '1735947', 'rifaximin', '523f0320-cc73-445a-a48d-7a181c182307', '8/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4427, 'XODOL (Oral Pill)', '1125315', 'Acetaminophen', 'c129d9d2-5511-4e14-bd97-6b824ffe0809', '12/11/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4428, 'XOFIGO (Injectable)', '43526934', 'RADIUM CHLORIDE RA-223', 'a398400e-bd31-41a9-9696-4f7c06569ede', '5/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4429, 'XOLEGEL (Topical)', '985708', 'Ketoconazole', '855e42bb-b57f-4772-bffa-d766ddcc46ce', '3/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4430, 'XOLIDO (Topical)', '989878', 'Lidocaine', 'f2b463d7-3fcf-4b2c-8ba2-8e51e3290de2', '8/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4431, 'XOLOX (Oral Pill)', '1125315', 'Acetaminophen', '35b99e65-32d3-43bc-89d9-2e7c7838aa14', '4/22/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4432, 'XOPENEX (Inhalant)', '1192218', 'Levalbuterol', '7e2644e6-36c5-4988-8e52-bec90e2cd2f0', '5/19/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4433, 'XOTEN-C (Topical)', '939881', 'Capsaicin', '1dcb64fd-6bc6-4375-8d30-4462e2407934', '8/8/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4434, 'XTANDI (Oral Pill)', '42900250', 'enzalutamide', 'b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf', '10/9/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4435, 'XYLOCAINE (Injectable)', '989878', 'Lidocaine', '57964c72-5ffe-4548-bca0-a5b0ca57ecb1', '9/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4436, 'XYLOCAINE (Topical)', '989878', 'Lidocaine', 'b2adbf5d-dccd-41ff-9f12-4e606ccb541f', '8/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4437, 'XYLOCAINE WITH EPINEPHRINE (Injectable)', '1343916', 'Epinephrine', '14b55cf9-f7cd-4bb4-a7c5-aba61abadef1', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4438, 'Xylometazoline (Nasal)', '943852', 'xylometazoline', 'b70ba985-2894-493f-a4cf-c9102fe36d97', '12/17/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4439, 'XYREM (Oral Liquid)', '769935', 'Sodium Oxybate', '926eb076-a4a8-45e4-91ef-411f0aa4f3ca', '9/21/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4440, 'XYZAL (Oral Pill)', '1136422', 'levocetirizine', '371ca86d-7ffd-4f20-b6c6-af0a9ff7362f', '5/14/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4441, 'Yellow birch pollen extract (Injectable)', '40172908', 'yellow birch pollen extract', '3be2afc4-b2dc-4b0f-b314-5ade25922b66', '11/24/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4442, 'Yellow dock pollen extract (Injectable)', '40162170', 'yellow dock pollen extract', 'd2bb5f95-d146-4062-9998-8e179f0d58c9', '9/11/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4443, 'Yellow sweet clover pollen extract (Injectable)', '40228782', 'yellow sweet clover pollen extract', 'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', '11/19/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4444, '"Yellow-Fever Virus Vaccine, 17D-204 strain (Injectable)"', '532274', '"Yellow-Fever Virus Vaccine, 17D-204 strain"', '613aaac9-ec18-4b22-addb-599e1193e6f5', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4445, 'YF-VAX (Injectable)', '532274', '"Yellow-Fever Virus Vaccine, 17D-204 strain"', '613aaac9-ec18-4b22-addb-599e1193e6f5', '6/6/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4446, 'Z TUSS AC (Oral Liquid)', '1192710', 'Chlorpheniramine', 'e61129db-2ee2-4e0c-ab2b-c5f26e62abfc', '10/3/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4447, 'Z-SLEEP (Oral Liquid)', '1129625', 'Diphenhydramine', '5cd03e60-877a-41f6-a10c-1c90a29ea762', '11/4/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4448, 'Z-SLEEP (Oral Pill)', '1129625', 'Diphenhydramine', 'd6679628-990d-47d3-857e-d87c2a6cd860', '10/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4449, 'ZADITOR (Ophthalmic)', '986117', 'Ketotifen', 'ac66b1e4-c2b0-a4c3-09e3-ebd44a2f7c9f', '8/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4450, 'Zafirlukast (Oral Pill)', '1111706', 'zafirlukast', 'fb546f57-cd2f-4cbf-8c54-fbc23d47fe0f', '6/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4451, 'Zaleplon (Oral Pill)', '720727', 'zaleplon', '0d1d5797-6a7f-4a25-b13d-009224cc59c1', '8/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4452, 'ZANAFLEX (Oral Pill)', '778474', 'tizanidine', 'b581d63f-61cb-41b6-a7ca-24bd0b32a8ae', '4/28/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4453, 'ZANOSAR (Injectable)', '19136210', 'Streptozocin', '15d161ed-9e7b-4c92-ba45-0556d2423e67', '9/7/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4454, 'ZANTAC (Injectable)', '961047', 'Ranitidine', 'da7dbbe1-4f2d-4466-9573-8d239d112998', '7/2/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4455, 'ZANTAC (Oral Pill)', '961047', 'Ranitidine', '4da36a98-7363-4a8a-9bfe-5dfa7d2e1268', '2/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4456, 'ZAROXOLYN (Oral Pill)', '907013', 'Metolazone', '16026409-e821-4680-a114-24c1761d6690', '5/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4457, 'ZAVESCA (Oral Pill)', '19045272', 'Miglustat', '817892d1-ee12-4632-85fc-57ccdf16d7b8', '7/30/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4458, 'ZAZOLE (Vaginal)', '941472', 'terconazole', 'f0a917c7-bcc9-4860-b0e8-c7592212f40e', '3/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4459, 'ZEASORB (Topical)', '907879', 'Miconazole', 'c8260a34-ea4d-46d9-b9de-0cdd689be5c9', '11/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4460, 'ZEBETA (Oral Pill)', '1338005', 'Bisoprolol', 'a11548a0-9c0f-4729-907c-75d8f99a6c85', '12/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4461, 'ZEBUTAL (Oral Pill)', '1125315', 'Acetaminophen', 'ac7e8ce7-088f-4d9c-ad52-2af60436d836', '1/27/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4462, 'ZECUITY (Transdermal)', '1140643', 'Sumatriptan', '806a07a0-e042-11df-9548-0002a5d5c51b', '8/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4463, 'ZEGERID REFORMULATED AUG 2006 (Oral Pill)', '923645', 'Omeprazole', '32bed6d8-8a9a-4fb0-a2f6-045892011ee4', '7/17/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4464, 'ZEGERID WITH MAGNESIUM HYDROXIDE (Chewable)', '992956', 'Magnesium Hydroxide', 'cc8ef530-dd8c-40f5-af7e-4622c9e01d52', '3/19/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4465, 'ZELAPAR (Oral Disintegrating)', '766209', 'Selegiline', '380d7717-2a79-42f3-a712-efe5e7696ba0', '1/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4466, 'ZENATANE (Oral Pill)', '984232', 'Isotretinoin', '517810a4-76bb-4739-893f-1f2ba94a5d0c', '12/24/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4467, 'ZENCIA WASH (Soap)', '1036252', 'Sulfacetamide', 'f786db9a-b8b7-4696-8e64-33749576a076', '8/11/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4468, 'ZENZEDI (Oral Pill)', '719311', 'Dextroamphetamine', 'd6394df5-f2c9-47eb-b57e-f3e9cfd94f84', '5/6/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4469, 'ZERIT (Oral Pill)', '1781406', 'Stavudine', '8bb73c56-74cb-4602-b9a3-57bd1082b434', '8/13/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4470, 'ZESTORETIC (Oral Pill)', '974166', 'Hydrochlorothiazide', '0d3a966f-f937-05a8-a90f-5aa52ebbd613', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4471, 'ZESTRIL (Oral Pill)', '1308216', 'Lisinopril', 'fd4889db-5565-4a68-ac2e-3eee62ff8353', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4472, 'ZETIA (Oral Pill)', '1526475', 'ezetimibe', 'd3f0f926-6014-45ab-9cad-54b22c6ff4dc', '5/20/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4473, 'ZFLEX (Oral Pill)', '1125315', 'Acetaminophen', '4b04b21b-ee68-4c59-91ad-57c3d84e2b09', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4474, 'ZIAC (Oral Pill)', '1338005', 'Bisoprolol', '238176e5-df10-457b-a5cf-c950a583e748', '5/24/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4475, 'ZIAGEN (Oral Pill)', '1736971', 'abacavir', 'ced433cf-2acf-47ae-9b74-69992c3bc8e0', '4/9/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4476, 'ZIANA (Topical)', '997881', 'Clindamycin', '78c329f9-f0c9-486d-9e54-0123699fb9e1', '11/19/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4477, 'ZICAM SINUS RELIEF (Nasal)', '925636', 'Oxymetazoline', '2d8da5d3-8488-4352-b2e6-1fa4d274070f', '3/12/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4478, 'Zidovudine (Oral Liquid)', '1710612', 'Zidovudine', 'e4eee396-fdf4-4e4b-94c2-930af5609a7d', '10/25/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4479, 'Zidovudine (Oral Pill)', '1710612', 'Zidovudine', 'a3c2532a-5880-4d52-b2a1-2e6d4dbd6021', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4480, 'ZILACTIN B (Oral Gel)', '917006', 'Benzocaine', '34ce5d91-35ff-4f2c-9d6b-ac389895b6b2', '2/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4481, 'ZILACTIN COLD SORE (Oral Gel)', '919681', 'Benzyl Alcohol', '0910d0d8-dc69-43bb-967d-08cab8ae917b', '2/5/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4482, 'Zinc Acetate (Oral Pill)', '979096', 'Zinc Acetate', 'a0c72bff-20f3-4241-b966-34a95178d1a3', '6/22/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4483, 'Zinc Acetate (Topical)', '979096', 'Zinc Acetate', '5365f205-986d-4f67-b768-1efaa8e81168', '4/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4484, 'Zinc Gluconate (Injectable)', '19079204', 'Zinc Gluconate', 'ea577e0b-7b57-4ed5-be81-b605f6bcb296', '10/18/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4485, 'Zinc Oxide (Paste)', '911064', 'Zinc Oxide', 'caaac1f0-437d-4185-8670-9f11b9cefe63', '9/14/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4486, 'Zinc Oxide (Topical)', '911064', 'Zinc Oxide', '4c1e279b-d4ea-46b7-973f-6b55b0665e9f', '9/10/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4487, 'Zinc pyrithione (Shampoo)', '944360', 'zinc pyrithione', '8772d4e7-e3cb-4265-95f3-d9ce32d0b819', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4488, 'Zinc pyrithione (Topical)', '944360', 'zinc pyrithione', '9aeada50-2cb2-d113-126a-ddcf05f817b6', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4489, 'Zinc Sulfate (Injectable)', '19044522', 'Zinc Sulfate', '1a03fe85-fdc9-4847-960f-1fc782d7d493', '8/25/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4490, 'Zinc-DTPA (Injectable)', '19011565', 'Zinc-DTPA', '9fca10ee-973e-4fe0-aaf5-a0416918a397', '1/5/07', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4491, 'ZINCON (Shampoo)', '944360', 'zinc pyrithione', 'a53e3460-df29-4313-a2bc-d0e3e7c1d4c9', '7/31/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4492, 'ZINGO (Topical)', '989878', 'Lidocaine', '0fb7864f-be1c-4992-a996-556aef29981f', '1/8/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4493, 'ZIOPTAN (Ophthalmic)', '42709325', 'tafluprost', 'd51cbf25-003c-4ba7-86cf-921637ef37a0', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4494, 'Ziprasidone (Injectable)', '712615', 'ziprasidone', '036db1f2-52b3-42a0-acf9-817b7ba8c724', '2/13/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4495, 'Ziprasidone (Oral Pill)', '712615', 'ziprasidone', '09086be1-43ee-48bf-a896-21accd485e5f', '9/23/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4496, 'ZIPSOR (Oral Pill)', '1124300', 'Diclofenac', 'c982eca0-fc41-11e1-a9c8-0002a5d5c51b', '9/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4497, 'ZIRGAN (Ophthalmic)', '1757803', 'Ganciclovir', 'ea25e7ac-7a93-4ec8-975b-2cec197e1c27', '8/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4498, 'ZITHRANOL (Shampoo)', '952538', 'Anthralin', '253fdee7-5060-4b49-ad26-257eb54cccfa', '10/20/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4499, 'ZITHRANOL-RR (Topical)', '952538', 'Anthralin', '45bad116-0351-442f-8e49-f11089a955fd', '7/20/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4500, 'ZITHROMAX (Oral Pill)', '1734104', 'Azithromycin', '931a3c19-23d3-4b65-a422-32bd98de5de4', '9/19/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4501, 'ZODRYL AC (Oral Liquid)', '1192710', 'Chlorpheniramine', '07af42d8-4b0c-4cd1-b299-42dc12980b94', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4502, 'ZODRYL DEC (Oral Liquid)', '1201620', 'Codeine', '7b0051b0-1ae1-4eb5-9328-75f7b506f7d4', '10/9/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4503, 'ZOFRAN (Oral Pill)', '1000560', 'Ondansetron', '3c327aa6-a790-4262-a79b-51856976d560', '8/5/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4504, 'Zoledronic acid (Injectable)', '1524674', 'zoledronic acid', '2191fccc-9f90-486c-8f30-dc828b62fe15', '9/15/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4505, 'ZOLMitriptan (Oral Disintegrating)', '1116031', 'zolmitriptan', '9842232d-83bf-fa08-5c5c-ba10fe5783e8', '5/23/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4506, 'ZOLMitriptan (Oral Pill)', '1116031', 'zolmitriptan', 'df93b636-103f-4fb5-26b6-50f639e29b1d', '8/12/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4507, 'ZOLOFT (Oral Pill)', '739138', 'Sertraline', '92278f12-0f00-4c0b-bb44-c6dd2dbb5b6c', '8/1/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4508, 'Zolpidem (Oral Pill)', '744740', 'zolpidem', 'b87ea23e-2d54-4d10-8f10-72d4c62f3245', '9/25/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4509, 'Zolpidem (Sublingual)', '744740', 'zolpidem', '913b6cfe-1fb0-44a8-817a-26374bbce995', '10/2/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4510, 'Zolpidem XR (Oral Pill)', '744740', 'zolpidem', 'a85400b5-1973-46bc-b092-681ac310f280', '6/22/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4511, 'ZOMIG (Oral Disintegrating)', '1116031', 'zolmitriptan', 'df93b636-103f-4fb5-26b6-50f639e29b1d', '2/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4512, 'ZOMIG (Oral Pill)', '1116031', 'zolmitriptan', 'df93b636-103f-4fb5-26b6-50f639e29b1d', '2/26/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4513, 'ZONALON (Topical)', '738156', 'Doxepin', 'e3a51eb8-cb8b-498f-bf3e-e464cc4acdca', '3/28/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4514, 'ZONATUSS (Oral Pill)', '1136601', 'benzonatate', 'b85137e4-5e8b-4134-9a8e-1e6f9da63f92', '11/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4515, 'ZONEGRAN (Oral Pill)', '744798', 'zonisamide', 'd12de43e-3ac3-4335-bc85-70d7366a91eb', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4516, 'Zonisamide (Oral Pill)', '744798', 'zonisamide', '1e99efc7-cf3f-4368-7afb-41d8dfaeffcf', '9/24/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4517, 'ZOOBY FLUORIDE FOAM (Oral Foam)', '19069022', 'Sodium Fluoride', 'fcebb175-d412-4452-9c7c-a38571006bfc', '11/14/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4518, 'ZORCAINE (Injectable)', '19080512', 'Articaine', 'da242926-93db-4a2b-b68c-23af13ea747e', '9/1/11', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4519, 'ZOSTRIX (Topical)', '939881', 'Capsaicin', '19cdf2cb-1429-49a4-b74e-fa77547f6b7f', '10/22/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4520, 'ZOSTRIX COLD THERAPY (Topical)', '901656', 'Menthol', 'cf1001ec-b069-4d51-82e7-646a9583a43a', '9/21/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4521, 'ZOSTRIX DIABETIC JOINT & ARTHRITIS PAIN RELIEF (Topical)', '939881', 'Capsaicin', '006d3c32-0a88-4454-aa0f-5dcc2ba9a222', '11/20/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4522, 'ZOSYN (Injectable)', '1746114', 'Piperacillin', '81b0bb45-ce9d-43e7-b181-64315e14be55', '11/12/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4523, 'ZOVIRAX (Oral Liquid)', '1703687', 'Acyclovir', '6fe0ab86-9d81-461e-9c84-6ba724a91318', '2/18/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4524, 'ZOVIRAX (Oral Pill)', '1703687', 'Acyclovir', '6fe0ab86-9d81-461e-9c84-6ba724a91318', '2/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4525, 'ZOVIRAX (Topical)', '1703687', 'Acyclovir', '125dbe4e-94ba-45bd-a714-f9c4b8e8b5c2', '2/4/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4526, 'ZUPLENZ (Oral Strip)', '1000560', 'Ondansetron', 'ed036bdb-b832-440f-82c7-ade2956b73ee', '7/17/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4527, 'ZUTRIPRO (Oral Liquid)', '1192710', 'Chlorpheniramine', '6b6ab0f8-fbe6-41f3-9af4-2c86cec4eaf7', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4528, 'ZYCLARA (Topical)', '981691', 'imiquimod', '28cd9b5b-680b-480f-b33d-9c5b52bbf03d', '3/26/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4529, 'ZYDELIG (Oral Pill)', '45776944', 'idelalisib', 'efbdafa9-d18c-4e85-b4a2-1e620fc74e50', '9/11/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4530, 'ZYDONE (Oral Pill)', '1125315', 'Acetaminophen', '4aa8c5b1-d71f-4aa8-92b2-1cde266da467', '9/13/10', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4531, 'ZYLOPRIM (Oral Pill)', '1167322', 'Allopurinol', '342832b5-1a32-4bea-bc49-ab0fd152154e', '12/16/09', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4532, 'ZYMAXID (Ophthalmic)', '1789276', 'gatifloxacin', '1160b16c-929a-4e85-9c0b-1d8c96a7678b', '10/9/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4533, 'ZyPREXA (Oral Disintegrating)', '785788', 'olanzapine', '7881c39e-0624-4c14-a6c3-7a9dc81c198c', '5/10/12', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4534, 'ZyPREXA (Oral Pill)', '785788', 'olanzapine', '250ed608-092c-4e19-884f-a15bdea065d7', '9/16/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4535, 'ZyrTEC (Oral Liquid)', '1149196', 'Cetirizine', 'ee8695ac-1293-4e43-ac7c-a64e21a0ca0a', '5/28/15', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4536, 'ZyrTEC (Oral Pill)', '1149196', 'Cetirizine', 'b165db38-b302-4220-8627-77cb07bb078c', '10/29/14', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4537, 'ZYVOX (Oral Pill)', '1736887', 'linezolid', 'e57716ab-7697-46cc-b612-e0e81414128f', '4/5/13', NULL, NULL); -INSERT INTO drug_labels(drug_label_id, search_name, ingredient_concept_id, ingredient_concept_name, setid, date, cohort_id, image_url) VALUES(4538, 'ZZZQUIL (Oral Liquid)', '1129625', 'Diphenhydramine', 'e441c952-cd48-4159-ada2-271ca7541600', '3/25/15', NULL, NULL); diff --git a/src/main/resources/db/migration/postgresql/V1.0.1.1__penelope.sql b/src/main/resources/db/migration/postgresql/V1.0.1.1__penelope.sql deleted file mode 100644 index 4313fa33a4..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.1.1__penelope.sql +++ /dev/null @@ -1,34 +0,0 @@ -CREATE TABLE COHORT_CONCEPT_MAP ( - cohort_definition_id int NULL, - cohort_definition_name varchar(255) NULL, - concept_id int NULL -); - -CREATE TABLE COHORT_STUDY( - cohort_study_id SERIAL NOT NULL, - cohort_definition_id int NULL, - study_type int NULL, - study_name varchar(1000) NULL, - study_URL varchar(1000) NULL, - CONSTRAINT PK_COHORT_STUDY PRIMARY KEY (cohort_study_id) - ); - -CREATE TABLE CONCEPT_OF_INTEREST( - id SERIAL NOT NULL, - concept_id int NULL, - concept_of_interest_id int NULL, - CONSTRAINT PK_CONCEPT_OF_INTEREST PRIMARY KEY (id) - ); - -CREATE TABLE drug_labels( - drug_label_id bigint NOT NULL, - search_name varchar(255) NULL, - ingredient_concept_id bigint NULL, - ingredient_concept_name varchar(255) NULL, - setid varchar(255) NULL, - Date Timestamp(3) NULL, - cohort_id int NULL, - image_url varchar(255) NULL, - CONSTRAINT PK_drug_labels PRIMARY KEY (drug_label_id) -); - diff --git a/src/main/resources/db/migration/postgresql/V1.0.1.2__conceptset_negative_controls.sql b/src/main/resources/db/migration/postgresql/V1.0.1.2__conceptset_negative_controls.sql deleted file mode 100644 index 0bdd8355ef..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.1.2__conceptset_negative_controls.sql +++ /dev/null @@ -1,55 +0,0 @@ -DROP TABLE IF EXISTS ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id INTEGER NOT NULL DEFAULT NEXTVAL('CONCEPT_SET_NEGATIVE_CONTROLS_SEQUENCE'), - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - concept_set_name varchar(255) NOT NULL, - concept_id INTEGER NOT NULL, - concept_name varchar(255) NOT NULL, - domain_id varchar(255) NOT NULL, - MEDLINE_CT float NULL, - MEDLINE_CASE float NULL, - MEDLINE_OTHER float NULL, - SEMMEDDB_CT_T float NULL, - SEMMEDDB_CASE_T float NULL, - SEMMEDDB_OTHER_T float NULL, - SEMMEDDB_CT_F float NULL, - SEMMEDDB_CASE_F float NULL, - SEMMEDDB_OTHER_F float NULL, - EU_SPC float NULL, - SPL_ADR float NULL, - AERS float NULL, - AERS_PRR float NULL, - MEDLINE_CT_SCALED float NULL, - MEDLINE_CASE_SCALED float NULL, - MEDLINE_OTHER_SCALED float NULL, - SEMMEDDB_CT_T_SCALED float NULL, - SEMMEDDB_CASE_T_SCALED float NULL, - SEMMEDDB_OTHER_T_SCALED float NULL, - SEMMEDDB_CT_F_SCALED float NULL, - SEMMEDDB_CASE_F_SCALED float NULL, - SEMMEDDB_OTHER_F_SCALED float NULL, - EU_SPC_SCALED float NULL, - SPL_ADR_SCALED float NULL, - AERS_SCALED float NULL, - AERS_PRR_SCALED float NULL, - MEDLINE_CT_BETA float NULL, - MEDLINE_CASE_BETA float NULL, - MEDLINE_OTHER_BETA float NULL, - SEMMEDDB_CT_T_BETA float NULL, - SEMMEDDB_CASE_T_BETA float NULL, - SEMMEDDB_OTHER_T_BETA float NULL, - SEMMEDDB_CT_F_BETA float NULL, - SEMMEDDB_CASE_F_BETA float NULL, - SEMMEDDB_OTHER_F_BETA float NULL, - EU_SPC_BETA float NULL, - SPL_ADR_BETA float NULL, - AERS_BETA float NULL, - AERS_PRR_BETA float NULL, - RAW_PREDICTION float NULL, - PREDICTION float NULL, - CONSTRAINT PK_CONCEPT_SET_NEGATIVE_CONTROLS PRIMARY KEY (id) -); - diff --git a/src/main/resources/db/migration/postgresql/V1.0.1.3__conceptset_generation_info.sql b/src/main/resources/db/migration/postgresql/V1.0.1.3__conceptset_generation_info.sql deleted file mode 100644 index 978031ada4..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.1.3__conceptset_generation_info.sql +++ /dev/null @@ -1,16 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.concept_set ADD CONSTRAINT PK_concept_set PRIMARY KEY (concept_set_id); - -CREATE TABLE ${ohdsiSchema}.concept_set_generation_info( - concept_set_id INTEGER NOT NULL, - source_id INTEGER NOT NULL, - generation_type INTEGER NOT NULL, - start_time TIMESTAMP NOT NULL, - execution_duration INTEGER NULL, - status INTEGER NOT NULL, - is_valid BOOLEAN NOT NULL, - CONSTRAINT PK_concept_set_generation_info PRIMARY KEY (concept_set_id, source_id), - CONSTRAINT FK_concept_set_generation_info_concept_set FOREIGN KEY(concept_set_id) - REFERENCES ${ohdsiSchema}.concept_set (concept_set_id) - ON UPDATE CASCADE - ON DELETE CASCADE -); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.10.0__data-atlas-user.sql b/src/main/resources/db/migration/postgresql/V1.0.10.0__data-atlas-user.sql deleted file mode 100644 index b895907ef3..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.10.0__data-atlas-user.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(58, 'cohortdefinition:*:put', 'Update cohort definition'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 58); - -INSERT INTO ${ohdsiSchema}.sec_role(id, name) VALUES (10, 'Atlas users'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT 10, id - FROM ${ohdsiSchema}.sec_permission - WHERE id < 200; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.11.0__data-cohortanalysis-permission.sql b/src/main/resources/db/migration/postgresql/V1.0.11.0__data-cohortanalysis-permission.sql deleted file mode 100644 index 8adf2fa7cc..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.11.0__data-cohortanalysis-permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.sec_permission_id_seq START WITH 500; -ALTER TABLE ${ohdsiSchema}.sec_permission ADD CONSTRAINT permission_unique UNIQUE (value); - -insert into ${ohdsiSchema}.sec_permission (id, value, description) -values (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortanalysis:post', 'Create Cohort analyses'); - -ALTER TABLE ${ohdsiSchema}.sec_role_permission ADD CONSTRAINT role_permission_unique UNIQUE (role_id, permission_id); - -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'cohortanalysis:post' - AND sr.name IN ('admin', 'cohort creator', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.11.1__schema-executions.sql b/src/main/resources/db/migration/postgresql/V1.0.11.1__schema-executions.sql deleted file mode 100644 index 67486658e8..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.11.1__schema-executions.sql +++ /dev/null @@ -1,75 +0,0 @@ -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.analysis_execution ( - id SERIAL, - analysis_id INTEGER NOT NULL, - analysis_type VARCHAR NOT NULL, - duration INTEGER NOT NULL, - executed TIMESTAMP(3), - sec_user_id INTEGER, - executionStatus VARCHAR, - update_password VARCHAR, - source_id INTEGER -); - -INSERT INTO ${ohdsiSchema}.analysis_execution (analysis_id, analysis_type, duration, executed, sec_user_id, source_id, executionStatus, update_password) - SELECT - cca.cca_id, - 'CCA', - cca.execution_duration, - cca.executed, - cca.sec_user_id, - cca.source_id, - CASE - WHEN cca.execution_status = 0 - THEN 'PENDING' - WHEN cca.execution_status = 1 - THEN 'STARTED' - WHEN cca.execution_status = 2 - THEN 'RUNNING' - WHEN cca.execution_status = 3 - THEN 'COMPLETED' - WHEN cca.execution_status = 4 - THEN 'FAILED' - END AS status, - ext.update_password - FROM - ${ohdsiSchema}.cca_execution cca LEFT JOIN ${ohdsiSchema}.cca_execution_ext ext ON ext.cca_execution_id = cca.cca_id - WHERE NOT EXISTS(SELECT 1 - FROM ${ohdsiSchema}.analysis_execution - WHERE analysis_id = cca.cca_id - AND analysis_type = 'CCA' - AND duration = cca.execution_duration - AND executed = cca.executed - AND sec_user_id = cca.sec_user_id - AND source_id = cca.source_id - ) -; - -ALTER TABLE ${ohdsiSchema}.input_files - ADD COLUMN execution_id INTEGER; - -UPDATE ${ohdsiSchema}.input_files f -SET execution_id = -(SELECT a.id - FROM ${ohdsiSchema}.analysis_execution a - JOIN ${ohdsiSchema}.cca_execution cca - ON cca.cca_id = a.analysis_id AND a.analysis_type = 'CCA' AND a.executed = cca.executed - WHERE cca.cca_execution_id = f.cca_execution_id - LIMIT 1); - -ALTER TABLE ${ohdsiSchema}.output_files - ADD COLUMN execution_id INTEGER; - -UPDATE ${ohdsiSchema}.output_files f -SET execution_id = -(SELECT a.id - FROM ${ohdsiSchema}.analysis_execution a - JOIN ${ohdsiSchema}.cca_execution cca - ON cca.cca_id = a.analysis_id AND a.analysis_type = 'CCA' AND a.executed = cca.executed - WHERE cca.cca_execution_id = f.cca_execution_id - LIMIT 1); - -ALTER TABLE ${ohdsiSchema}.input_files - ALTER COLUMN cca_execution_id DROP NOT NULL; - -ALTER TABLE ${ohdsiSchema}.output_files - ALTER COLUMN cca_execution_id DROP NOT NULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.2.0__cohort_feasiblity.sql b/src/main/resources/db/migration/postgresql/V1.0.2.0__cohort_feasiblity.sql deleted file mode 100644 index 9fc40bde67..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.2.0__cohort_feasiblity.sql +++ /dev/null @@ -1,30 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_inclusion( - cohort_definition_id int NOT NULL, - rule_sequence int NOT NULL, - name varchar(255) NULL, - description varchar(1000) NULL -) -; - -CREATE TABLE ${ohdsiSchema}.cohort_inclusion_result( - cohort_definition_id int NOT NULL, - inclusion_rule_mask bigint NOT NULL, - person_count bigint NOT NULL -) -; - -CREATE TABLE ${ohdsiSchema}.cohort_inclusion_stats( - cohort_definition_id int NOT NULL, - rule_sequence int NOT NULL, - person_count bigint NOT NULL, - gain_count bigint NOT NULL, - person_total bigint NOT NULL -) -; - -CREATE TABLE ${ohdsiSchema}.cohort_summary_stats( - cohort_definition_id int NOT NULL, - base_count bigint NOT NULL, - final_count bigint NOT NULL -) -; diff --git a/src/main/resources/db/migration/postgresql/V1.0.3.1__comparative_cohort_analysis.sql b/src/main/resources/db/migration/postgresql/V1.0.3.1__comparative_cohort_analysis.sql deleted file mode 100644 index 04f6640c58..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.3.1__comparative_cohort_analysis.sql +++ /dev/null @@ -1,272 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cca( - cca_id int NOT NULL, - name varchar(255) NULL, - treatment_id int NOT NULL, - comparator_id int NOT NULL, - outcome_id int NOT NULL, - model_type varchar(50) NOT NULL, - time_at_risk_start int NOT NULL, - time_at_risk_end int NOT NULL, - add_exposure_days_to_end int NOT NULL, - minimum_washout_period int NOT NULL, - minimum_days_at_risk int NOT NULL, - rm_subjects_in_both_cohorts int NOT NULL, - rm_prior_outcomes int NOT NULL, - ps_adjustment int NOT NULL, - ps_exclusion_id int NOT NULL, - ps_inclusion_id int NOT NULL, - ps_demographics int NOT NULL, - ps_demographics_gender int NOT NULL, - ps_demographics_race int NOT NULL, - ps_demographics_ethnicity int NOT NULL, - ps_demographics_age int NOT NULL, - ps_demographics_year int NOT NULL, - ps_demographics_month int NOT NULL, - ps_trim int NOT NULL, - ps_trim_fraction float NOT NULL, - ps_match int NOT NULL, - ps_match_max_ratio int NOT NULL, - ps_strat int NOT NULL, - ps_strat_num_strata int NOT NULL, - ps_condition_occ int NOT NULL, - ps_condition_occ_365d int NOT NULL, - ps_condition_occ_30d int NOT NULL, - ps_condition_occ_inpt180d int NOT NULL, - ps_condition_era int NOT NULL, - ps_condition_era_ever int NOT NULL, - ps_condition_era_overlap int NOT NULL, - ps_condition_group int NOT NULL, - ps_condition_group_meddra int NOT NULL, - ps_condition_group_snomed int NOT NULL, - ps_drug_exposure int NOT NULL, - ps_drug_exposure_365d int NOT NULL, - ps_drug_exposure_30d int NOT NULL, - ps_drug_era int NOT NULL, - ps_drug_era_365d int NOT NULL, - ps_drug_era_30d int NOT NULL, - ps_drug_era_overlap int NOT NULL, - ps_drug_era_ever int NOT NULL, - ps_drug_group int NOT NULL, - ps_procedure_occ int NOT NULL, - ps_procedure_occ_365d int NOT NULL, - ps_procedure_occ_30d int NOT NULL, - ps_procedure_group int NOT NULL, - ps_observation int NOT NULL, - ps_observation_365d int NOT NULL, - ps_observation_30d int NOT NULL, - ps_observation_count_365d int NOT NULL, - ps_measurement int NOT NULL, - ps_measurement_365d int NOT NULL, - ps_measurement_30d int NOT NULL, - ps_measurement_count_365d int NOT NULL, - ps_measurement_below int NOT NULL, - ps_measurement_above int NOT NULL, - ps_concept_counts int NOT NULL, - ps_risk_scores int NOT NULL, - ps_risk_scores_charlson int NOT NULL, - ps_risk_scores_dcsi int NOT NULL, - ps_risk_scores_chads2 int NOT NULL, - ps_risk_scores_chads2vasc int NOT NULL, - ps_interaction_year int NOT NULL, - ps_interaction_month int NOT NULL, - om_covariates int NOT NULL, - om_exclusion_id int NOT NULL, - om_inclusion_id int NOT NULL, - om_demographics int NOT NULL, - om_demographics_gender int NOT NULL, - om_demographics_race int NOT NULL, - om_demographics_ethnicity int NOT NULL, - om_demographics_age int NOT NULL, - om_demographics_year int NOT NULL, - om_demographics_month int NOT NULL, - om_trim int NOT NULL, - om_trim_fraction float NOT NULL, - om_match int NOT NULL, - om_match_max_ratio int NOT NULL, - om_strat int NOT NULL, - om_strat_num_strata int NOT NULL, - om_condition_occ int NOT NULL, - om_condition_occ_365d int NOT NULL, - om_condition_occ_30d int NOT NULL, - om_condition_occ_inpt180d int NOT NULL, - om_condition_era int NOT NULL, - om_condition_era_ever int NOT NULL, - om_condition_era_overlap int NOT NULL, - om_condition_group int NOT NULL, - om_condition_group_meddra int NOT NULL, - om_condition_group_snomed int NOT NULL, - om_drug_exposure int NOT NULL, - om_drug_exposure_365d int NOT NULL, - om_drug_exposure_30d int NOT NULL, - om_drug_era int NOT NULL, - om_drug_era_365d int NOT NULL, - om_drug_era_30d int NOT NULL, - om_drug_era_overlap int NOT NULL, - om_drug_era_ever int NOT NULL, - om_drug_group int NOT NULL, - om_procedure_occ int NOT NULL, - om_procedure_occ_365d int NOT NULL, - om_procedure_occ_30d int NOT NULL, - om_procedure_group int NOT NULL, - om_observation int NOT NULL, - om_observation_365d int NOT NULL, - om_observation_30d int NOT NULL, - om_observation_count_365d int NOT NULL, - om_measurement int NOT NULL, - om_measurement_365d int NOT NULL, - om_measurement_30d int NOT NULL, - om_measurement_count_365d int NOT NULL, - om_measurement_below int NOT NULL, - om_measurement_above int NOT NULL, - om_concept_counts int NOT NULL, - om_risk_scores int NOT NULL, - om_risk_scores_charlson int NOT NULL, - om_risk_scores_dcsi int NOT NULL, - om_risk_scores_chads2 int NOT NULL, - om_risk_scores_chads2vasc int NOT NULL, - om_interaction_year int NOT NULL, - om_interaction_month int NOT NULL, - del_covariates_small_count int NOT NULL, - negative_control_id int NOT NULL, - created Timestamp(3) NOT NULL, - modified Timestamp(3) NOT NULL, - sec_user_id int NOT NULL -); - -CREATE TABLE ${ohdsiSchema}.cca_execution( - cca_execution_id int NOT NULL, - cca_id int NOT NULL, - source_id int NOT NULL, - treatment_id int NOT NULL, - comparator_id int NOT NULL, - outcome_id int NOT NULL, - model_type varchar(50) NOT NULL, - time_at_risk_start int NOT NULL, - time_at_risk_end int NOT NULL, - add_exposure_days_to_end int NOT NULL, - minimum_washout_period int NOT NULL, - minimum_days_at_risk int NOT NULL, - rm_subjects_in_both_cohorts int NOT NULL, - rm_prior_outcomes int NOT NULL, - ps_adjustment int NOT NULL, - ps_exclusion_id int NOT NULL, - ps_inclusion_id int NOT NULL, - ps_demographics int NOT NULL, - ps_demographics_gender int NOT NULL, - ps_demographics_race int NOT NULL, - ps_demographics_ethnicity int NOT NULL, - ps_demographics_age int NOT NULL, - ps_demographics_year int NOT NULL, - ps_demographics_month int NOT NULL, - ps_trim int NOT NULL, - ps_trim_fraction float NOT NULL, - ps_match int NOT NULL, - ps_match_max_ratio int NOT NULL, - ps_strat int NOT NULL, - ps_strat_num_strata int NOT NULL, - ps_condition_occ int NOT NULL, - ps_condition_occ_365d int NOT NULL, - ps_condition_occ_30d int NOT NULL, - ps_condition_occ_inpt180d int NOT NULL, - ps_condition_era int NOT NULL, - ps_condition_era_ever int NOT NULL, - ps_condition_era_overlap int NOT NULL, - ps_condition_group int NOT NULL, - ps_condition_group_meddra int NOT NULL, - ps_condition_group_snomed int NOT NULL, - ps_drug_exposure int NOT NULL, - ps_drug_exposure_365d int NOT NULL, - ps_drug_exposure_30d int NOT NULL, - ps_drug_era int NOT NULL, - ps_drug_era_365d int NOT NULL, - ps_drug_era_30d int NOT NULL, - ps_drug_era_overlap int NOT NULL, - ps_drug_era_ever int NOT NULL, - ps_drug_group int NOT NULL, - ps_procedure_occ int NOT NULL, - ps_procedure_occ_365d int NOT NULL, - ps_procedure_occ_30d int NOT NULL, - ps_procedure_group int NOT NULL, - ps_observation int NOT NULL, - ps_observation_365d int NOT NULL, - ps_observation_30d int NOT NULL, - ps_observation_count_365d int NOT NULL, - ps_measurement int NOT NULL, - ps_measurement_365d int NOT NULL, - ps_measurement_30d int NOT NULL, - ps_measurement_count_365d int NOT NULL, - ps_measurement_below int NOT NULL, - ps_measurement_above int NOT NULL, - ps_concept_counts int NOT NULL, - ps_risk_scores int NOT NULL, - ps_risk_scores_charlson int NOT NULL, - ps_risk_scores_dcsi int NOT NULL, - ps_risk_scores_chads2 int NOT NULL, - ps_risk_scores_chads2vasc int NOT NULL, - ps_interaction_year int NOT NULL, - ps_interaction_month int NOT NULL, - om_covariates int NOT NULL, - om_exclusion_id int NOT NULL, - om_inclusion_id int NOT NULL, - om_demographics int NOT NULL, - om_demographics_gender int NOT NULL, - om_demographics_race int NOT NULL, - om_demographics_ethnicity int NOT NULL, - om_demographics_age int NOT NULL, - om_demographics_year int NOT NULL, - om_demographics_month int NOT NULL, - om_trim int NOT NULL, - om_trim_fraction float NOT NULL, - om_match int NOT NULL, - om_match_max_ratio int NOT NULL, - om_strat int NOT NULL, - om_strat_num_strata int NOT NULL, - om_condition_occ int NOT NULL, - om_condition_occ_365d int NOT NULL, - om_condition_occ_30d int NOT NULL, - om_condition_occ_inpt180d int NOT NULL, - om_condition_era int NOT NULL, - om_condition_era_ever int NOT NULL, - om_condition_era_overlap int NOT NULL, - om_condition_group int NOT NULL, - om_condition_group_meddra int NOT NULL, - om_condition_group_snomed int NOT NULL, - om_drug_exposure int NOT NULL, - om_drug_exposure_365d int NOT NULL, - om_drug_exposure_30d int NOT NULL, - om_drug_era int NOT NULL, - om_drug_era_365d int NOT NULL, - om_drug_era_30d int NOT NULL, - om_drug_era_overlap int NOT NULL, - om_drug_era_ever int NOT NULL, - om_drug_group int NOT NULL, - om_procedure_occ int NOT NULL, - om_procedure_occ_365d int NOT NULL, - om_procedure_occ_30d int NOT NULL, - om_procedure_group int NOT NULL, - om_observation int NOT NULL, - om_observation_365d int NOT NULL, - om_observation_30d int NOT NULL, - om_observation_count_365d int NOT NULL, - om_measurement int NOT NULL, - om_measurement_365d int NOT NULL, - om_measurement_30d int NOT NULL, - om_measurement_count_365d int NOT NULL, - om_measurement_below int NOT NULL, - om_measurement_above int NOT NULL, - om_concept_counts int NOT NULL, - om_risk_scores int NOT NULL, - om_risk_scores_charlson int NOT NULL, - om_risk_scores_dcsi int NOT NULL, - om_risk_scores_chads2 int NOT NULL, - om_risk_scores_chads2vasc int NOT NULL, - om_interaction_year int NOT NULL, - om_interaction_month int NOT NULL, - del_covariates_small_count int NOT NULL, - negative_control_id int NOT NULL, - executed Timestamp(3) NOT NULL, - execution_duration int NOT NULL, - execution_status int NOT NULL, - sec_user_id int NOT NULL -); - diff --git a/src/main/resources/db/migration/postgresql/V1.0.4.0__ir_analysis.sql b/src/main/resources/db/migration/postgresql/V1.0.4.0__ir_analysis.sql deleted file mode 100644 index a9687970c6..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.4.0__ir_analysis.sql +++ /dev/null @@ -1,62 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.ir_analysis( - id int NOT NULL, - name varchar(255) NOT NULL, - description varchar(1000) NULL, - created_by varchar(255) NULL, - created_date Timestamp(3) NULL, - modified_by varchar(255) NULL, - modified_date Timestamp(3) NULL, - CONSTRAINT PK_ir_analysis PRIMARY KEY (id) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_analysis_details( - id int, - expression Text NOT NULL, - CONSTRAINT PK_ir_analysis_details PRIMARY KEY (id), - CONSTRAINT FK_irad_ira - FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.ir_analysis(id) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_execution ( - analysis_id INT NOT NULL, - source_id INT NOT NULL, - start_time Timestamp(3) NULL, - execution_duration INT NULL, - status INT NOT NULL, - is_valid Boolean NOT NULL, - message VARCHAR(2000) NULL, - CONSTRAINT PK_ir_execution PRIMARY KEY (analysis_id, source_id) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_strata( - analysis_id int NOT NULL, - strata_sequence int NOT NULL, - name varchar(255) NULL, - description varchar(1000) NULL -) -; - -CREATE TABLE ${ohdsiSchema}.ir_analysis_result( - analysis_id int NOT NULL, - target_id int NOT NULL, - outcome_id int NOT NULL, - strata_mask bigint NOT NULL, - person_count bigint NOT NULL, - time_at_risk bigint NOT NULL, - cases bigint NOT NULL -) -; - -CREATE TABLE ${ohdsiSchema}.ir_analysis_strata_stats( - analysis_id int NOT NULL, - target_id int NOT NULL, - outcome_id int NOT NULL, - strata_sequence int NOT NULL, - person_count bigint NOT NULL, - time_at_risk bigint NOT NULL, - cases bigint NOT NULL -) -; diff --git a/src/main/resources/db/migration/postgresql/V1.0.4.1__ir_dist.sql b/src/main/resources/db/migration/postgresql/V1.0.4.1__ir_dist.sql deleted file mode 100644 index 1ee43ac63d..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.4.1__ir_dist.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.ir_analysis_dist ( - analysis_id int NOT NULL, - target_id int NOT NULL, - outcome_id int NOT NULL, - strata_sequence INT NULL, - dist_type int NOT NULL, - total bigint NOT NULL, - avg_value float NOT NULL, - std_dev float NOT NULL, - min_value int NOT NULL, - p10_value int NOT NULL, - p25_value int NOT NULL, - median_value int NOT NULL, - p75_value int NOT NULL, - p90_value int NOT NULL, - max_value int NULL -) -; diff --git a/src/main/resources/db/migration/postgresql/V1.0.5.0__rename_system_user_to_anonymous.sql b/src/main/resources/db/migration/postgresql/V1.0.5.0__rename_system_user_to_anonymous.sql deleted file mode 100644 index 1d3bb09ae3..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.5.0__rename_system_user_to_anonymous.sql +++ /dev/null @@ -1,6 +0,0 @@ -UPDATE ${ohdsiSchema}.cohort_definition SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.cohort_definition SET modified_by = 'anonymous' WHERE modified_by = 'system'; -UPDATE ${ohdsiSchema}.feasibility_study SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.feasibility_study SET modified_by = 'anonymous' WHERE modified_by = 'system'; -UPDATE ${ohdsiSchema}.ir_analysis SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.ir_analysis SET modified_by = 'anonymous' WHERE modified_by = 'system'; diff --git a/src/main/resources/db/migration/postgresql/V1.0.6.0.1__schema-add-analysis_execution_password.sql b/src/main/resources/db/migration/postgresql/V1.0.6.0.1__schema-add-analysis_execution_password.sql deleted file mode 100644 index b9bb2b7e4e..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.6.0.1__schema-add-analysis_execution_password.sql +++ /dev/null @@ -1,44 +0,0 @@ -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.cca_execution_ext ( - cca_execution_id INTEGER NOT NULL, - update_password VARCHAR -); - -ALTER TABLE IF EXISTS ${ohdsiSchema}.input_files - DROP CONSTRAINT IF EXISTS fk_sof_cca_execution; - -ALTER TABLE IF EXISTS ${ohdsiSchema}.output_files - DROP CONSTRAINT IF EXISTS fk_sif_cca_execution; - -ALTER TABLE ${ohdsiSchema}.cca_execution - DROP CONSTRAINT IF EXISTS cca_execution_pk; - -ALTER TABLE ${ohdsiSchema}.cca_execution - ADD CONSTRAINT cca_execution_pk PRIMARY KEY (cca_execution_id); - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.input_files -( - id BIGINT, - cca_execution_id BIGINT NOT NULL, - file_contents BYTEA, - file_name CHARACTER VARYING(255) NOT NULL, - CONSTRAINT input_files_pkey PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.input_files - ADD CONSTRAINT fk_sof_cca_execution FOREIGN KEY (cca_execution_id) - REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) - ON UPDATE NO ACTION ON DELETE CASCADE; - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.output_files -( - id BIGINT, - cca_execution_id BIGINT NOT NULL, - file_contents BYTEA, - file_name CHARACTER VARYING(255) NOT NULL, - CONSTRAINT output_files_pkey PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.output_files - ADD CONSTRAINT fk_sif_cca_execution FOREIGN KEY (cca_execution_id) - REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) - ON UPDATE NO ACTION ON DELETE CASCADE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V1.0.6.0__schema-create-plp.sql b/src/main/resources/db/migration/postgresql/V1.0.6.0__schema-create-plp.sql deleted file mode 100644 index 80092e87ff..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.6.0__schema-create-plp.sql +++ /dev/null @@ -1,99 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.plp -( - plp_id integer NOT NULL, - name character varying(255), - treatment_id integer NOT NULL, - outcome_id integer NOT NULL, - model_type character varying(255) NOT NULL, - time_at_risk_start integer NOT NULL, - time_at_risk_end integer NOT NULL, - add_exposure_days_to_end integer NOT NULL, - minimum_washout_period integer NOT NULL, - minimum_days_at_risk integer NOT NULL, - require_time_at_risk integer NOT NULL, - minimum_time_at_risk integer NOT NULL, - sample integer NOT NULL, - sample_size integer NOT NULL, - first_exposure_only integer NOT NULL, - include_all_outcomes integer NOT NULL, - rm_prior_outcomes integer NOT NULL, - prior_outcome_lookback integer NOT NULL, - test_split integer NOT NULL, - test_fraction character varying(255) NULL, - n_fold character varying(255) NULL, - mo_alpha character varying(255) NULL, - mo_class_weight character varying(255) NULL, - mo_index_folder character varying(255) NULL, - mo_k character varying(255) NULL, - mo_learn_rate character varying(255) NULL, - mo_learning_rate character varying(255) NULL, - mo_max_depth character varying(255) NULL, - mo_min_impurity_split character varying(255) NULL, - mo_min_rows character varying(255) NULL, - mo_min_samples_leaf character varying(255) NULL, - mo_min_samples_split character varying(255) NULL, - mo_mtries character varying(255) NULL, - mo_nestimators character varying(255) NULL, - mo_nthread character varying(255) NULL, - mo_ntrees character varying(255) NULL, - mo_plot character varying(255) NULL, - mo_seed character varying(255) NULL, - mo_size character varying(255) NULL, - mo_variance character varying(255) NULL, - mo_var_imp character varying(255) NULL, - cv_exclusion_id integer NOT NULL, - cv_inclusion_id integer NOT NULL, - cv_demographics integer NOT NULL, - cv_demographics_gender integer NOT NULL, - cv_demographics_race integer NOT NULL, - cv_demographics_ethnicity integer NOT NULL, - cv_demographics_age integer NOT NULL, - cv_demographics_year integer NOT NULL, - cv_demographics_month integer NOT NULL, - cv_condition_occ integer NOT NULL, - cv_condition_occ_365d integer NOT NULL, - cv_condition_occ_30d integer NOT NULL, - cv_condition_occ_inpt180d integer NOT NULL, - cv_condition_era integer NOT NULL, - cv_condition_era_ever integer NOT NULL, - cv_condition_era_overlap integer NOT NULL, - cv_condition_group integer NOT NULL, - cv_condition_group_meddra integer NOT NULL, - cv_condition_group_snomed integer NOT NULL, - cv_drug_exposure integer NOT NULL, - cv_drug_exposure_365d integer NOT NULL, - cv_drug_exposure_30d integer NOT NULL, - cv_drug_era integer NOT NULL, - cv_drug_era_365d integer NOT NULL, - cv_drug_era_30d integer NOT NULL, - cv_drug_era_overlap integer NOT NULL, - cv_drug_era_ever integer NOT NULL, - cv_drug_group integer NOT NULL, - cv_procedure_occ integer NOT NULL, - cv_procedure_occ_365d integer NOT NULL, - cv_procedure_occ_30d integer NOT NULL, - cv_procedure_group integer NOT NULL, - cv_observation integer NOT NULL, - cv_observation_365d integer NOT NULL, - cv_observation_30d integer NOT NULL, - cv_observation_count_365d integer NOT NULL, - cv_measurement integer NOT NULL, - cv_measurement_365d integer NOT NULL, - cv_measurement_30d integer NOT NULL, - cv_measurement_count_365d integer NOT NULL, - cv_measurement_below integer NOT NULL, - cv_measurement_above integer NOT NULL, - cv_concept_counts integer NOT NULL, - cv_risk_scores integer NOT NULL, - cv_risk_scores_charlson integer NOT NULL, - cv_risk_scores_dcsi integer NOT NULL, - cv_risk_scores_chads2 integer NOT NULL, - cv_risk_scores_chads2vasc integer NOT NULL, - cv_interaction_year integer NOT NULL, - cv_interaction_month integer NOT NULL, - del_covariates_small_count integer NOT NULL, - created timestamp(3) without time zone NOT NULL, - modified timestamp(3) without time zone NULL, - created_by character varying(255) NULL, - modified_by character varying(255) NULL -); diff --git a/src/main/resources/db/migration/postgresql/V1.0.7.0__alter_cohort_generation_info.sql b/src/main/resources/db/migration/postgresql/V1.0.7.0__alter_cohort_generation_info.sql deleted file mode 100644 index 9ec9c8111b..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.7.0__alter_cohort_generation_info.sql +++ /dev/null @@ -1,12 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info - ADD COLUMN include_features boolean, - ADD COLUMN fail_message varchar(2000), - ADD COLUMN person_count bigint, - ADD COLUMN record_count bigint -; - -UPDATE ${ohdsiSchema}.cohort_generation_info set include_features = 'f' -; - -ALTER TABLE ${ohdsiSchema}.cohort_generation_info - ALTER COLUMN include_features SET NOT NULL; diff --git a/src/main/resources/db/migration/postgresql/V1.0.8.0__cohort_features_results.sql b/src/main/resources/db/migration/postgresql/V1.0.8.0__cohort_features_results.sql deleted file mode 100644 index 1dee6f8759..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.8.0__cohort_features_results.sql +++ /dev/null @@ -1,44 +0,0 @@ -create table ${ohdsiSchema}.cohort_features_dist -( - cohort_definition_id bigint, - covariate_id bigint, - count_value float, - min_value float, - max_value float, - average_value float, - standard_deviation float, - median_value float, - p10_value float, - p25_value float, - p75_value float, - p90_value float -); - -create table ${ohdsiSchema}.cohort_features -( - cohort_definition_id bigint, - covariate_id bigint, - sum_value bigint, - average_value float -); - -create table ${ohdsiSchema}.cohort_features_ref -( - cohort_definition_id bigint, - covariate_id bigint, - covariate_name varchar(1000), - analysis_id int, - concept_id int -); - -create table ${ohdsiSchema}.cohort_features_analysis_ref -( - cohort_definition_id bigint, - analysis_id int, - analysis_name varchar(1000), - domain_id varchar(100), - start_day int, - end_day int, - is_binary char, - missing_means_zero char -); diff --git a/src/main/resources/db/migration/postgresql/V1.0.9.0__data-permissions.sql b/src/main/resources/db/migration/postgresql/V1.0.9.0__data-permissions.sql deleted file mode 100644 index 4723e36f06..0000000000 --- a/src/main/resources/db/migration/postgresql/V1.0.9.0__data-permissions.sql +++ /dev/null @@ -1,110 +0,0 @@ -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(27, 'conceptset:*:delete', 'Delete Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 27); - -insert into ${ohdsiSchema}.sec_permission values (31, 'conceptset:*:put', 'Update Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 31); - -insert into ${ohdsiSchema}.sec_permission values (32, 'conceptset:*:items:put', 'Update Items of Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 32); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(34, 'conceptset:get', 'List of Concept Sets'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 34); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 34); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(35, 'conceptset:*:get', 'Get conceptset expression') ; -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 35); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 35); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(36, 'ir:get', 'List of incidence rates'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 36); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(37, 'ir:*:get', 'Get incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 37); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(38, 'ir:post', 'Create new incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 38); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(39, 'comparativecohortanalysis:get', 'List estimations'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 39); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(40, 'comparativecohortanalysis:*:get', 'Get estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 40); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(41, 'comparativecohortanalysis:post', 'Create new estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 41); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(42, 'plp:get', 'List of population level predictions'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 42); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(43, 'plp:*:get', 'Get population level prediction'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 43); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(44, 'plp:post', 'Create new plp'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 44); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(45, 'source:*:get', 'Read configuration'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 45); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(46, 'vocabulary:*:search:*:get', 'Search vocabulary'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 46); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(47, 'cdmresults:*:get', 'View CDM results'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 47); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(48, 'cohortanalysis:get', 'Get Cohort analyses'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(49, 'cohortanalysis:*:get', 'Get Cohort analyses summary or preview'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 48); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 49); - -insert into ${ohdsiSchema}.sec_permission values (66, 'cohortdefinition:delete', 'Delete Cohort Definition'); -insert into ${ohdsiSchema}.sec_permission values (67, 'cohortdefinition:*:delete', 'Delete Cohort Definition'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(5, 66); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(5, 67); - -insert into ${ohdsiSchema}.sec_permission values (70, 'plp:*:put', 'Update Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_permission values (71, 'plp:*:delete', 'Delete Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_permission values (72, 'plp:*:copy:get', 'Copy Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 70); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 71); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 72); - -insert into ${ohdsiSchema}.sec_permission values (80, 'ir:*:copy:get', 'Copy incidence rate'); -insert into ${ohdsiSchema}.sec_permission values (81, 'ir:*:delete', 'Delete incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 80); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 81); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(90, 'comparativecohortanalysis:*:copy:get', 'Copy estimations'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 90); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(91, 'comparativecohortanalysis:*:delete', 'Delete estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 91); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(92, 'comparativecohortanalysis:*:put', 'Update estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 92); - - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(100, 'cohortresults:*:get', 'Get Cohort reports'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 100); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(101, 'evidence:*:get', 'Get evidence'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 101); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(102, 'executionservice:*:get', 'Get Execution Service Job status'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(103, 'executionservice:execution:run:post', 'Start Execution Service Job'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 102); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 103); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(104, 'feasibility:get', 'List of Feasibilities'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(105, 'feasibility:*:get', 'View Feasibility'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(106, 'feasibility:*:put', 'Edit Feasibility'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(107, 'feasibility:*:delete', 'Delete Feasibility'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 104); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 105); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 106); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 107); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(108, 'featureextraction:*:get', 'Access to Feature Extraction'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 108); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(109, 'job:get', 'Find Job names'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 109); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(110, 'vocabulary:*:post', 'Vocabulary services'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 110); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(111, '*:person:*:get', 'View profiles'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 111); diff --git a/src/main/resources/db/migration/postgresql/V2.11.0.20211012325133__assets_tags_add_endpoints.sql b/src/main/resources/db/migration/postgresql/V2.11.0.20211012325133__assets_tags_add_endpoints.sql deleted file mode 100644 index cb0abe86de..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.11.0.20211012325133__assets_tags_add_endpoints.sql +++ /dev/null @@ -1,26 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:byTags:post', - 'Get cohort definitions with certain assigned tags'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:byTags:post', - 'Get concept sets with certain assigned tags'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:byTags:post', - 'Get cohort characterizations with certain assigned tags'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:byTags:post', - 'Get incidence rates with certain assigned tags'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:byTags:post', - 'Get pathways with certain assigned tags'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:byTags:post', - 'Get reusables with certain assigned tags'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:byTags:post', - 'conceptset:byTags:post', - 'cohort-characterization:byTags:post', - 'ir:byTags:post', - 'pathway-analysis:byTags:post', - 'reusable:byTags:post') - AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/postgresql/V2.11.0.20211101134413__reusables.sql b/src/main/resources/db/migration/postgresql/V2.11.0.20211101134413__reusables.sql deleted file mode 100644 index 546a44a660..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.11.0.20211101134413__reusables.sql +++ /dev/null @@ -1,129 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:get', 'List reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:post', 'Create reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:exists:get', 'Check name uniqueness of reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:put', 'Update reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:post', 'Copy reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:get', 'Get reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:delete', 'Delete reusable'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'reusable:get', - 'reusable:post', - 'reusable:*:post', - 'reusable:*:exists:get', - 'reusable:*:get') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'reusable:*:put', 'reusable:*:delete' - ) AND sr.name IN ('Moderator'); - -CREATE SEQUENCE ${ohdsiSchema}.reusable_seq; - -CREATE TABLE ${ohdsiSchema}.reusable -( - id int4 NOT NULL DEFAULT nextval('${ohdsiSchema}.reusable_seq'), - name VARCHAR NOT NULL, - description varchar NULL, - data text NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - CONSTRAINT pk_reusable_id PRIMARY KEY (id), - CONSTRAINT fk_reusable_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_reusable_sec_user_updater FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user (id) -); - -CREATE UNIQUE INDEX reusable_name_idx ON ${ohdsiSchema}.reusable USING btree (LOWER(name)); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:tag:post', - 'Assign tag to reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:tag:*:delete', - 'Unassign tag from reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:protectedtag:post', - 'Assign tag to reusable'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:protectedtag:*:delete', - 'Unassign tag from reusable'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'reusable:*:tag:post', - 'reusable:*:tag:*:delete') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'reusable:*:protectedtag:post', - 'reusable:*:protectedtag:*:delete') - AND sr.name IN ('admin'); - -CREATE TABLE ${ohdsiSchema}.reusable_tag -( - asset_id int4 NOT NULL, - tag_id int4 NOT NULL, - CONSTRAINT pk_reusable_tag_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT reusable_tag_fk_reusable FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.reusable (id) ON DELETE CASCADE, - CONSTRAINT reusable_tag_fk_tag FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tag (id) ON DELETE CASCADE -); - -CREATE INDEX reusable_tag_reusableidx ON ${ohdsiSchema}.reusable_tag USING btree (asset_id); -CREATE INDEX reusable_tag_tag_id_idx ON ${ohdsiSchema}.reusable_tag USING btree (tag_id); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:version:get', - 'Get list of reusables versions'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:version:*:get', - 'Get reusable version'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:version:*:put', - 'Update reusable version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:version:*:delete', - 'Delete reusable version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'reusable:*:version:*:createAsset:put', - 'Copy reusable version as new reusable'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'reusable:*:version:get', - 'reusable:*:version:*:get', - 'reusable:*:version:*:put', - 'reusable:*:version:*:delete', - 'reusable:*:version:*:createAsset:put') - AND sr.name IN ('Atlas users'); - --- Reusables -CREATE TABLE ${ohdsiSchema}.reusable_version -( - asset_id int8 NOT NULL, - comment varchar NULL, - description varchar NULL, - version int4 NOT NULL DEFAULT 1, - asset_json varchar NOT NULL, - archived bool NOT NULL DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - CONSTRAINT pk_reusable_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_reusable_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_reusable_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.reusable (id) ON DELETE CASCADE -); - -CREATE INDEX reusable_version_asset_idx ON ${ohdsiSchema}.reusable_version USING btree (asset_id); diff --git a/src/main/resources/db/migration/postgresql/V2.11.0.20211109155216__cdm_cache.sql b/src/main/resources/db/migration/postgresql/V2.11.0.20211109155216__cdm_cache.sql deleted file mode 100644 index 1374879914..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.11.0.20211109155216__cdm_cache.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cdm_cache_seq; - -CREATE TABLE ${ohdsiSchema}.cdm_cache -( - id int8 NOT NULL DEFAULT nextval('${ohdsiSchema}.cdm_cache_seq'), - concept_id int4 NOT NULL, - source_id int4 NOT NULL, - record_count int8 NULL, - descendant_record_count int8 NULL, - person_count int8 NULL, - descendant_person_count int8 NULL, - CONSTRAINT cdm_cache_pk PRIMARY KEY (id), - CONSTRAINT cdm_cache_un UNIQUE (concept_id, source_id), - CONSTRAINT cdm_cache_fk FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source (source_id) ON DELETE CASCADE -); -CREATE INDEX cdm_cache_concept_id_idx ON ${ohdsiSchema}.cdm_cache USING btree (concept_id, source_id); diff --git a/src/main/resources/db/migration/postgresql/V2.11.0.20220218125000__add_permission_for_checkv2.sql b/src/main/resources/db/migration/postgresql/V2.11.0.20220218125000__add_permission_for_checkv2.sql deleted file mode 100644 index d953e72c73..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.11.0.20220218125000__add_permission_for_checkv2.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:checkv2:post', 'Run diagnostics for cohort definition with tags'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:checkv2:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.12.0.20220710161100__add_tagging_mass_assign_permission.sql b/src/main/resources/db/migration/postgresql/V2.12.0.20220710161100__add_tagging_mass_assign_permission.sql deleted file mode 100644 index f58c8815f3..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.12.0.20220710161100__add_tagging_mass_assign_permission.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'tag:multiAssign:post', 'Tags multi-assign permission'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'tag:multiUnassign:post', 'Tags multi-unassign permission'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'tag:multiAssign:post', - 'tag:multiUnassign:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.12.0.20220719110154__add_description_to_assets.sql b/src/main/resources/db/migration/postgresql/V2.12.0.20220719110154__add_description_to_assets.sql deleted file mode 100644 index af997b4777..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.12.0.20220719110154__add_description_to_assets.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.pathway_analysis ADD description varchar(1000) NULL; -ALTER TABLE ${ohdsiSchema}.concept_set ADD description varchar(1000) NULL; -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD description varchar(1000) NULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.12.0.202208110000__alter_source_cache_enable.sql b/src/main/resources/db/migration/postgresql/V2.12.0.202208110000__alter_source_cache_enable.sql deleted file mode 100644 index 9f1c4edd16..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.12.0.202208110000__alter_source_cache_enable.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN is_cache_enabled boolean; -UPDATE ${ohdsiSchema}.source set is_cache_enabled = true; -ALTER TABLE ${ohdsiSchema}.source ALTER COLUMN is_cache_enabled SET NOT NULL; diff --git a/src/main/resources/db/migration/postgresql/V2.12.0.202208240001__concept_recommend_perms.sql b/src/main/resources/db/migration/postgresql/V2.12.0.202208240001__concept_recommend_perms.sql deleted file mode 100644 index ca4705cc62..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.12.0.202208240001__concept_recommend_perms.sql +++ /dev/null @@ -1,24 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE('vocabulary:%s:lookup:recommended:post', '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -DROP TABLE temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.12.0.20221102113317__user_originb.sql b/src/main/resources/db/migration/postgresql/V2.12.0.20221102113317__user_originb.sql deleted file mode 100644 index 4fbeac9481..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.12.0.20221102113317__user_originb.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD origin varchar(32) NULL; -UPDATE ${ohdsiSchema}.sec_user SET origin='SYSTEM'; -ALTER TABLE ${ohdsiSchema}.sec_user ALTER COLUMN origin SET NOT NULL; -ALTER TABLE ${ohdsiSchema}.sec_user ALTER COLUMN origin SET DEFAULT 'SYSTEM'; - -ALTER TABLE ${ohdsiSchema}.sec_user_role ADD origin varchar(32) NULL; -UPDATE ${ohdsiSchema}.sec_user_role SET origin='SYSTEM'; -ALTER TABLE ${ohdsiSchema}.sec_user_role ALTER COLUMN origin SET NOT NULL; -ALTER TABLE ${ohdsiSchema}.sec_user_role ALTER COLUMN origin SET DEFAULT 'SYSTEM'; diff --git a/src/main/resources/db/migration/postgresql/V2.12.1.202210120000__alter_source_set_cache_enabled_default.sql b/src/main/resources/db/migration/postgresql/V2.12.1.202210120000__alter_source_set_cache_enabled_default.sql deleted file mode 100644 index 622ffcc296..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.12.1.202210120000__alter_source_set_cache_enabled_default.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ALTER COLUMN is_cache_enabled SET DEFAULT false; diff --git a/src/main/resources/db/migration/postgresql/V2.13.0.20221024175000__add_tag_management_permission.sql b/src/main/resources/db/migration/postgresql/V2.13.0.20221024175000__add_tag_management_permission.sql deleted file mode 100644 index 5814c7250a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.13.0.20221024175000__add_tag_management_permission.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'tag:management', 'Permission to manage tags'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'tag:management' - ) AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.13.0.20221027170000__add_concept_set_csv_comparison_permission.sql b/src/main/resources/db/migration/postgresql/V2.13.0.20221027170000__add_concept_set_csv_comparison_permission.sql deleted file mode 100644 index b3469d5227..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.13.0.20221027170000__add_concept_set_csv_comparison_permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'vocabulary:*:compare-arbitrary', 'Concept sets comparison permission (compare-arbitrary method)'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'vocabulary:*:compare-arbitrary' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.13.1.20230524160057__add_export_conceptset_permissions.sql b/src/main/resources/db/migration/postgresql/V2.13.1.20230524160057__add_export_conceptset_permissions.sql deleted file mode 100644 index f641ab048a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.13.1.20230524160057__add_export_conceptset_permissions.sql +++ /dev/null @@ -1,20 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'feature-analysis:*:export:conceptset:get', - 'Get archive with Feature Analysis Concept Sets'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'cohort-characterization:*:export:conceptset:get', - 'Get archive with Cohort Characterization Concept Sets'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr -WHERE sp."value" in - ( - 'feature-analysis:*:export:conceptset:get', - 'cohort-characterization:*:export:conceptset:get' - ) - AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/postgresql/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql b/src/main/resources/db/migration/postgresql/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql deleted file mode 100644 index 0da36df8c6..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql +++ /dev/null @@ -1 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission WHERE role_id = 2 AND permission_id BETWEEN 34 AND 44; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.2.0.20180215143000__remove_password.sql b/src/main/resources/db/migration/postgresql/V2.2.0.20180215143000__remove_password.sql deleted file mode 100644 index 6b99dd4c0e..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.2.0.20180215143000__remove_password.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user DROP COLUMN password; -ALTER TABLE ${ohdsiSchema}.sec_user DROP COLUMN salt; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.2.5.20180212152023__concept-sets-author.sql b/src/main/resources/db/migration/postgresql/V2.2.5.20180212152023__concept-sets-author.sql deleted file mode 100644 index 2a981bad4f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.2.5.20180212152023__concept-sets-author.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.concept_set - ADD COLUMN created_by VARCHAR(255), - ADD COLUMN modified_by VARCHAR(255), - ADD COLUMN created_date TIMESTAMP WITH TIME ZONE, - ADD COLUMN modified_date TIMESTAMP WITH TIME ZONE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.2.5.20180212181325__cca-author.sql b/src/main/resources/db/migration/postgresql/V2.2.5.20180212181325__cca-author.sql deleted file mode 100644 index 760354b778..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.2.5.20180212181325__cca-author.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cca - ADD COLUMN created_by VARCHAR(255), - ADD COLUMN modified_by VARCHAR(255); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.2.5.20180215105415__separate-sequences.sql b/src/main/resources/db/migration/postgresql/V2.2.5.20180215105415__separate-sequences.sql deleted file mode 100644 index ad392651fb..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.2.5.20180215105415__separate-sequences.sql +++ /dev/null @@ -1,19 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cca_sequence; -SELECT setval('${ohdsiSchema}.cca_sequence', coalesce(max(cca_id), 1)) FROM ${ohdsiSchema}.cca; - -CREATE SEQUENCE ${ohdsiSchema}.cohort_definition_sequence; -SELECT setval('${ohdsiSchema}.cohort_definition_sequence', coalesce(max(id), 1)) FROM ${ohdsiSchema}.cohort_definition; - -CREATE SEQUENCE ${ohdsiSchema}.feasibility_study_sequence; -SELECT setval('${ohdsiSchema}.feasibility_study_sequence', coalesce(max(id), 1)) FROM ${ohdsiSchema}.feasibility_study; - -CREATE SEQUENCE ${ohdsiSchema}.ir_analysis_sequence; -SELECT setval('${ohdsiSchema}.ir_analysis_sequence', coalesce(max(id), 1)) FROM ${ohdsiSchema}.ir_analysis; - -CREATE SEQUENCE ${ohdsiSchema}.plp_sequence; -SELECT setval('${ohdsiSchema}.plp_sequence', coalesce(max(plp_id), 1)) FROM ${ohdsiSchema}.plp; - -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -SELECT setval('${ohdsiSchema}.negative_controls_sequence', coalesce(max(id), 1)) FROM ${ohdsiSchema}.concept_set_negative_controls; -ALTER TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.negative_controls_sequence'); -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS_SEQUENCE; diff --git a/src/main/resources/db/migration/postgresql/V2.2.6.20180215152023__source_key_unique.sql b/src/main/resources/db/migration/postgresql/V2.2.6.20180215152023__source_key_unique.sql deleted file mode 100644 index fecde49754..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.2.6.20180215152023__source_key_unique.sql +++ /dev/null @@ -1 +0,0 @@ -alter table ${ohdsiSchema}.source ADD CONSTRAINT source_key_unique UNIQUE (source_key); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180302143300__negative_control_redo.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180302143300__negative_control_redo.sql deleted file mode 100644 index cdb926938b..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180302143300__negative_control_redo.sql +++ /dev/null @@ -1,37 +0,0 @@ -DROP TABLE IF EXISTS ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS; -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.negative_controls_sequence; -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id INTEGER NOT NULL DEFAULT NEXTVAL('negative_controls_sequence'), - evidence_job_id BIGINT NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - concept_set_name varchar(255) NOT NULL, - negative_control INTEGER NOT NULL, - concept_id INTEGER NOT NULL, - concept_name varchar(255) NOT NULL, - domain_id varchar(255) NOT NULL, - sort_order bigint, - descendant_pmid_cnt BIGINT, - exact_pmid_cnt BIGINT, - parent_pmid_cnt BIGINT, - ancestor_pmid_cnt BIGINT, - ind_ci INTEGER, - too_broad INTEGER, - drug_induced INTEGER, - pregnancy INTEGER, - descendant_splicer_cnt BIGINT, - exact_splicer_cnt BIGINT, - parent_splicer_cnt BIGINT, - ancestor_splicer_cnt BIGINT, - descendant_faers_cnt BIGINT, - exact_faers_cnt BIGINT, - parent_faers_cnt BIGINT, - ancestor_faers_cnt BIGINT, - user_excluded INTEGER, - user_included INTEGER, - optimized_out INTEGER, - not_prevalent INTEGER, - CONSTRAINT PK_CONCEPT_SET_NC PRIMARY KEY (id) -); - diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180302143400__alter_cs_gen_info.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180302143400__alter_cs_gen_info.sql deleted file mode 100644 index e70c25cac6..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180302143400__alter_cs_gen_info.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info - ADD COLUMN params text -; - -UPDATE ${ohdsiSchema}.concept_set_generation_info set params = '{}' -; - -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info - ALTER COLUMN params SET NOT NULL; diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180330124512__add_source_permissions.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180330124512__add_source_permissions.sql deleted file mode 100644 index 1a53ec6231..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180330124512__add_source_permissions.sql +++ /dev/null @@ -1,40 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT - nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'source:*:daimons:*:set-priority:post', - 'Set priority daimons'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:*:daimons:*:set-priority:post' - AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:post', 'Create source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:*:put', 'Edit source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:*:put' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:*:delete', 'Delete source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:*:delete' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:details:*:get', 'Read source details'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:details:*:get' AND sr.name IN ('admin'); diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180405164306__add_profile_permission.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180405164306__add_profile_permission.sql deleted file mode 100644 index 2b0c465891..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180405164306__add_profile_permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT - nextval('${ohdsiSchema}.sec_permission_id_seq'), - '*:person:*:get:dates', - 'View calendar dates on person profiles'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = '*:person:*:get:dates' - AND sr.name IN ('admin', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180412000000__increment_sequences.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180412000000__increment_sequences.sql deleted file mode 100644 index af1dfa7030..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180412000000__increment_sequences.sql +++ /dev/null @@ -1,16 +0,0 @@ --- cca_sequence -SELECT setval('${ohdsiSchema}.cca_sequence', coalesce(max(cca_id) + 1, 1)) FROM ${ohdsiSchema}.cca; --- cohort_definition_sequence -SELECT setval('${ohdsiSchema}.cohort_definition_sequence', coalesce(max(id) + 1, 1)) FROM ${ohdsiSchema}.cohort_definition; --- concept_set_item_sequence -SELECT setval('${ohdsiSchema}.concept_set_item_sequence', coalesce(max(concept_set_item_id) + 1, 1)) FROM ${ohdsiSchema}.concept_set_item; --- concept_set_sequence -SELECT setval('${ohdsiSchema}.concept_set_sequence', coalesce(max(concept_set_id) + 1, 1)) FROM ${ohdsiSchema}.concept_set; --- feasibility_study_sequence -SELECT setval('${ohdsiSchema}.feasibility_study_sequence', coalesce(max(id) + 1, 1)) FROM ${ohdsiSchema}.feasibility_study; --- ir_analysis_sequence -SELECT setval('${ohdsiSchema}.ir_analysis_sequence', coalesce(max(id) + 1, 1)) FROM ${ohdsiSchema}.ir_analysis; --- negative_controls_sequence -SELECT setval('${ohdsiSchema}.negative_controls_sequence', coalesce(max(id) + 1, 1)) FROM ${ohdsiSchema}.concept_set_negative_controls; --- plp_sequence -SELECT setval('${ohdsiSchema}.plp_sequence', coalesce(max(plp_id) + 1, 1)) FROM ${ohdsiSchema}.plp; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180412000001__constraints.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180412000001__constraints.sql deleted file mode 100644 index 6a724d6ec1..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180412000001__constraints.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Add PK to cca table -ALTER TABLE ${ohdsiSchema}.cca ADD CONSTRAINT PK_cca_cca_id PRIMARY KEY (cca_id); - --- Add PK to concept_set_item -ALTER TABLE ${ohdsiSchema}.concept_set_item ADD CONSTRAINT PK_concept_set_item PRIMARY KEY (concept_set_item_id); - --- Add PK to plp table -ALTER TABLE ${ohdsiSchema}.plp ADD CONSTRAINT PK_plp_plp_id PRIMARY KEY (plp_id); diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180425185900__cohort_analysis_generation_info.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180425185900__cohort_analysis_generation_info.sql deleted file mode 100644 index db0ab395ed..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180425185900__cohort_analysis_generation_info.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_analysis_gen_info ( - source_id int NOT NULL, - cohort_id int NOT NULL, - last_execution Timestamp(3), - execution_duration int, - fail_message varchar(2000), - PRIMARY KEY (source_id, cohort_id) -); - -CREATE TABLE ${ohdsiSchema}.cohort_analysis_list_xref ( - source_id int, - cohort_id int, - analysis_id int); - -ALTER TABLE ${ohdsiSchema}.cohort_analysis_gen_info ADD CONSTRAINT FK_cagi_cohort_id FOREIGN KEY (cohort_id) REFERENCES ${ohdsiSchema}.cohort_definition (ID); -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ADD CONSTRAINT FK_calx_source_id FOREIGN KEY (source_id, cohort_id) REFERENCES ${ohdsiSchema}.cohort_analysis_gen_info (source_id, cohort_id); diff --git a/src/main/resources/db/migration/postgresql/V2.3.0.20180427114800__sec_user_unique.sql b/src/main/resources/db/migration/postgresql/V2.3.0.20180427114800__sec_user_unique.sql deleted file mode 100644 index f215c8cc82..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.3.0.20180427114800__sec_user_unique.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD CONSTRAINT sec_user_login_unique UNIQUE (login); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.4.0.20180508090000__source-credentials.sql b/src/main/resources/db/migration/postgresql/V2.4.0.20180508090000__source-credentials.sql deleted file mode 100644 index 39f9364e43..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.4.0.20180508090000__source-credentials.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN username VARCHAR(255); -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN password VARCHAR(255); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.4.0.20180516223100__roles-unique.sql b/src/main/resources/db/migration/postgresql/V2.4.0.20180516223100__roles-unique.sql deleted file mode 100644 index 9f7b571325..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.4.0.20180516223100__roles-unique.sql +++ /dev/null @@ -1 +0,0 @@ -alter table ${ohdsiSchema}.sec_role ADD CONSTRAINT sec_role_name_uq UNIQUE (name); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.4.3.20180619113700__permission_for_my_user.sql b/src/main/resources/db/migration/postgresql/V2.4.3.20180619113700__permission_for_my_user.sql deleted file mode 100644 index 37666ffee8..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.4.3.20180619113700__permission_for_my_user.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT - nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:me:get', - 'Get info about current user (myself)'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:me:get' - AND sr.name IN ('public'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.4.3.20180702202700__permission_for_ir_execution.sql b/src/main/resources/db/migration/postgresql/V2.4.3.20180702202700__permission_for_ir_execution.sql deleted file mode 100644 index da59bfba0c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.4.3.20180702202700__permission_for_ir_execution.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'ir:*:execute:*:get', - 'Execute Incidence Rate job'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'ir:*:execute:*:get' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.4.3.20180703144901__permission_for_evidence.sql b/src/main/resources/db/migration/postgresql/V2.4.3.20180703144901__permission_for_evidence.sql deleted file mode 100644 index 9985b06c25..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.4.3.20180703144901__permission_for_evidence.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'evidence:*:negativecontrols:post', - 'Execute evidence job'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'evidence:*:negativecontrols:post' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql b/src/main/resources/db/migration/postgresql/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql deleted file mode 100644 index d2ebefb85c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_analysis_gen_info ADD COLUMN progress INT DEFAULT 0; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.5.0.20180713123456__cem_v_1.sql b/src/main/resources/db/migration/postgresql/V2.5.0.20180713123456__cem_v_1.sql deleted file mode 100644 index 9d6ad67ac2..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.5.0.20180713123456__cem_v_1.sql +++ /dev/null @@ -1,12 +0,0 @@ -DELETE FROM ${ohdsiSchema}.CONCEPT_SET_GENERATION_INFO; - -DROP TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS; -DROP SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id INTEGER NOT NULL DEFAULT NEXTVAL('negative_controls_sequence'), - evidence_job_id BIGINT NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - CONSTRAINT PK_CONCEPT_SET_NC PRIMARY KEY (id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.5.0.20180720117120__source-connection-check-rule.sql b/src/main/resources/db/migration/postgresql/V2.5.0.20180720117120__source-connection-check-rule.sql deleted file mode 100644 index 0477ba79c4..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.5.0.20180720117120__source-connection-check-rule.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:connection:*:get', 'Check source connection'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:connection:*:get' AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.5.0.20180725172844__add-ad-import-permissions.sql b/src/main/resources/db/migration/postgresql/V2.5.0.20180725172844__add-ad-import-permissions.sql deleted file mode 100644 index 4c5b36fe4b..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.5.0.20180725172844__add-ad-import-permissions.sql +++ /dev/null @@ -1,64 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:providers:get', 'Get list of authentication providers AD/LDAP'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:providers:get' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:import:*:groups:get', 'Search groups in AD/LDAP'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:groups:get' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:import:*:post', 'Search users in AD/LDAP'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:import:post', 'Import users from AD/LDAP'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:import:*:mapping:post', 'Save Atlas roles mappings to LDAP groups'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:mapping:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:import:*:mapping:get', 'Read Atlas roles mappings to LDAP groups'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:mapping:get' AND sr.name IN ('admin'); - -CREATE SEQUENCE ${ohdsiSchema}.sec_role_group_seq; - -CREATE TABLE ${ohdsiSchema}.sec_role_group( - id INTEGER PRIMARY KEY DEFAULT nextval('${ohdsiSchema}.sec_role_group_seq'), - provider VARCHAR NOT NULL, - group_dn VARCHAR NOT NULL, - group_name VARCHAR, - role_id INTEGER NOT NULL, - UNIQUE(provider, group_dn, role_id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql b/src/main/resources/db/migration/postgresql/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql deleted file mode 100644 index 2cbbe86c4a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN krb_auth_method VARCHAR DEFAULT 'PASSWORD' NOT NULL; -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN keytab_name VARCHAR; -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN krb_keytab BYTEA; -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN krb_admin_server VARCHAR; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.5.0.20180817154116__add-extra-import-permissions.sql b/src/main/resources/db/migration/postgresql/V2.5.0.20180817154116__add-extra-import-permissions.sql deleted file mode 100644 index 25b896fab0..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.5.0.20180817154116__add-extra-import-permissions.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), - 'user:import:*:test:get', 'Check LDAP/AD connection'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:test:get' AND sr.name IN ('admin'); diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20180731092421__cohort-characterization.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20180731092421__cohort-characterization.sql deleted file mode 100644 index 36f9ff61ec..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20180731092421__cohort-characterization.sql +++ /dev/null @@ -1,276 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cohort_characterization_seq; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.cohort_characterization -( - id BIGINT PRIMARY KEY DEFAULT NEXTVAL('cohort_characterization_seq'), - name VARCHAR(255) NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - hash_code INTEGER NULL -); - -ALTER TABLE ${ohdsiSchema}.cohort_characterization - ADD CONSTRAINT fk_cc_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.cohort_characterization - ADD CONSTRAINT fk_cc_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - - - -CREATE SEQUENCE ${ohdsiSchema}.cc_param_sequence; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.cc_param -( - id BIGINT PRIMARY KEY DEFAULT NEXTVAL('cc_param_sequence'), - cohort_characterization_id BIGINT NOT NULL, - name VARCHAR(255), - value VARCHAR(255) -); - -ALTER TABLE ${ohdsiSchema}.cc_param - ADD CONSTRAINT fk_ccp_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization (id) -ON UPDATE NO ACTION ON DELETE CASCADE; - - - -CREATE SEQUENCE ${ohdsiSchema}.fe_analysis_sequence; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.fe_analysis -( - id BIGINT PRIMARY KEY DEFAULT NEXTVAL('fe_analysis_sequence'), - type VARCHAR(255), - name VARCHAR(255), - domain VARCHAR(255), - descr VARCHAR(1000), - value VARCHAR(255), - design Text, - is_locked BOOLEAN, - stat_type VARCHAR(255) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:post', 'Create cohort characterization'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:import:post', 'Import cohort characterization'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:get', 'Get cohort characterizations list'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:get', 'Get cohort characterization'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:generation:get', 'Get cohort characterization generations'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:get', 'Get cohort characterization generation'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:delete', 'Delete cohort characterization generation and results'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:result:get', 'Get cohort characterization generation results'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:design:get', 'Get cohort characterization generation design'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:export:get', 'Export cohort characterization'), - - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'feature-analysis:get', 'Get feature analyses list'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'feature-analysis:*:get', 'Get feature analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'feature-analysis:post', 'Create feature analysis'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp."value" IN ( - 'cohort-characterization:post', - 'cohort-characterization:import:post', - 'cohort-characterization:get', - 'cohort-characterization:*:get', - 'cohort-characterization:*:generation:get', - 'cohort-characterization:generation:*:get', - 'cohort-characterization:generation:*:delete', - 'cohort-characterization:generation:*:result:get', - 'cohort-characterization:generation:*:design:get', - 'cohort-characterization:*:export:get', - - 'feature-analysis:get', - 'feature-analysis:*:get', - 'feature-analysis:post' -) -AND sr.name IN ('Atlas users'); - - --- SOURCE based permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq') AS id, - 'source:' || source_key || ':access' AS value, - 'Access to Source with SourceKey = ' || source_key AS description - FROM ${ohdsiSchema}.source; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.source - join ${ohdsiSchema}.sec_permission sp ON sp.value IN ('source:' || source_key || ':access') - join ${ohdsiSchema}.sec_role sr ON sr.name = 'Source user (' || source_key || ')'; - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.cc_analysis -( - cohort_characterization_id BIGINT NOT NULL, - fe_analysis_id BIGINT NOT NULL -); - -ALTER TABLE ${ohdsiSchema}.cc_analysis - ADD CONSTRAINT fk_c_char_a_fe_analysis FOREIGN KEY (fe_analysis_id) -REFERENCES ${ohdsiSchema}.fe_analysis(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cc_analysis - ADD CONSTRAINT fk_c_char_a_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - - - -CREATE SEQUENCE ${ohdsiSchema}.fe_analysis_criteria_sequence; -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.fe_analysis_criteria -( - id BIGINT PRIMARY KEY DEFAULT NEXTVAL('fe_analysis_criteria_sequence'), - name VARCHAR(255), - expression Text, - fe_analysis_id BIGINT -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD CONSTRAINT fk_fec_fe_analysis FOREIGN KEY (fe_analysis_id) -REFERENCES ${ohdsiSchema}.fe_analysis(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - - - -CREATE TABLE IF NOT EXISTS ${ohdsiSchema}.cc_cohort -( - cohort_characterization_id BIGINT NOT NULL, - cohort_id INT NOT NULL -); - -ALTER TABLE ${ohdsiSchema}.cc_cohort - ADD CONSTRAINT fk_c_char_c_fe_analysis FOREIGN KEY (cohort_id) -REFERENCES ${ohdsiSchema}.cohort_definition(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cc_cohort - ADD CONSTRAINT fk_c_char_c_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details ADD hash_code int null; - -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Short Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the short term window.', null, 'MeasurementRangeGroupShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Start Long Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the long term window.', null, 'ConditionGroupEraStartLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Start Medium Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the medium term window.', null, 'DrugGroupEraStartMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Short Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the short term window.', null, 'ConditionEraShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Long Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the long term window.', null, 'DrugGroupEraLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Overlapping', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with the end of the risk window.', null, 'ConditionGroupEraOverlapping', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Short Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the short term window.', null, 'DrugGroupEraShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Medium Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the medium term window.', null, 'DrugGroupEraMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Start Long Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the long term window.', null, 'ConditionEraStartLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Any Time Prior', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any time prior to index.', null, 'ConditionEraAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Start Medium Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the medium term window.', null, 'ConditionGroupEraStartMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Long Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the long term window.', null, 'DrugExposureLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Long Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the long term window.', null, 'MeasurementRangeGroupLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Medium Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the medium term window.', null, 'MeasurementRangeGroupMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Any Time Prior', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any time prior to index.', null, 'DrugGroupEraAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Medium Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the medium term window.', null, 'ConditionEraMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Overlapping', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with the end of the risk window.', null, 'ConditionEraOverlapping', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Start Short Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the short term window.', null, 'ConditionEraStartShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Start Short Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the short term window.', null, 'DrugGroupEraStartShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Short Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the short term window.', null, 'ConditionGroupEraShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Start Medium Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the medium term window.', null, 'ConditionEraStartMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Medium Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the medium term window.', null, 'ProcedureOccurrenceMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Long Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the long term window.', null, 'ConditionEraLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Start Long Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the long term window.', null, 'DrugGroupEraStartLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Overlapping', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with the end of the risk window.', null, 'DrugGroupEraOverlapping', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Any Time Prior', NULL, 'Covariates indicating whether measurements are below, within, or above normal range any time prior to index.', null, 'MeasurementRangeGroupAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Any Time Prior', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any time prior to index.', null, 'ConditionGroupEraAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Any Time Prior', 'DRUG', 'One covariate per drug in the drug_exposure table starting any time prior to index.', null, 'DrugExposureAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Start Short Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the short term window.', null, 'ConditionGroupEraStartShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Long Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the long term window.', null, 'ConditionGroupEraLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Short Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the short term window.', null, 'DrugExposureShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Medium Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the medium term window.', null, 'ConditionGroupEraMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Medium Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the medium term window.', null, 'DrugExposureMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Short Term', 'OBSERVATION', 'One covariate per observation in the observation table in the short term window.', null, 'ObservationShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Start Long Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the long term window.', null, 'DrugEraStartLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Dcsi', 'CONDITION', 'The Diabetes Comorbidity Severity Index (DCSI) using all conditions prior to the window end.', null, 'Dcsi', true, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Start Short Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the long short window.', null, 'DrugEraStartShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Ingredient Count Medium Term', 'DRUG', 'The number of distinct ingredients observed in the medium term window.', null, 'DistinctIngredientCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Any Time Prior', 'MEASUREMENT', 'One covariate per measurement in the measurement table any time prior to index.', null, 'MeasurementAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Medium Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the medium term window.', null, 'MeasurementMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Condition Count Long Term', 'CONDITION', 'The number of distinct condition concepts observed in the long term window.', null, 'DistinctConditionCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Long Term', NULL, 'One covariate containing the value per measurement-unit combination in the long term window.', null, 'MeasurementValueLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Short Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the short window.', null, 'DrugEraShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Overlapping', 'DRUG', 'One covariate per drug in the drug_era table overlapping with the end of the risk window.', null, 'DrugEraOverlapping', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Any Time Prior', 'OBSERVATION', 'One covariate per observation in the observation table any time prior to index.', null, 'ObservationAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Ingredient Count Long Term', 'DRUG', 'The number of distinct ingredients observed in the long term window.', null, 'DistinctIngredientCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Procedure Count Short Term', 'PROCEDURE', 'The number of distinct procedures observed in the short term window.', null, 'DistinctProcedureCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Condition Count Short Term', 'CONDITION', 'The number of distinct condition concepts observed in the short term window.', null, 'DistinctConditionCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Charlson Index', 'CONDITION', 'The Charlson comorbidity index (Romano adaptation) using all conditions prior to the window end.', null, 'CharlsonIndex', true, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Short Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the short term window.', null, 'MeasurementShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Procedure Count Medium Term', 'PROCEDURE', 'The number of distinct procedures observed in the medium term window.', null, 'DistinctProcedureCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Any Time Prior', 'DEVICE', 'One covariate per device in the device exposure table starting any time prior to index.', null, 'DeviceExposureAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Long Term', 'OBSERVATION', 'One covariate per observation in the observation table in the long term window.', null, 'ObservationLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Condition Count Medium Term', 'CONDITION', 'The number of distinct condition concepts observed in the medium term window.', null, 'DistinctConditionCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Short Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the short term window.', null, 'ProcedureOccurrenceShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Medium Term', 'OBSERVATION', 'One covariate per observation in the observation table in the medium term window.', null, 'ObservationMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Long Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the long term window.', null, 'DeviceExposureLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Short Term', NULL, 'One covariate containing the value per measurement-unit combination in the short term window.', null, 'MeasurementValueShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Medium Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the medium term window.', null, 'DeviceExposureMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Long Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the long term window.', null, 'MeasurementLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Medium Term', NULL, 'One covariate containing the value per measurement-unit combination in the medium term window.', null, 'MeasurementValueMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Start Medium Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the medium term window.', null, 'DrugEraStartMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Any Time Prior', NULL, 'One covariate containing the value per measurement-unit combination any time prior to index.', null, 'MeasurementValueAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Ingredient Count Short Term', 'DRUG', 'The number of distinct ingredients observed in the short term window.', null, 'DistinctIngredientCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Short Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the short term window.', null, 'DeviceExposureShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Procedure Count Long Term', 'PROCEDURE', 'The number of distinct procedures observed in the long term window.', null, 'DistinctProcedureCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Long Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the long term window.', null, 'ConditionOccurrenceLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Index Month', 'DEMOGRAPHICS', 'Month of the index date.', null, 'DemographicsIndexMonth', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Any Time Prior', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting any time prior to index.', null, 'ConditionOccurrenceAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Ethnicity', 'DEMOGRAPHICS', 'Ethnicity of the subject.', null, 'DemographicsEthnicity', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Age Group', 'DEMOGRAPHICS', 'Age of the subject on the index date (in 5 year age groups)', null, 'DemographicsAgeGroup', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Race', 'DEMOGRAPHICS', 'Race of the subject.', null, 'DemographicsRace', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Prior Observation Time', 'DEMOGRAPHICS', 'Number of continuous days of observation time preceding the index date.', null, 'DemographicsPriorObservationTime', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Gender', 'DEMOGRAPHICS', 'Gender of the subject.', null, 'DemographicsGender', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Index Year Month', 'DEMOGRAPHICS', 'Both calendar year and month of the index date in a single variable.', null, 'DemographicsIndexYearMonth', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Medium Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the medium term window.', null, 'ConditionOccurrenceMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Age', 'DEMOGRAPHICS', 'Age of the subject on the index date (in years).', null, 'DemographicsAge', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Chads 2', 'CONDITION', 'The CHADS2 score using all conditions prior to the window end.', null, 'Chads2', true, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Time In Cohort', 'DEMOGRAPHICS', 'Number of days of observation time during cohort period.', null, 'DemographicsTimeInCohort', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Index Year', 'DEMOGRAPHICS', 'Year of the index date.', null, 'DemographicsIndexYear', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Post Observation Time', 'DEMOGRAPHICS', 'Number of continuous days of observation time following the index date.', null, 'DemographicsPostObservationTime', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Chads 2 Vasc', 'CONDITION', 'The CHADS2VASc score using all conditions prior to the window end.', null, 'Chads2Vasc', true, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Primary Inpatient Long Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the long term window.', null, 'ConditionOccurrencePrimaryInpatientLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Long Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the long term window.', null, 'ProcedureOccurrenceLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Primary Inpatient Any Time Prior', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting any time prior to index.', null, 'ConditionOccurrencePrimaryInpatientAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Long Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the long term window.', null, 'DrugEraLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Any Time Prior', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table any time prior to index.', null, 'ProcedureOccurrenceAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Medium Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the medium term window.', null, 'DrugEraMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Any Time Prior', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any time prior to index.', null, 'DrugEraAnyTimePrior', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Short Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the short term window.', null, 'ConditionOccurrenceShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Measurement Count Short Term', 'MEASUREMENT', 'The number of distinct measurements observed in the short term window.', null, 'DistinctMeasurementCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Concept Count Short Term', 'VISIT', 'The number of visits observed in the short term window, stratified by visit concept ID.', null, 'VisitConceptCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Observation Count Medium Term', 'OBSERVATION', 'The number of distinct observations observed in the medium term window.', null, 'DistinctObservationCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Observation Count Long Term', 'OBSERVATION', 'The number of distinct observations observed in the long term window.', null, 'DistinctObservationCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Measurement Count Long Term', 'MEASUREMENT', 'The number of distinct measurements observed in the long term window.', null, 'DistinctMeasurementCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Measurement Count Medium Term', 'MEASUREMENT', 'The number of distinct measurements observed in the medium term window.', null, 'DistinctMeasurementCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Observation Count Short Term', 'OBSERVATION', 'The number of distinct observations observed in the short term window.', null, 'DistinctObservationCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Concept Count Long Term', 'VISIT', 'The number of visits observed in the long term window, stratified by visit concept ID.', null, 'VisitConceptCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Concept Count Medium Term', 'VISIT', 'The number of visits observed in the medium term window, stratified by visit concept ID.', null, 'VisitConceptCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Count Medium Term', 'VISIT', 'The number of visits observed in the medium term window.', null, 'VisitCountMediumTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Count Short Term', 'VISIT', 'The number of visits observed in the short term window.', null, 'VisitCountShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Occurrence Primary Inpatient Short Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the short term window.', null, 'ConditionOccurrencePrimaryInpatientShortTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Count Long Term', 'VISIT', 'The number of visits observed in the long term window.', null, 'VisitCountLongTerm', true, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Occurrence Primary Inpatient Medium Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the medium term window.', null, 'ConditionOccurrencePrimaryInpatientMediumTerm', true, 'PREVALENCE'); - -CREATE TABLE ${ohdsiSchema}.analysis_generation_info ( - job_execution_id INTEGER NOT NULL, - design VARCHAR NOT NULL, - hash_code VARCHAR NOT NULL, - created_by_id INTEGER -); - -ALTER TABLE ${ohdsiSchema}.analysis_generation_info - ADD CONSTRAINT fk_cgi_sec_user FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id) -ON UPDATE NO ACTION ON DELETE NO ACTION; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20180731092422__cohort-characterization-generations-view.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20180731092422__cohort-characterization-generations-view.sql deleted file mode 100644 index aafa67e56e..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20180731092422__cohort-characterization-generations-view.sql +++ /dev/null @@ -1,27 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as ( - -SELECT - -- Spring batch based - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(cc_id_param.string_val AS INTEGER) cc_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -ORDER BY start_time DESC - -); - --- TODO indexes \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20180906220021__pathway_analysis.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20180906220021__pathway_analysis.sql deleted file mode 100644 index 2c1a7e7734..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20180906220021__pathway_analysis.sql +++ /dev/null @@ -1,98 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.pathway_analysis_sequence; -CREATE TABLE ${ohdsiSchema}.pathway_analysis -( - id INTEGER DEFAULT NEXTVAL('pathway_analysis_sequence'), - name VARCHAR NOT NULL, - combination_window INTEGER, - min_cell_count INTEGER, - max_depth INTEGER, - allow_repeats BOOLEAN DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP, - modified_by_id INTEGER, - modified_date TIMESTAMP, - hash_code INTEGER, - CONSTRAINT PK_pathway_analysis PRIMARY KEY (id) -); - -CREATE SEQUENCE ${ohdsiSchema}.pathway_cohort_sequence; - -CREATE TABLE ${ohdsiSchema}.pathway_target_cohort -( - id INTEGER DEFAULT NEXTVAL('pathway_cohort_sequence'), - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - pathway_analysis_id INTEGER NOT NULL, - CONSTRAINT PK_pathway_target_cohort PRIMARY KEY (id), - CONSTRAINT FK_ptc_cd_id - FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_ptc_pa_id - FOREIGN KEY (pathway_analysis_id) - REFERENCES ${ohdsiSchema}.pathway_analysis (id) -); - -CREATE TABLE ${ohdsiSchema}.pathway_event_cohort -( - id INTEGER DEFAULT NEXTVAL('pathway_cohort_sequence'), - name VARCHAR NOT NULL, - cohort_definition_id INTEGER NOT NULL, - pathway_analysis_id INTEGER NOT NULL, - CONSTRAINT PK_pathway_event_cohort PRIMARY KEY (id), - CONSTRAINT FK_pec_cd_id - FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id), - CONSTRAINT FK_pec_pa_id - FOREIGN KEY (pathway_analysis_id) - REFERENCES ${ohdsiSchema}.pathway_analysis (id) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:post', 'Create Pathways Analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:import:post', 'Import Pathways Analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:get', 'Get Pathways Analyses list'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:get', 'Get Pathways Analysis instance'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:generation:get', 'Get Pathways Analysis generations list'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:generation:*:get', 'Get Pathways Analysis generation instance'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:generation:*:result:get', 'Get Pathways Analysis generation results'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:generation:*:design:get', 'Get Pathways Analysis generation design'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:export:get', 'Export Pathways Analysis'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp."value" IN ( - 'pathway-analysis:post', - 'pathway-analysis:import:post', - 'pathway-analysis:get', - 'pathway-analysis:*:get', - 'pathway-analysis:*:generation:get', - 'pathway-analysis:generation:*:get', - 'pathway-analysis:generation:*:result:get', - 'pathway-analysis:generation:*:design:get', - 'pathway-analysis:*:export:get' -) -AND sr.name IN ('Atlas users'); - -CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -ORDER BY start_time DESC); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql deleted file mode 100644 index 57ea600d1a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql +++ /dev/null @@ -1,77 +0,0 @@ --- Cohort Definition - -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.cohort_definition d SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = d.created_by AND d.created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.cohort_definition d SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = d.modified_by AND d.modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.cohort_definition DROP COLUMN created_by, DROP COLUMN modified_by; - --- Feasibility Study - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.feasibility_study f SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = f.created_by AND f.created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.feasibility_study f SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = f.modified_by AND f.modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.feasibility_study DROP COLUMN created_by, DROP COLUMN modified_by; - --- Incidence Rate Analysis - -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.ir_analysis i SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = i.created_by AND i.created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.ir_analysis i SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = i.modified_by AND i.modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.ir_analysis DROP COLUMN created_by, DROP COLUMN modified_by; - --- CCA - -ALTER TABLE ${ohdsiSchema}.cca ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.cca c SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.created_by AND c.created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.cca c SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.modified_by AND c.modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.cca DROP COLUMN created_by, DROP COLUMN modified_by; - --- ConceptSet - -ALTER TABLE ${ohdsiSchema}.concept_set ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.concept_set c SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.created_by AND c.created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.concept_set c SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = c.modified_by AND c.modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.concept_set DROP COLUMN created_by, DROP COLUMN modified_by; - --- Patient Level Prediction - -ALTER TABLE ${ohdsiSchema}.plp ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); - -UPDATE ${ohdsiSchema}.plp p SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = p.created_by AND p.created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.plp p SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = p.modified_by AND p.modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.plp DROP COLUMN created_by, DROP COLUMN modified_by; diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20180921202400__fe-analysis-id.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20180921202400__fe-analysis-id.sql deleted file mode 100644 index 8baa5e1476..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20180921202400__fe-analysis-id.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis ALTER id TYPE INTEGER; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181001200021__estimation_prediction.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181001200021__estimation_prediction.sql deleted file mode 100644 index 2d87b8e011..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181001200021__estimation_prediction.sql +++ /dev/null @@ -1,50 +0,0 @@ --- Estimation -CREATE SEQUENCE ${ohdsiSchema}.estimation_seq START WITH 1; -CREATE TABLE ${ohdsiSchema}.estimation -( - estimation_id INTEGER NOT NULL DEFAULT NEXTVAL('estimation_seq'), - name character varying(255) NOT NULL, - type character varying(255) NOT NULL, - description character varying(1000), - specification text NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - CONSTRAINT pk_estimation PRIMARY KEY (estimation_id) -); - -ALTER TABLE ${ohdsiSchema}.estimation - ADD CONSTRAINT fk_estimation_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.estimation - ADD CONSTRAINT fk_estimation_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - --- Prediction -CREATE SEQUENCE ${ohdsiSchema}.prediction_seq START WITH 1; -CREATE TABLE ${ohdsiSchema}.prediction -( - prediction_id INTEGER NOT NULL DEFAULT NEXTVAL('prediction_seq'), - name character varying(255) NOT NULL, - description character varying(1000), - specification text NOT NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - CONSTRAINT pk_prediction PRIMARY KEY (prediction_id) -); - -ALTER TABLE ${ohdsiSchema}.prediction - ADD CONSTRAINT fk_prediction_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.prediction - ADD CONSTRAINT fk_prediction_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181002110845__fe_analysis_conceptsets.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181002110845__fe_analysis_conceptsets.sql deleted file mode 100644 index 70294cb65f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181002110845__fe_analysis_conceptsets.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD COLUMN conceptsets VARCHAR; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181005122300__schema-create-fe-conceptset.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181005122300__schema-create-fe-conceptset.sql deleted file mode 100644 index 2077d845ee..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181005122300__schema-create-fe-conceptset.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.fe_conceptset_sequence; - -CREATE TABLE ${ohdsiSchema}.fe_analysis_conceptset ( - id bigint NOT NULL DEFAULT NEXTVAL('${ohdsiSchema}.fe_conceptset_sequence'), - fe_analysis_id int NOT NULL, - expression varchar -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT pk_fe_conceptset_id PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT fk_fe_conceptset_fe_analysis FOREIGN KEY (fe_analysis_id) - REFERENCES ${ohdsiSchema}.fe_analysis(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN conceptsets; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181008210200__source-deleted-at-field.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181008210200__source-deleted-at-field.sql deleted file mode 100644 index 0ce77092ee..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181008210200__source-deleted-at-field.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD COLUMN deleted_date TIMESTAMP; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181009110500__fix-fe-analysis-types.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181009110500__fix-fe-analysis-types.sql deleted file mode 100644 index 158c738d35..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181009110500__fix-fe-analysis-types.sql +++ /dev/null @@ -1,45 +0,0 @@ -UPDATE ${ohdsiSchema}.fe_analysis -SET stat_type = 'DISTRIBUTION' -WHERE type = 'PRESET' and design IN ( - -- DemographicsAge.sql - 'DemographicsAge', - -- DemographicsTime.sql - 'DemographicsPriorObservationTime', - 'DemographicsPostObservationTime', - 'DemographicsTimeInCohort', - -- Chads2.sql - 'Chads2', - -- Chads2Vasc.sql - 'Chads2Vasc', - -- ConceptCounts.sql - 'DistinctConditionCountLongTerm', - 'DistinctConditionCountMediumTerm', - 'DistinctConditionCountShortTerm', - 'DistinctIngredientCountLongTerm', - 'DistinctIngredientCountMediumTerm', - 'DistinctIngredientCountShortTerm', - 'DistinctProcedureCountLongTerm', - 'DistinctProcedureCountMediumTerm', - 'DistinctProcedureCountShortTerm', - 'DistinctMeasurementCountLongTerm', - 'DistinctMeasurementCountMediumTerm', - 'DistinctMeasurementCountShortTerm', - 'DistinctObservationCountLongTerm', - 'DistinctObservationCountMediumTerm', - 'DistinctObservationCountShortTerm', - 'VisitCountLongTerm', - 'VisitCountMediumTerm', - 'VisitCountShortTerm', - 'VisitConceptCountLongTerm', - 'VisitConceptCountMediumTerm', - 'VisitConceptCountShortTerm', - -- MeasurementValue.sql - 'MeasurementValueAnyTimePrior', - 'MeasurementValueLongTerm', - 'MeasurementValueMediumTerm', - 'MeasurementValueShortTerm', - -- CharlsonIndex.sql - 'CharlsonIndex', - -- Dcsi.sql - 'Dcsi' -); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181009115500__fix-ple-plp-permissions.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181009115500__fix-ple-plp-permissions.sql deleted file mode 100644 index 877c7bc246..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181009115500__fix-ple-plp-permissions.sql +++ /dev/null @@ -1,47 +0,0 @@ --- Estimation - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:post', 'Create Estimation'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:get', 'Get Estimation list'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:get', 'Get Estimation instance'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:copy:get', 'Copy Estimation instance'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:download:get', 'Download Estimation package'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:export:get', 'Export Estimation'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp."value" IN ( - 'estimation:post', - 'estimation:get', - 'estimation:*:get', - 'estimation:*:copy:get', - 'estimation:*:download:get', - 'estimation:*:export:get' -) -AND sr.name IN ('Atlas users'); - --- Prediction - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:post', 'Create Prediction'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:get', 'Get Prediction list'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:get', 'Get Prediction instance'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:copy:get', 'Copy Prediction instance'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:download:get', 'Download Prediction package'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:export:get', 'Export Prediction'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp."value" IN ( - 'prediction:post', - 'prediction:get', - 'prediction:*:get', - 'prediction:*:copy:get', - 'prediction:*:download:get', - 'prediction:*:export:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181010133216__schema-add-job-is-canceled.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181010133216__schema-add-job-is-canceled.sql deleted file mode 100644 index 20d2acbaad..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181010133216__schema-add-job-is-canceled.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info ADD COLUMN is_canceled BOOLEAN NOT NULL DEFAULT FALSE; - -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info ADD COLUMN is_canceled BOOLEAN NOT NULL DEFAULT FALSE; - -ALTER TABLE ${ohdsiSchema}.feas_study_generation_info ADD COLUMN is_canceled BOOLEAN NOT NULL DEFAULT FALSE; - -ALTER TABLE ${ohdsiSchema}.ir_execution ADD COLUMN is_canceled BOOLEAN NOT NULL DEFAULT FALSE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181010185036__schema-user-import-scheduler.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181010185036__schema-user-import-scheduler.sql deleted file mode 100644 index 75150d2109..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181010185036__schema-user-import-scheduler.sql +++ /dev/null @@ -1,44 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.user_import_job_seq; - -CREATE TABLE ${ohdsiSchema}.user_import_job( - id BIGINT NOT NULL DEFAULT nextval('${ohdsiSchema}.user_import_job_seq'), - is_enabled BOOLEAN NOT NULL DEFAULT FALSE, - start_date TIMESTAMP WITH TIME ZONE, - frequency VARCHAR NOT NULL, - recurring_times INTEGER NOT NULL, - recurring_until_date TIMESTAMP WITH TIME ZONE, - cron VARCHAR NOT NULL, - last_executed_at TIMESTAMP WITH TIME ZONE, - executed_times INTEGER DEFAULT 0 NOT NULL, - is_closed BOOLEAN DEFAULT FALSE NOT NULL, - provider_type VARCHAR NOT NULL, - preserve_roles BOOLEAN NOT NULL DEFAULT TRUE, - CONSTRAINT pk_user_import_job PRIMARY KEY(id) -); - -CREATE TABLE ${ohdsiSchema}.user_import_job_weekdays( - user_import_job_id BIGINT NOT NULL, - day_of_week VARCHAR NOT NULL, - CONSTRAINT pk_user_import_job_weekdays PRIMARY KEY(user_import_job_id, day_of_week) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'user:import:job:get', 'List user import jobs'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'user:import:job:post', 'Create new user import job'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'user:import:job:*:put', 'Update user import job'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'user:import:job:*:get', 'Get user import job'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'user:import:job:*:delete', 'Delete user import job'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'user:import:job:*:history:get', 'Get user import history'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'user:import:job:get', - 'user:import:job:post', - 'user:import:job:*:put', - 'user:import:job:*:get', - 'user:import:job:*:delete', - 'user:import:job:*:history:get') - AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql deleted file mode 100644 index 5a8bd7de78..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql +++ /dev/null @@ -1,23 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - provider_param.STRING_VAL as provider_type, - author_param.STRING_VAL as author - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS provider_param - ON job.JOB_EXECUTION_ID = provider_param.JOB_EXECUTION_ID AND provider_param.KEY_NAME = 'provider' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport'; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181015182101__role-group-mapping.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181015182101__role-group-mapping.sql deleted file mode 100644 index 839aa5b846..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181015182101__role-group-mapping.sql +++ /dev/null @@ -1,10 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_role_group ADD job_id BIGINT; - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ADD CONSTRAINT fk_role_group_job FOREIGN KEY(job_id) - REFERENCES ${ohdsiSchema}.user_import_job(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.sec_role_group DROP CONSTRAINT sec_role_group_provider_group_dn_role_id_key; - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ADD CONSTRAINT UC_PROVIDER_GROUP_ROLE UNIQUE(provider, group_dn, role_id, job_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql deleted file mode 100644 index 6e595e3fc7..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql +++ /dev/null @@ -1,18 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD last_viewed_notifications_time TIMESTAMP WITH TIME ZONE; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'notifications:viewed:post', 'Remember last viewed notification timestamp'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'notifications:viewed:get', 'Get last viewed notification timestamp'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'notifications:get', 'Get notifications'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'notifications:viewed:post', - 'notifications:viewed:get', - 'notifications:get' - ) - AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181024150353__separate_system_personal_roles.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181024150353__separate_system_personal_roles.sql deleted file mode 100644 index b9d4ee8d9f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181024150353__separate_system_personal_roles.sql +++ /dev/null @@ -1,8 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_role ADD system_role BOOLEAN DEFAULT(FALSE) NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_role DROP CONSTRAINT sec_role_name_uq; - -UPDATE ${ohdsiSchema}.sec_role SET system_role = TRUE - WHERE NOT EXISTS(SELECT * FROM ${ohdsiSchema}.sec_user WHERE "login" = sec_role.name); - -ALTER TABLE ${ohdsiSchema}.sec_role ADD CONSTRAINT sec_role_name_uq UNIQUE (name, system_role); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181107165252__fe_criteria_type.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181107165252__fe_criteria_type.sql deleted file mode 100644 index ec23411047..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181107165252__fe_criteria_type.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD criteria_type VARCHAR; - -UPDATE fe_analysis_criteria - SET criteria_type = CASE WHEN fa.stat_type = 'PREVALENCE' THEN 'CRITERIA_GROUP' - WHEN fa.stat_type = 'DISTRIBUTION' THEN 'WINDOWED_CRITERIA' END -FROM ${ohdsiSchema}.fe_analysis fa -WHERE fa.id = fe_analysis_criteria.fe_analysis_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.6.0.20181128150100__add_missing_pk.sql b/src/main/resources/db/migration/postgresql/V2.6.0.20181128150100__add_missing_pk.sql deleted file mode 100644 index b88d9f8ae0..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.6.0.20181128150100__add_missing_pk.sql +++ /dev/null @@ -1,45 +0,0 @@ -SELECT DISTINCT cohort_characterization_id, cohort_id -INTO ${ohdsiSchema}.cc_cohort_tmp -FROM ${ohdsiSchema}.cc_cohort; - -DELETE FROM ${ohdsiSchema}.cc_cohort; - -INSERT INTO ${ohdsiSchema}.cc_cohort (cohort_characterization_id, cohort_id) -SELECT cohort_characterization_id, cohort_id -FROM ${ohdsiSchema}.cc_cohort_tmp; - -TRUNCATE TABLE ${ohdsiSchema}.cc_cohort_tmp; -DROP TABLE ${ohdsiSchema}.cc_cohort_tmp; - - -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD PRIMARY KEY (id); -ALTER TABLE ${ohdsiSchema}.analysis_generation_info ADD PRIMARY KEY (job_execution_id); -ALTER TABLE ${ohdsiSchema}.cc_analysis ADD PRIMARY KEY (cohort_characterization_id, fe_analysis_id); -ALTER TABLE ${ohdsiSchema}.cc_cohort ADD PRIMARY KEY (cohort_characterization_id, cohort_id); -ALTER TABLE ${ohdsiSchema}.cca_execution_ext ADD PRIMARY KEY (cca_execution_id); -ALTER TABLE ${ohdsiSchema}.cohort ADD PRIMARY KEY (cohort_definition_id, subject_id); -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ADD PRIMARY KEY (source_id, cohort_id, analysis_id); -ALTER TABLE ${ohdsiSchema}.cohort_concept_map ADD PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_inclusion ADD PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_inclusion_result ADD PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_inclusion_stats ADD PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.cohort_summary_stats ADD PRIMARY KEY (cohort_definition_id); -ALTER TABLE ${ohdsiSchema}.feas_study_inclusion_stats ADD PRIMARY KEY (study_id); -ALTER TABLE ${ohdsiSchema}.feas_study_index_stats ADD PRIMARY KEY (study_id); -ALTER TABLE ${ohdsiSchema}.feas_study_result ADD PRIMARY KEY (study_id); -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion ADD PRIMARY KEY (study_id, sequence); -ALTER TABLE ${ohdsiSchema}.heracles_analysis ADD PRIMARY KEY (analysis_id); -ALTER TABLE ${ohdsiSchema}.penelope_laertes_universe ADD PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.cohort_features ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.cohort_features_analysis_ref ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.cohort_features_dist ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.cohort_features_ref ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.heracles_heel_results ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.heracles_results ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.heracles_results_dist ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_analysis_dist ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_analysis_result ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_analysis_strata_stats ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_strata ADD COLUMN id SERIAL PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot ADD COLUMN id SERIAL PRIMARY KEY; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20181119162154__cc_strata.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20181119162154__cc_strata.sql deleted file mode 100644 index 601655b861..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20181119162154__cc_strata.sql +++ /dev/null @@ -1,29 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cc_strata_seq; - -CREATE TABLE ${ohdsiSchema}.cc_strata( - id BIGINT NOT NULL DEFAULT nextval('${ohdsiSchema}.cc_strata_seq'), - cohort_characterization_id BIGINT NOT NULL, - name VARCHAR NOT NULL, - expression VARCHAR, - CONSTRAINT pk_cc_strata_id PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.cc_strata - ADD CONSTRAINT fk_cc_strata_cc FOREIGN KEY (cohort_characterization_id) - REFERENCES ${ohdsiSchema}.cohort_characterization(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -CREATE SEQUENCE ${ohdsiSchema}.cc_strata_conceptset_seq; - -CREATE TABLE ${ohdsiSchema}.cc_strata_conceptset( - id BIGINT NOT NULL DEFAULT nextval('${ohdsiSchema}.cc_strata_conceptset_seq'), - cohort_characterization_id BIGINT NOT NULL, - expression VARCHAR, - CONSTRAINT pk_cc_strata_conceptset_id PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.cc_strata_conceptset - ADD CONSTRAINT fk_cc_strata_conceptset_cc FOREIGN KEY (cohort_characterization_id) - REFERENCES ${ohdsiSchema}.cohort_characterization(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD stratified_by VARCHAR; -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD strata_only BOOLEAN DEFAULT FALSE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190116183005__default_stat_type.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190116183005__default_stat_type.sql deleted file mode 100644 index 935769589d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190116183005__default_stat_type.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis - ALTER COLUMN stat_type SET DEFAULT 'PREVALENCE'; - -UPDATE ${ohdsiSchema}.fe_analysis -SET stat_type = 'PREVALENCE' -WHERE stat_type ISNULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190125113000__fe-analysis-created-modified.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190125113000__fe-analysis-created-modified.sql deleted file mode 100644 index 8ae522e13c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190125113000__fe-analysis-created-modified.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN created_date TIMESTAMP, - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_date TIMESTAMP; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql deleted file mode 100644 index 2f882dbf3f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql +++ /dev/null @@ -1,19 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis - ALTER COLUMN stat_type SET NOT NULL; - -UPDATE ${ohdsiSchema}.fe_analysis_criteria - SET criteria_type = - CASE WHEN criteria_type IS NULL THEN - CASE - WHEN fa.stat_type = 'PREVALENCE' THEN 'CRITERIA_GROUP' - WHEN fa.stat_type = 'DISTRIBUTION' THEN - CASE WHEN expression LIKE '{"Criteria":%' - THEN 'WINDOWED_CRITERIA' - ELSE 'DEMOGRAPHIC_CRITERIA' - END - END - ELSE - criteria_type - END -FROM ${ohdsiSchema}.fe_analysis fa -WHERE fa.id = fe_analysis_criteria.fe_analysis_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190128134827__create_absent_sequences.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190128134827__create_absent_sequences.sql deleted file mode 100644 index 51b6201d76..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190128134827__create_absent_sequences.sql +++ /dev/null @@ -1,13 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.analysis_execution_sequence; -SELECT setval('${ohdsiSchema}.analysis_execution_sequence', coalesce(max(id), 1)) FROM ${ohdsiSchema}.analysis_execution; -ALTER TABLE ${ohdsiSchema}.analysis_execution ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.analysis_execution_sequence'); --- Delete old sequence -DROP SEQUENCE IF EXISTS ${ohdsiSchema}.analysis_execution_id_seq; - -CREATE SEQUENCE ${ohdsiSchema}.cca_execution_sequence; -SELECT setval('${ohdsiSchema}.cca_execution_sequence', coalesce(max(cca_execution_id), 1)) FROM ${ohdsiSchema}.cca_execution; -ALTER TABLE ${ohdsiSchema}.cca_execution ALTER COLUMN cca_execution_id SET DEFAULT nextval('${ohdsiSchema}.cca_execution_sequence'); - -CREATE SEQUENCE ${ohdsiSchema}.heracles_visualization_data_sequence; -SELECT setval('${ohdsiSchema}.heracles_visualization_data_sequence', coalesce(max(id), 1)) FROM ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA; -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ALTER COLUMN id SET DEFAULT nextval('${ohdsiSchema}.heracles_visualization_data_sequence'); diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql deleted file mode 100644 index 37387e292e..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql +++ /dev/null @@ -1,10 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN created_by_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN created_date; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN modified_by_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN modified_date; - -ALTER TABLE ${ohdsiSchema}.fe_analysis - ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN created_date TIMESTAMP, - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_date TIMESTAMP; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql deleted file mode 100644 index aa78164dc1..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql +++ /dev/null @@ -1 +0,0 @@ -CREATE INDEX BJEP_JOB_STRING_IDX ON ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS (JOB_EXECUTION_ID,STRING_VAL); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql deleted file mode 100644 index 47f528fcb2..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql +++ /dev/null @@ -1,31 +0,0 @@ --- cohort-characterizations permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), REPLACE(value, ':post', ':delete'), - 'Cancel Generation of Pathway Analysis with ID = ' || REPLACE(REPLACE(value, 'cohort-characterization:', ''), ':generation:*:post', '') - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - WHERE sp.VALUE like 'cohort-characterization:%:generation:*:post' AND NOT sp.value = 'cohort-characterization:*:generation:*:post'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - select srp.role_id, spc.id as permission_id from ${ohdsiSchema}.SEC_PERMISSION sp - join ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - join ${ohdsiSchema}.SEC_PERMISSION spc ON replace(replace(sp.value, 'cohort-characterization:', ''),':generation:*:post', '') = replace(replace(spc.value, 'cohort-characterization:', ''),':generation:*:delete', '') - and spc.value like 'cohort-characterization:%:generation:*:delete' - where sp.VALUE like 'cohort-characterization:%:generation:*:post'; - --- pathways permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), REPLACE(value, ':post', ':delete'), - 'Cancel Generation of Pathway Analysis with ID = ' || REPLACE(REPLACE(value, 'pathway-analysis:', ''), ':generation:*:post', '') -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID -WHERE sp.VALUE like 'pathway-analysis:%:generation:*:post' AND NOT sp.value = 'pathway-analysis:*:generation:*:post'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - select srp.role_id, spc.id as permission_id from ${ohdsiSchema}.SEC_PERMISSION sp - join ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - join ${ohdsiSchema}.SEC_PERMISSION spc ON replace(replace(sp.value, 'pathway-analysis:', ''),':generation:*:post', '') = replace(replace(spc.value, 'pathway-analysis:', ''),':generation:*:delete', '') - and spc.value like 'pathway-analysis:%:generation:*:delete' - where sp.VALUE like 'pathway-analysis:%:generation:*:post'; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190204183006__ir-cancel-job-permission.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190204183006__ir-cancel-job-permission.sql deleted file mode 100644 index 4def8b4596..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190204183006__ir-cancel-job-permission.sql +++ /dev/null @@ -1,10 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:execute:*:delete', 'Cancel IR analysis execution'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:*:execute:*:delete' - ) - AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql deleted file mode 100644 index e7804b17d9..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql +++ /dev/null @@ -1,23 +0,0 @@ --- cc copy permissions - -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION(id, value, description) - VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:post', ''); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:post' - ) AND sr.name IN ('Atlas users'); - --- pathway copy permissions - -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION(id, value, description) -VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:post', ''); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'pathway-analysis:*:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190208164736__analysis_execution-add-job_id.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190208164736__analysis_execution-add-job_id.sql deleted file mode 100644 index cfa177a62c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190208164736__analysis_execution-add-job_id.sql +++ /dev/null @@ -1,11 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD job_execution_id BIGINT; - -alter table ${ohdsiSchema}.analysis_execution drop column analysis_id; -ALTER TABLE ${ohdsiSchema}.analysis_execution DROP COLUMN analysis_type; -alter table ${ohdsiSchema}.analysis_execution drop column duration; -alter table ${ohdsiSchema}.analysis_execution drop column executed; -alter table ${ohdsiSchema}.analysis_execution drop column sec_user_id; -alter table ${ohdsiSchema}.analysis_execution drop column source_id; -alter table ${ohdsiSchema}.analysis_execution drop column update_password; - -alter table ${ohdsiSchema}.analysis_execution rename to ee_analysis_status; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql deleted file mode 100644 index 28240a9d38..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql +++ /dev/null @@ -1,23 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, "value", "description") - VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:generation:*:post', 'Execute Prediction Generation Job'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:generation:get', 'View Prediction Generations'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:generation:*:result:get', 'View Prediction Generation Results'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in ('prediction:*:generation:*:post', 'prediction:*:generation:get', 'prediction:generation:*:result:get') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, "value", "description") - VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:generation:*:post', 'Execute Estimation Generation Job'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:generation:get', 'View Estimation Generations'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:generation:*:result:get', 'View Estimation Generation Results'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in ('estimation:*:generation:*:post', 'estimation:*:generation:get', 'estimation:generation:*:result:get') - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190211182000__permissions-fixes.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190211182000__permissions-fixes.sql deleted file mode 100644 index 3805241641..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190211182000__permissions-fixes.sql +++ /dev/null @@ -1,73 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'vocabulary:%s:*:get' val - UNION ALL - SELECT 'vocabulary:%s:included-concepts:count:post' - UNION ALL - SELECT 'vocabulary:%s:resolveConceptSetExpression:post' - UNION ALL - SELECT 'vocabulary:%s:lookup:identifiers:post' - UNION ALL - SELECT 'vocabulary:%s:lookup:identifiers:ancestors:post' - UNION ALL - SELECT 'vocabulary:%s:lookup:mapped:post' - UNION ALL - SELECT 'vocabulary:%s:compare:post' - UNION ALL - SELECT 'vocabulary:%s:optimize:post' - UNION ALL - SELECT 'cdmresults:%s:*:get' - UNION ALL - SELECT 'cdmresults:%s:*:*:get' - UNION ALL - SELECT 'cdmresults:%s:conceptRecordCount:post' - UNION ALL - SELECT 'cohortresults:%s:*:*:get' - UNION ALL - SELECT 'cohortresults:%s:*:*:*:get' -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:expression:get', 'Resolve concept set expression'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:generationinfo:get', 'Get generation info for concept set'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:check:get', 'Get cohort definition design checks'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'sqlrender:translate:post' , 'Translate SQL'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:info' , 'Get IR info'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'job:type:*:name:*:get' , 'Get IR info'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:expression:get', - 'conceptset:*:generationinfo:get', - 'cohortdefinition:*:check:get', - 'sqlrender:translate:post', - 'ir:*:info', - 'job:type:*:name:*:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190212154939__analysis_execution_files.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190212154939__analysis_execution_files.sql deleted file mode 100644 index a9eb177664..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190212154939__analysis_execution_files.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.output_files ADD media_type VARCHAR(255); - -ALTER TABLE ${ohdsiSchema}.output_files DROP CONSTRAINT fk_sif_cca_execution; -ALTER TABLE ${ohdsiSchema}.output_files DROP COLUMN cca_execution_id; - -ALTER TABLE ${ohdsiSchema}.input_files DROP CONSTRAINT fk_sof_cca_execution; -ALTER TABLE ${ohdsiSchema}.input_files DROP COLUMN cca_execution_id; - ---ALTER TABLE ${ohdsiSchema}.output_files ADD execution_id INT; ---ALTER TABLE ${ohdsiSchema}.input_files ADD execution_id INT; - -CREATE SEQUENCE ${ohdsiSchema}.output_file_seq; -CREATE SEQUENCE ${ohdsiSchema}.input_file_seq; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.201902130900__source-sequences.sql b/src/main/resources/db/migration/postgresql/V2.7.0.201902130900__source-sequences.sql deleted file mode 100644 index c71002d254..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.201902130900__source-sequences.sql +++ /dev/null @@ -1,11 +0,0 @@ --- Source sequence -CREATE SEQUENCE ${ohdsiSchema}.source_sequence START WITH 1 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -SELECT setval('${ohdsiSchema}.source_sequence', coalesce(max(source_id), 1)) FROM ${ohdsiSchema}.source; - -ALTER TABLE ${ohdsiSchema}.source ALTER COLUMN source_id SET DEFAULT nextval('${ohdsiSchema}.source_sequence'); - --- Source_daimon sequence -CREATE SEQUENCE ${ohdsiSchema}.source_daimon_sequence START WITH 1 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -SELECT setval('${ohdsiSchema}.source_daimon_sequence', coalesce(max(source_daimon_id), 1)) FROM ${ohdsiSchema}.source_daimon; - -ALTER TABLE ${ohdsiSchema}.source_daimon ALTER COLUMN source_daimon_id SET DEFAULT nextval('${ohdsiSchema}.source_daimon_sequence'); diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190213161124__add-fk-to-source-daimon.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190213161124__add-fk-to-source-daimon.sql deleted file mode 100644 index c4e75c2a6a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190213161124__add-fk-to-source-daimon.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source_daimon - ADD CONSTRAINT FK_source_daimon_source_id FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source (source_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190214110000__permissions-fixes-2.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190214110000__permissions-fixes-2.sql deleted file mode 100644 index 95a721bc21..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190214110000__permissions-fixes-2.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:design:get', 'Get cohort characterization design'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:design:get', 'Get cohort characterization design list'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:design:get', - 'cohort-characterization:design:get' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190214145000__permissions-fixes-3.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190214145000__permissions-fixes-3.sql deleted file mode 100644 index 5450d954fb..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190214145000__permissions-fixes-3.sql +++ /dev/null @@ -1,41 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp - CROSS JOIN ( - SELECT 'vocabulary:%s:concept:*:get' val - UNION ALL - SELECT 'vocabulary:%s:concept:*:related:get' - UNION ALL - SELECT 'cohortdefinition:*:cancel:%s:get' - UNION ALL - SELECT 'featureextraction:query:prevalence:*:%s:get' - UNION ALL - SELECT 'featureextraction:query:distributions:*:%s:get' - UNION ALL - SELECT 'featureextraction:explore:prevalence:*:%s:*:get' - UNION ALL - SELECT 'featureextraction:generate:%s:*:get' - UNION ALL - SELECT 'featureextraction:generatesql:%s:*:get' - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190215113000__permissions-fixes-4.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190215113000__permissions-fixes-4.sql deleted file mode 100644 index 8dac4b7f2f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190215113000__permissions-fixes-4.sql +++ /dev/null @@ -1,38 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'vocabulary:%s:search:post' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:check:post', 'Fix cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:check:post' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql deleted file mode 100644 index 4dbb182a67..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql +++ /dev/null @@ -1,48 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission -WHERE permission_id IN (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value NOT IN ('user:me:get')) -AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'public'); - -DELETE FROM ${ohdsiSchema}.sec_role_permission -WHERE permission_id IN (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value IN ('ir:*:execute:*:get', 'ir:*:execute:*:delete', '*:person:*:get')) -AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'ir:*:execute:%s:get' val - UNION ALL - SELECT 'ir:*:execute:%s:delete' - UNION ALL - SELECT '%s:person:*:get' -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; - --- Allow Atlas users to see list of sources -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'configuration:edit:ui' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql deleted file mode 100644 index 78654307e7..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql +++ /dev/null @@ -1,27 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'vocabulary:%s:lookup:sourcecodes:post' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190222154724__permission-fixes-conceptsets.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190222154724__permission-fixes-conceptsets.sql deleted file mode 100644 index ba6a66e8aa..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190222154724__permission-fixes-conceptsets.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:export:get', 'Export ConceptSet'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:export:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190225165203__plp_gen_view.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190225165203__plp_gen_view.sql deleted file mode 100644 index 257c6df37d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190225165203__plp_gen_view.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(plp_id_param.string_val AS INTEGER) prediction_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190225165752__estimation_gen_view.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190225165752__estimation_gen_view.sql deleted file mode 100644 index c297443f80..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190225165752__estimation_gen_view.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql deleted file mode 100644 index b802bf007e..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:export:conceptset:get', 'Export ConceptSet'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:export:conceptset:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql deleted file mode 100644 index 849fbae772..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:explore:prevalence:*:*:*:get', 'Explore covariate in Cohort Characterization'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:generation:*:explore:prevalence:*:*:*:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190301130000__cc-unique-stratas.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190301130000__cc-unique-stratas.sql deleted file mode 100644 index 19e0b8dbaa..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190301130000__cc-unique-stratas.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cc_strata ADD CONSTRAINT cc_strata_name_uq UNIQUE (cohort_characterization_id, name); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304084500__plp-ple-import.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304084500__plp-ple-import.sql deleted file mode 100644 index 1fa5bb7f5a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304084500__plp-ple-import.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:import:post', 'Import PLP analyses'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:import:post', 'Import PLE analyses'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'prediction:import:post', - 'estimation:import:post' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304131519__standardize-permissions-cc.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304131519__standardize-permissions-cc.sql deleted file mode 100644 index 1d7b6ff3e2..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304131519__standardize-permissions-cc.sql +++ /dev/null @@ -1,37 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where - value like 'cohort-characterization:%:generation:*:post' or - value like 'cohort-characterization:%:generation:*:delete' - ); -delete from ${ohdsiSchema}.sec_permission where - value like 'cohort-characterization:%:generation:*:post' or - value like 'cohort-characterization:%:generation:*:delete'; - -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'cohort-characterization:*:generation:%s:post' val UNION ALL - SELECT 'cohort-characterization:*:generation:%s:delete' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304160255__standardize-permissions-pathways.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304160255__standardize-permissions-pathways.sql deleted file mode 100644 index fee3a7001b..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304160255__standardize-permissions-pathways.sql +++ /dev/null @@ -1,37 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where - value like 'pathway-analysis:%:generation:*:post' or - value like 'pathway-analysis:%:generation:*:delete' - ); -delete from ${ohdsiSchema}.sec_permission where - value like 'pathway-analysis:%:generation:*:post' or - value like 'pathway-analysis:%:generation:*:delete'; - -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'pathway-analysis:*:generation:%s:post' val UNION ALL - SELECT 'pathway-analysis:*:generation:%s:delete' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304162609__standardize-permissions-ir.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304162609__standardize-permissions-ir.sql deleted file mode 100644 index 9a41775548..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304162609__standardize-permissions-ir.sql +++ /dev/null @@ -1,54 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('ir:*:delete')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('ir:*:info')); - -delete from ${ohdsiSchema}.sec_permission where - value in ('ir:*:info'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) - values - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:info:get', 'Get IR info'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:*:info:get' - ) - AND sr.name IN ('Atlas users'); - - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value like 'ir:%:report:*:get'); -delete from ${ohdsiSchema}.sec_permission where value like 'ir:%:report:*:get'; - -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'ir:*:report:%s:get' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304213000__standardize-permissions-cohorts.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304213000__standardize-permissions-cohorts.sql deleted file mode 100644 index e8f6361f99..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304213000__standardize-permissions-cohorts.sql +++ /dev/null @@ -1,10 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('cohortdefinition:*:put', 'cohortdefinition:*:delete')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('cohortdefinition:delete')); - --- Dummy permission: there is no such endpoint -delete from ${ohdsiSchema}.sec_permission where - value in ('cohortdefinition:delete'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql deleted file mode 100644 index b3103c7982..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql +++ /dev/null @@ -1,3 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('conceptset:*:delete', 'conceptset:*:put', 'conceptset:*:items:put')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190304220500__role-moderator.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190304220500__role-moderator.sql deleted file mode 100644 index 705eec371d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190304220500__role-moderator.sql +++ /dev/null @@ -1,36 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role(id, name, system_role) VALUES - (nextval('${ohdsiSchema}.sec_role_sequence'), 'Moderator', TRUE); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:put', 'Edit any Cohort Characterization'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:delete', 'Delete any Cohort Characterization'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:put', 'Edit any Pathways analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:delete', 'Delete any Pathways analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:put', 'Edit any IR analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:info:*:delete', 'Delete any IR analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:put', 'Edit any Estimation analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:delete', 'Delete any Estimation analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:put', 'Edit any Prediction analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:delete', 'Delete any Prediction analysis'); - --- 16 perms -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - -- All Concept Sets edit and delete - 'conceptset:*:delete', 'conceptset:*:put', 'conceptset:*:items:put', - -- All Cohort Definitions edit and delete - 'cohortdefinition:*:put', 'cohortdefinition:*:delete', - -- All CC edit and delete - 'cohort-characterization:*:put', 'cohort-characterization:*:delete', - -- All Pathways edit and delete - 'pathway-analysis:*:put', 'pathway-analysis:*:delete', - -- All IRs edit and delete - 'ir:*:put', 'ir:*:delete', 'ir:*:info:*:delete', - -- All Estimation analyses edit and delete - 'estimation:*:put', 'estimation:*:delete', - -- All Prediction analyses edit and delete - 'prediction:*:put', 'prediction:*:delete' -) AND sr.name IN ('Moderator'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190305123620__ir-executioninfo-permissions.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190305123620__ir-executioninfo-permissions.sql deleted file mode 100644 index 8c8c411d29..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190305123620__ir-executioninfo-permissions.sql +++ /dev/null @@ -1,27 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'ir:*:info:%s:get' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190306094500__sources-endpoint-permission.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190306094500__sources-endpoint-permission.sql deleted file mode 100644 index fdce39a2c7..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190306094500__sources-endpoint-permission.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, permission_id, role_id) -SELECT - nextval('${ohdsiSchema}.sec_role_permission_sequence'), - (select id from ${ohdsiSchema}.sec_permission where value in ('source:*:get')) permission_id, - (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'public') role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190306154500__rename_heracles_seq.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190306154500__rename_heracles_seq.sql deleted file mode 100644 index 0d55024ca6..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190306154500__rename_heracles_seq.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER SEQUENCE ${ohdsiSchema}.heracles_visualization_data_sequence RENAME TO heracles_vis_data_sequence; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql deleted file mode 100644 index 715f29b0fb..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:sql:post', 'Generate SQL from Incidence Rates expression'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'ir:sql:post' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190311182048__fix_vocab_search_permissions.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190311182048__fix_vocab_search_permissions.sql deleted file mode 100644 index 393d194d45..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190311182048__fix_vocab_search_permissions.sql +++ /dev/null @@ -1,33 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission - where permission_id in (select id from ${ohdsiSchema}.sec_permission where value = 'vocabulary:*:search:*:get'); - -delete from ${ohdsiSchema}.sec_permission - where value = 'vocabulary:*:search:*:get'; - -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'vocabulary:%s:search:*:get' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190312164953__fix_permission_id_seq_value.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190312164953__fix_permission_id_seq_value.sql deleted file mode 100644 index af9a9722df..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190312164953__fix_permission_id_seq_value.sql +++ /dev/null @@ -1,2 +0,0 @@ --- Updates sec_permission_id_seq to maximum identity + 1 -select setval('${ohdsiSchema}.sec_permission_id_seq', (select max(id) + 1 from ${ohdsiSchema}.sec_permission)); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190313161353__fix_permission_heracles.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190313161353__fix_permission_heracles.sql deleted file mode 100644 index e25f743021..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190313161353__fix_permission_heracles.sql +++ /dev/null @@ -1,19 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD role_id_tmp INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description, role_id_tmp) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), REPLACE(new_perms.descr, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'cohortresults:%s:*:healthcareutilization:*:*:get' val, 'Get cohort results baseline on period for Source with SourceKey = %s' descr - UNION ALL - SELECT 'cohortresults:%s:*:healthcareutilization:*:*:*:get', 'Get cohort results baseline on occurrence for Source with SourceKey = %s' - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sp.role_id_tmp, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.role_id_tmp IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN role_id_tmp; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql deleted file mode 100644 index 497968ef0f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql +++ /dev/null @@ -1,12 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.ir_execution RENAME status TO int_status; - -ALTER TABLE ${ohdsiSchema}.ir_execution ADD status VARCHAR(128); - -UPDATE ${ohdsiSchema}.ir_execution SET status = CASE int_status - WHEN -1 THEN 'ERROR' - WHEN 0 THEN 'PENDING' - WHEN 1 THEN 'RUNNING' - WHEN 2 THEN 'COMPLETE' - END; - -ALTER TABLE ${ohdsiSchema}.ir_execution DROP COLUMN int_status; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql b/src/main/resources/db/migration/postgresql/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql deleted file mode 100644 index 1e0d46608a..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql +++ /dev/null @@ -1,21 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD role_id_tmp INTEGER; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description, role_id_tmp) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), REPLACE(CAST(new_perms.val AS VARCHAR), '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', '')), - REPLACE(CAST(new_perms.descr AS VARCHAR), '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', '')) description, srp.role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:report:%s:get' val, 'Get IR generation report with SourceKey = %s' descr - ) new_perms - WHERE sp.value LIKE 'source:%:access' - AND NOT EXISTS(SELECT tsp.id FROM ${ohdsiSchema}.sec_permission tsp JOIN ${ohdsiSchema}.sec_role_permission tsrp ON tsrp.permission_id = tsp.id - AND tsp.value = REPLACE(CAST(new_perms.val AS VARCHAR), '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', ''))); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sp.role_id_tmp, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.role_id_tmp IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission - DROP COLUMN role_id_tmp; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.1.20190405124500__split_output_files.sql b/src/main/resources/db/migration/postgresql/V2.7.1.20190405124500__split_output_files.sql deleted file mode 100644 index 27cf784a33..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.1.20190405124500__split_output_files.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.output_file_contents ( - output_file_id INTEGER, - file_contents BYTEA, - CONSTRAINT output_file_contents_pkey PRIMARY KEY (output_file_id) -); - -ALTER TABLE ${ohdsiSchema}.output_file_contents - ADD CONSTRAINT fk_ofc_of_id FOREIGN KEY (output_file_id) - REFERENCES ${ohdsiSchema}.output_files (id) - ON UPDATE NO ACTION ON DELETE CASCADE; - -INSERT INTO ${ohdsiSchema}.output_file_contents (output_file_id, file_contents) -SELECT id, file_contents -FROM ${ohdsiSchema}.output_files; - -ALTER TABLE ${ohdsiSchema}.output_files DROP COLUMN file_contents; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.2.20190429174506__run-as_permission.sql b/src/main/resources/db/migration/postgresql/V2.7.2.20190429174506__run-as_permission.sql deleted file mode 100644 index 01cb75b2dc..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.2.20190429174506__run-as_permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), 'user:runas:post', 'Sign in as another user'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value = 'user:runas:post') sp - CROSS JOIN (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'admin' AND system_role = TRUE) sr; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.2.20190528153600__fix-ir-report-perms.sql b/src/main/resources/db/migration/postgresql/V2.7.2.20190528153600__fix-ir-report-perms.sql deleted file mode 100644 index a12ed17289..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.2.20190528153600__fix-ir-report-perms.sql +++ /dev/null @@ -1,27 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -CROSS JOIN ( - SELECT 'ir:%s:info:*:delete' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -drop table temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.7.4.20190905163100__cache-clear-permission.sql b/src/main/resources/db/migration/postgresql/V2.7.4.20190905163100__cache-clear-permission.sql deleted file mode 100644 index fcdef39a9d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.4.20190905163100__cache-clear-permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cache:clear:get', 'Clear middle-tier caches'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value = 'cache:clear:get') sp - CROSS JOIN (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'admin' AND system_role = TRUE) sr; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.7.8.20200728164800__add_conceptset_permission.sql b/src/main/resources/db/migration/postgresql/V2.7.8.20200728164800__add_conceptset_permission.sql deleted file mode 100644 index 801a41a85d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.7.8.20200728164800__add_conceptset_permission.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:expression:*:get', 'Resolve concept set expression with data source'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:expression:*:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190319114500__delete_design_column_from_views.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190319114500__delete_design_column_from_views.sql deleted file mode 100644 index 771040ff0e..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190319114500__delete_design_column_from_views.sql +++ /dev/null @@ -1,91 +0,0 @@ -DROP VIEW ${ohdsiSchema}.cc_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as ( -SELECT - -- Spring batch based - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(cc_id_param.string_val AS INTEGER) cc_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -ORDER BY start_time DESC -); - -DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; - -DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -ORDER BY start_time DESC); - -DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; -CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(plp_id_param.string_val AS INTEGER) prediction_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190326152000__fix-role-perms.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190326152000__fix-role-perms.sql deleted file mode 100644 index b6ed772467..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190326152000__fix-role-perms.sql +++ /dev/null @@ -1,3 +0,0 @@ -UPDATE ${ohdsiSchema}.sec_permission -SET value = REPLACE(value, ':post', ':put') -WHERE value LIKE 'role:%:post'; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190326180601__add-cc-download-permission.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190326180601__add-cc-download-permission.sql deleted file mode 100644 index 3dcaa6f0b3..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190326180601__add-cc-download-permission.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:download:get', 'Download Cohort Characterization package'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:download:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190405140828__cc_generation_export_all.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190405140828__cc_generation_export_all.sql deleted file mode 100644 index c57baec7f2..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190405140828__cc_generation_export_all.sql +++ /dev/null @@ -1,17 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:result:export:post', 'Export all cohort characterization generation results'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:result:count:get', 'Get total count of results for this generation'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp."value" IN ( - 'cohort-characterization:generation:*:result:export:post', - 'cohort-characterization:generation:*:result:count:get' -) -AND sr.name IN ('Atlas users'); - -UPDATE ${ohdsiSchema}.sec_permission -SET value = 'cohort-characterization:generation:*:result:post' -WHERE VALUE = 'cohort-characterization:generation:*:result:get' \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190414180601__add-entity-exists-permission.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190414180601__add-entity-exists-permission.sql deleted file mode 100644 index 12609b735d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190414180601__add-entity-exists-permission.sql +++ /dev/null @@ -1,39 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:exists:get', 'Check name uniqueness of concept set'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:exists:get', 'Check name uniqueness of cohort definition'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:exists:get', 'Check name uniqueness of pathway analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:exists:get', 'Check name uniqueness of cohort characterization'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'feature-analysis:*:exists:get', 'Check name uniqueness of feature analysis'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:exists:get', 'Check name uniqueness of incidence rate'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:*:exists:get', 'Check name uniqueness of prediction'), - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:*:exists:get', 'Check name uniqueness of estimation'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:exists:get' -AND sr.name IN ('concept set creator', 'Moderator'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'cohortdefinition:*:exists:get' -AND sr.name IN ('cohort creator', 'Moderator'); - - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'pathway-analysis:*:exists:get', - 'cohort-characterization:*:exists:get', - 'feature-analysis:*:exists:get', - 'ir:*:exists:get', - 'prediction:*:exists:get', - 'estimation:*:exists:get' -) -AND sr.name IN ('Atlas users', 'Moderator'); diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql deleted file mode 100644 index 335540998c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.pathway_analysis ADD COLUMN min_segment_length INTEGER; diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql deleted file mode 100644 index 55deab6035..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:exists:get' -AND sr.name = 'Atlas users'; - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'cohortdefinition:*:exists:get' -AND sr.name = 'Atlas users'; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql deleted file mode 100644 index 01ed236296..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql +++ /dev/null @@ -1,82 +0,0 @@ -CREATE OR REPLACE FUNCTION ${ohdsiSchema}.rename_duplicate_names(name_title VARCHAR(20), id_title VARCHAR(15), - table_title VARCHAR(30), constraint_title VARCHAR(2)) RETURNS VOID - LANGUAGE 'plpgsql' -AS -$$ -DECLARE - duplicate_names VARCHAR(400)[]; - name_repeats INT[]; - amount_of_duplicate_names INT; - amount_of_constraints INT; - constraint_name VARCHAR(100); - all_duplicates INT; - -BEGIN - EXECUTE format('SELECT COUNT(*) - FROM (SELECT %I - FROM %I.%I - GROUP BY %I - HAVING COUNT(*) > 1) as temp;', name_title, '${ohdsiSchema}', table_title, - name_title) INTO all_duplicates; - FOR k IN 0 .. coalesce(all_duplicates, 0) - LOOP - EXECUTE format('SELECT ARRAY(SELECT %I - FROM %I.%I - GROUP BY %I - HAVING COUNT(*) > 1)', name_title, '${ohdsiSchema}', table_title, - name_title) INTO duplicate_names; - - EXECUTE format('SELECT ARRAY(SELECT COUNT(*) - FROM %I.%I - GROUP BY %I - HAVING COUNT(*) > 1);', '${ohdsiSchema}', table_title, - name_title) INTO name_repeats; - - - amount_of_duplicate_names := (SELECT array_length(duplicate_names, 1)); - - FOR i IN 1 .. coalesce(amount_of_duplicate_names, 0) - LOOP - FOR j IN 1 .. coalesce(name_repeats[i], 0) - LOOP - EXECUTE format('UPDATE %I.%I - SET %I = concat(%I, '' ('', $1, '')'') - WHERE %I = (SELECT %I - FROM %I.%I - WHERE %I = $2 - ORDER BY %I - LIMIT 1);', '${ohdsiSchema}', table_title, name_title, name_title, id_title, - id_title, - '${ohdsiSchema}', table_title, - name_title, id_title) USING j, duplicate_names[i]; - END LOOP; - END LOOP; - END LOOP; - - constraint_name := concat('uq_', constraint_title, '_name'); - - EXECUTE format('SELECT COUNT(*) - FROM information_schema.table_constraints - WHERE constraint_schema = ''%I'' - AND constraint_name = ''%I'' - AND table_name = ''%I''', '${ohdsiSchema}', constraint_name, - table_title) INTO amount_of_constraints; - - IF amount_of_constraints = 0 THEN - EXECUTE format('ALTER TABLE %I.%I - ADD CONSTRAINT %I UNIQUE (%I);', '${ohdsiSchema}', table_title, constraint_name, - name_title); - END IF; -END; -$$; - -SELECT ${ohdsiSchema}.rename_duplicate_names('concept_set_name', 'concept_set_id', 'concept_set', 'cs'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'id', 'cohort_definition', 'cd'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'id', 'cohort_characterization', 'cc'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'id', 'fe_analysis', 'fe'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'id', 'pathway_analysis', 'pw'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'id', 'ir_analysis', 'ir'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'estimation_id', 'estimation', 'es'); -SELECT ${ohdsiSchema}.rename_duplicate_names('name', 'prediction_id', 'prediction', 'pd'); - -DROP FUNCTION ${ohdsiSchema}.rename_duplicate_names(name_title VARCHAR(20), id_title VARCHAR(15), table_title VARCHAR(30), constraint_title VARCHAR(2)); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190527190601__add_cs_name_copy_permission.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190527190601__add_cs_name_copy_permission.sql deleted file mode 100644 index 00017d6659..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190527190601__add_cs_name_copy_permission.sql +++ /dev/null @@ -1,10 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (nextval('sec_permission_id_seq'), 'conceptset:*:copy-name:get', 'Get name for copying concept set'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:copy-name:get' -AND sr.name IN ('concept set creator', 'Moderator', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql deleted file mode 100644 index 5f44087c2c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql +++ /dev/null @@ -1,119 +0,0 @@ -DROP VIEW ${ohdsiSchema}.cc_generation; -DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; -DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; -DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; -DROP VIEW ${ohdsiSchema}.user_import_job_history; - -ALTER TABLE ${ohdsiSchema}.user_import_job ADD user_roles VARCHAR; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.cc_generation as ( - SELECT - -- Spring batch based - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(cc_id_param.string_val AS INTEGER) cc_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ORDER BY start_time DESC -); - -CREATE OR REPLACE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.pathway_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ORDER BY start_time DESC); - -CREATE OR REPLACE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(plp_id_param.string_val AS INTEGER) prediction_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; - -CREATE OR REPLACE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - author_param.STRING_VAL as author, - CAST(user_import_param.string_val AS INTEGER) user_import_id - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.batch_job_execution_params user_import_param - ON job.job_execution_id = user_import_param.job_execution_id AND user_import_param.key_name = 'user_import_id' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport'; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190604111801__ir_import_export_permission.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190604111801__ir_import_export_permission.sql deleted file mode 100644 index ac4677e4cc..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190604111801__ir_import_export_permission.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:design:post', 'Import Incidence Rates design'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:design:get', 'Export Incidence Rates design'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:design:post', - 'ir:*:design:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190728224300__ds-common-entity.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190728224300__ds-common-entity.sql deleted file mode 100644 index 2efad0f748..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190728224300__ds-common-entity.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source - ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN created_date DATE, - ADD COLUMN modified_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id), - ADD COLUMN modified_date DATE; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190809215200__daimon-priority.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190809215200__daimon-priority.sql deleted file mode 100644 index 8f5033ea40..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190809215200__daimon-priority.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:daimon:priority:get', 'Get priority of Source Daimons'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'source:daimon:priority:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20190816173000__generation-cache.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20190816173000__generation-cache.sql deleted file mode 100644 index 127fa657cc..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20190816173000__generation-cache.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.generation_cache_sequence; - -CREATE TABLE ${ohdsiSchema}.generation_cache ( - id INTEGER DEFAULT NEXTVAL('generation_cache_sequence'), - type VARCHAR NOT NULL, - design_hash VARCHAR NOT NULL, - source_id INTEGER NOT NULL, - result_identifier INTEGER NOT NULL, - result_checksum VARCHAR, -- can be null in case of empty result set - created_date DATE NOT NULL DEFAULT NOW(), - CONSTRAINT PK_generation_cache PRIMARY KEY (id), - CONSTRAINT FK_gc_source_id_source - FOREIGN KEY (source_id) - REFERENCES ${ohdsiSchema}.source (source_id) -); - -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_result UNIQUE (type, source_id, result_identifier); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20191203200000__generation-cache-updates.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20191203200000__generation-cache-updates.sql deleted file mode 100644 index 5a0e7202b2..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20191203200000__generation-cache-updates.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.generation_cache DROP CONSTRAINT uq_gc_result; -ALTER TABLE ${ohdsiSchema}.generation_cache DROP COLUMN result_identifier; -ALTER TABLE ${ohdsiSchema}.generation_cache DROP CONSTRAINT uq_gc_hash; -ALTER TABLE ${ohdsiSchema}.generation_cache ALTER COLUMN design_hash TYPE integer USING design_hash::integer; -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20191219183702__migrate_feature_extraction_id.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20191219183702__migrate_feature_extraction_id.sql deleted file mode 100644 index 3806895e2d..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20191219183702__migrate_feature_extraction_id.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO ${ohdsiSchema}.fe_analysis(type, name, domain, descr, value, design, is_locked, stat_type) - values ('PRESET', 'Hospital Frailty Risk Score', 'CONDITION', 'The Hospital Frailty Risk Score score using all conditions prior to the window end.', null, 'Hfrs', true, 'DISTRIBUTION'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200109100200__cohort_sample_tables.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200109100200__cohort_sample_tables.sql deleted file mode 100644 index ebedb5cb72..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200109100200__cohort_sample_tables.sql +++ /dev/null @@ -1,23 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cohort_sample_sequence; - -CREATE TABLE ${ohdsiSchema}.cohort_sample( - id INTEGER PRIMARY KEY NOT NULL, - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - source_id INTEGER NOT NULL, - size INTEGER NOT NULL, - age_min SMALLINT NULL, - age_max SMALLINT NULL, - age_mode VARCHAR(24), - gender_concept_ids VARCHAR(255) NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - CONSTRAINT fk_cohort_sample_definition_id FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE, - CONSTRAINT fk_cohort_sample_source_id FOREIGN KEY (source_id) - REFERENCES ${ohdsiSchema}.source (source_id) ON DELETE CASCADE -); - -CREATE INDEX idx_cohort_sample_source ON ${ohdsiSchema}.cohort_sample (cohort_definition_id, source_id); diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200109132902__fe_domain_null_fix.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200109132902__fe_domain_null_fix.sql deleted file mode 100644 index 5fec3a4f71..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200109132902__fe_domain_null_fix.sql +++ /dev/null @@ -1,14 +0,0 @@ -UPDATE ${ohdsiSchema}.fe_analysis -SET domain = 'MEASUREMENT' -WHERE type = 'PRESET' -AND design IN ( - 'MeasurementRangeGroupShortTerm', - 'MeasurementRangeGroupLongTerm', - 'MeasurementRangeGroupMediumTerm', - 'MeasurementRangeGroupAnyTimePrior', - 'MeasurementValueLongTerm', - 'MeasurementValueShortTerm', - 'MeasurementValueMediumTerm', - 'MeasurementValueAnyTimePrior' -) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql deleted file mode 100644 index 27a2bc586b..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql +++ /dev/null @@ -1,19 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES -(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortsample:*:*:get', 'List cohort samples'), -(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortsample:*:*:*:get', 'Get single cohort samples'), -(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortsample:*:*:*:delete', 'Delete cohort sample'), -(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortsample:*:*:delete', 'Delete all cohort samples of a cohort.'), -(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortsample:*:*:post', 'Create cohort sample'), -(nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortsample:*:*:*:refresh:post', 'Refresh cohort sample'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortsample:*:*:get', - 'cohortsample:*:*:*:get', - 'cohortsample:*:*:*:delete', - 'cohortsample:*:*:delete', - 'cohortsample:*:*:post', - 'cohortsample:*:*:*:refresh:post' - ) AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql deleted file mode 100644 index b126f790dd..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql +++ /dev/null @@ -1,17 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), 'source:priorityVocabulary:get', 'Get source with highest priority vocabulary daimon' -; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:generation:*:result:get', 'Get cohort characterization generation results - 2.7.x compatible' -; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'source:priorityVocabulary:get', - 'cohort-characterization:generation:*:result:get' -) -AND sr.name IN ('Atlas users', 'Moderator') -; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200130124345__fe_analysis_aggregate.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200130124345__fe_analysis_aggregate.sql deleted file mode 100644 index e540bc0722..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200130124345__fe_analysis_aggregate.sql +++ /dev/null @@ -1,96 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.fe_aggregate_sequence; - -CREATE TABLE ${ohdsiSchema}.fe_analysis_aggregate( - id INTEGER NOT NULL DEFAULT nextval('${ohdsiSchema}.fe_aggregate_sequence'), - name VARCHAR NOT NULL, - domain VARCHAR, - agg_function VARCHAR, - criteria_columns VARCHAR, - expression VARCHAR, - join_table VARCHAR, - join_type VARCHAR, - join_condition VARCHAR, - is_default BOOLEAN DEFAULT FALSE, - missing_means_zero BOOLEAN DEFAULT FALSE, - CONSTRAINT pk_fe_aggregate PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD fe_aggregate_id INTEGER; - -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - ('Events count', null, 'COUNT', null, '*', null, null, null, TRUE, TRUE), - ('Distinct start dates', null, 'COUNT', 'START_DATE', 'DISTINCT v.start_date', null, null, null, FALSE, TRUE), - ('Duration', null, null, 'DURATION', 'duration', null, null, null, FALSE, FALSE), - ('Duration (max)', null, 'MAX', 'DURATION', 'duration', null, null, null, FALSE, FALSE), - ('Duration (min)', null, 'MIN', 'DURATION', 'duration', null, null, null, FALSE, FALSE), - ('Duration (average)', null, 'AVG', 'DURATION', 'duration', null, null, null, FALSE, FALSE), - ('Value as number', 'MEASUREMENT', null, 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Value as number (max)', 'MEASUREMENT', 'MAX', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Value as number (min)', 'MEASUREMENT', 'MIN', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Value as number (average)', 'MEASUREMENT', 'AVG', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Range high', 'MEASUREMENT', null, 'RANGE_HIGH', 'range_high', null, null, null, FALSE, FALSE), - ('Range high (max)', 'MEASUREMENT', 'MAX', 'RANGE_HIGH', 'range_high', null, null, null, FALSE, FALSE), - ('Range high (min)', 'MEASUREMENT', 'MIN', 'RANGE_HIGH', 'range_high', null, null, null, FALSE, FALSE), - ('Range high (average)', 'MEASUREMENT', 'AVG', 'RANGE_HIGH', 'range_high', null, null, null, FALSE, FALSE), - ('Range low', 'MEASUREMENT', null, 'RANGE_LOW', 'range_low', null, null, null, FALSE, FALSE), - ('Range low (max)', 'MEASUREMENT', 'MAX', 'RANGE_LOW', 'range_low', null, null, null, FALSE, FALSE), - ('Range low (min)', 'MEASUREMENT', 'MIN', 'RANGE_LOW', 'range_low', null, null, null, FALSE, FALSE), - ('Range low (average)', 'MEASUREMENT', 'AVG', 'RANGE_LOW', 'range_low', null, null, null, FALSE, FALSE), - ('Refills', 'DRUG', null, 'REFILLS', 'refills', null, null, null, FALSE, FALSE), - ('Refills (max)', 'DRUG', 'MAX', 'REFILLS', 'refills', null, null, null, FALSE, FALSE), - ('Refills (min)', 'DRUG', 'MIN', 'REFILLS', 'refills', null, null, null, FALSE, FALSE), - ('Refills (average)', 'DRUG', 'AVG', 'REFILLS', 'refills', null, null, null, FALSE, FALSE), - ('Quantity', 'DRUG', null, 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Quantity (max)', 'DRUG', 'MAX', 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Quantity (min)', 'DRUG', 'MIN', 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Quantity (average)', 'DRUG', 'AVG', 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Days supply', 'DRUG', null, 'DAYS_SUPPLY', 'days_supply', null, null, null, FALSE, FALSE), - ('Days supply (max)', 'DRUG', 'MAX', 'DAYS_SUPPLY', 'days_supply', null, null, null, FALSE, FALSE), - ('Days supply (min)', 'DRUG', 'MIN', 'DAYS_SUPPLY', 'days_supply', null, null, null, FALSE, FALSE), - ('Days supply (average)', 'DRUG', 'AVG', 'DAYS_SUPPLY', 'days_supply', null, null, null, FALSE, FALSE), - ('Drug exposure count', 'DRUG_ERA', null, 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Drug exposure count (max)', 'DRUG_ERA', 'MAX', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Drug exposure count (min)', 'DRUG_ERA', 'MIN', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Drug exposure count (average)', 'DRUG_ERA', 'AVG', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Gap days', 'DRUG_ERA', null, 'GAP_DAYS', 'gap_days', null, null, null, FALSE, FALSE), - ('Gap days (max)', 'DRUG_ERA', 'MAX', 'GAP_DAYS', 'gap_days', null, null, null, FALSE, FALSE), - ('Gap days (min)', 'DRUG_ERA', 'MIN', 'GAP_DAYS', 'gap_days', null, null, null, FALSE, FALSE), - ('Gap days (average)', 'DRUG_ERA', 'AVG', 'GAP_DAYS', 'gap_days', null, null, null, FALSE, FALSE), - ('Condition occurrence count', 'CONDITION_ERA', null, 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Condition occurrence count (max)', 'CONDITION_ERA', 'MAX', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Condition occurrence count (min)', 'CONDITION_ERA', 'MIN', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Condition occurrence count (average)', 'CONDITION_ERA', 'AVG', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, FALSE, FALSE), - ('Value as number', 'OBSERVATION', null, 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Value as number (max)', 'OBSERVATION', 'MAX', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Value as number (min)', 'OBSERVATION', 'MIN', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Value as number (average)', 'OBSERVATION', 'AVG', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, FALSE, FALSE), - ('Quantity', 'PROCEDURE', null, 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Quantity (max)', 'PROCEDURE', 'MAX', 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Quantity (min)', 'PROCEDURE', 'MIN', 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE), - ('Quantity (average)', 'PROCEDURE', 'AVG', 'QUANTITY', 'quantity', null, null, null, FALSE, FALSE); - -UPDATE - ${ohdsiSchema}.fe_analysis_criteria -SET - fe_aggregate_id = ag.id -FROM - ${ohdsiSchema}.fe_analysis_criteria feac JOIN - ${ohdsiSchema}.fe_analysis fea ON fea.id = feac.fe_analysis_id, - ${ohdsiSchema}.fe_analysis_aggregate ag -WHERE - ag.name = 'Events count' - AND fea.type = 'CRITERIA_SET' - AND fea.stat_type = 'DISTRIBUTION'; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), 'feature-analysis:aggregates:get', 'List available aggregates for Feature Analyses'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'feature-analysis:aggregates:get' - ) AND sr.name IN ('Atlas users'); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD CONSTRAINT fk_criteria_aggregate - FOREIGN KEY (fe_aggregate_id) REFERENCES fe_analysis_aggregate(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200325145111__check_required_params.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200325145111__check_required_params.sql deleted file mode 100644 index b450475897..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200325145111__check_required_params.sql +++ /dev/null @@ -1,24 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:check:post', 'Run diagnostics for cohort characterization params'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:check:post', 'Run diagnostics for pathway params'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'ir:check:post', 'Run diagnostics for incident rates'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'prediction:check:post', 'Run diagnostics for prediction'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'estimation:check:post', 'Run diagnostics for estimation'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:check:post', 'Run diagnostics for cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:check:post', - 'pathway-analysis:check:post', - 'ir:check:post', - 'prediction:check:post', - 'estimation:check:post', - 'cohortdefinition:check:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql deleted file mode 100644 index 16de849a6f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql +++ /dev/null @@ -1,4 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value ='ir:*:put' AND sr.name = 'Atlas users'; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200413150815__gis_service_api.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200413150815__gis_service_api.sql deleted file mode 100644 index 154ad31a19..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200413150815__gis_service_api.sql +++ /dev/null @@ -1,18 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'gis:cohort:*:bounds:*:get', 'Get gis bounds for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'gis:cohort:*:clusters:*:get', 'Get gis clusters for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'gis:cohort:*:density:*:get', 'Get gis density for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'gis:person:*:bounds:*:get', 'Get bounds for person'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'gis:cohort:*:bounds:*:get', - 'gis:cohort:*:clusters:*:get', - 'gis:cohort:*:density:*:get', - 'gis:person:*:bounds:*:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200427161830__modify_user_login.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200427161830__modify_user_login.sql deleted file mode 100644 index a67a56902f..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200427161830__modify_user_login.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user DROP CONSTRAINT sec_user_login_unique; - -ALTER TABLE ${ohdsiSchema}.sec_user ALTER COLUMN login SET DATA TYPE VARCHAR(1024); - -ALTER TABLE ${ohdsiSchema}.sec_user ADD CONSTRAINT sec_user_login_unique UNIQUE (login); diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql deleted file mode 100644 index 2e1645bcf6..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info - ADD COLUMN created_by_id INTEGER REFERENCES ${ohdsiSchema}.sec_user(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200616112935__fe_check_permissions.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200616112935__fe_check_permissions.sql deleted file mode 100644 index 8ff6356e80..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200616112935__fe_check_permissions.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'feature-analysis:*:copy:get', 'Copy the specified feature analysis'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'feature-analysis:*:copy:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200724121114__daimon-priority-public.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200724121114__daimon-priority-public.sql deleted file mode 100644 index b23994c04c..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200724121114__daimon-priority-public.sql +++ /dev/null @@ -1,6 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'source:daimon:priority:get' - ) AND sr.name IN ('public'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql deleted file mode 100644 index 0a1a25136e..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql +++ /dev/null @@ -1,4 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission srp WHERE - srp.permission_id in (SELECT id FROM ${ohdsiSchema}.sec_permission sp WHERE sp.value = 'ir:*:put') - AND - srp.role_id in (SELECT id FROM ${ohdsiSchema}.sec_role sr WHERE sr.name = 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20200903120903__drop-cohort-features-columns.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20200903120903__drop-cohort-features-columns.sql deleted file mode 100644 index 0afe8f9fe6..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20200903120903__drop-cohort-features-columns.sql +++ /dev/null @@ -1,37 +0,0 @@ -alter table ${ohdsiSchema}.cohort_generation_info drop column include_features; - -delete -from - ${ohdsiSchema}.sec_role_permission srp -where - id in ( - select - srp.id - from - ${ohdsiSchema}.sec_role_permission srp - join ${ohdsiSchema}.sec_permission sp on - sp.id = srp.permission_id - where - sp.value like 'featureextraction:query:prevalence:*:%:get' - or sp.value like 'featureextraction:query:distributions:*:%:get' - or sp.value like 'featureextraction:explore:prevalence:*:%:*:get' - or sp.value like 'featureextraction:generatesql:%:*:get' - or sp.value like 'featureextraction:generate:%:*:get'); - -delete -from - ${ohdsiSchema}.sec_permission sp -where - sp.value like 'featureextraction:query:prevalence:*:%:get' - or sp.value like 'featureextraction:query:distributions:*:%:get' - or sp.value like 'featureextraction:explore:prevalence:*:%:*:get' - or sp.value like 'featureextraction:generatesql:%:*:get' - or sp.value like 'featureextraction:generate:%:*:get'; - -drop table ${ohdsiSchema}.cohort_features_dist; - -drop table ${ohdsiSchema}.cohort_features; - -drop table ${ohdsiSchema}.cohort_features_ref; - -drop table ${ohdsiSchema}.cohort_features_analysis_ref; \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.202010130001__print_friendly_security.sql b/src/main/resources/db/migration/postgresql/V2.8.0.202010130001__print_friendly_security.sql deleted file mode 100644 index 5d1d9a40ac..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.202010130001__print_friendly_security.sql +++ /dev/null @@ -1,13 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:printfriendly:cohort:post', 'Get print-friendly HTML of cohort expression'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:printfriendly:conceptsets:post', 'Get print-friendly HTML of conceptset list'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohortdefinition:printfriendly:cohort:post', - 'cohortdefinition:printfriendly:conceptsets:post' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql deleted file mode 100644 index 67d7724833..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql +++ /dev/null @@ -1,24 +0,0 @@ -CREATE TEMP TABLE temp_migration ( - from_perm_id int, - new_value character varying(255) -); - -INSERT INTO temp_migration (from_perm_id, new_value) -SELECT sp.id as from_id, - REPLACE('vocabulary:%s:concept:*:ancestorAndDescendant:get', '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')) as new_value -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value) -SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'), new_value -FROM temp_migration; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id,role_id, permission_id) -SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), - srp.role_id, - sp.id as permission_id -FROM temp_migration m -JOIN ${ohdsiSchema}.sec_permission sp on m.new_value = sp.value -JOIN ${ohdsiSchema}.sec_role_permission srp on m.from_perm_id = srp.permission_id; - -DROP TABLE temp_migration; diff --git a/src/main/resources/db/migration/postgresql/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql b/src/main/resources/db/migration/postgresql/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql deleted file mode 100644 index 3f0ccb1a30..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql +++ /dev/null @@ -1,9 +0,0 @@ -delete from ${ohdsiSchema}.source_daimon sd1 -where sd1.priority = -1 - and sd1.source_daimon_id < ( - select max(source_daimon_id) - from ${ohdsiSchema}.source_daimon sd2 - where sd1.source_id = sd2.source_id - and sd1.daimon_type = sd2.daimon_type); - -ALTER TABLE ${ohdsiSchema}.source_daimon ADD CONSTRAINT un_source_daimon UNIQUE (source_id,daimon_type); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.1.20210203163300__gis_service_add_check_source_permission.sql b/src/main/resources/db/migration/postgresql/V2.8.1.20210203163300__gis_service_add_check_source_permission.sql deleted file mode 100644 index 5401cb4723..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.1.20210203163300__gis_service_add_check_source_permission.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (nextval('${ohdsiSchema}.sec_permission_id_seq'), 'gis:source:check:*:get', 'Check availability of geodata in source'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT nextval('${ohdsiSchema}.sec_role_permission_sequence'), sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'gis:source:check:*:get' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.1.20210219100459__evidence_get_permission.sql b/src/main/resources/db/migration/postgresql/V2.8.1.20210219100459__evidence_get_permission.sql deleted file mode 100644 index 00cf5d7cd1..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.1.20210219100459__evidence_get_permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'),'evidence:*:negativecontrols:*:get','Get evidence information'; - INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'),'evidence:*:druglabel:post','Get drug label information'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in - ( - 'evidence:*:negativecontrols:*:get', - 'evidence:*:druglabel:post' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.8.1.20210226100460__evidence_get_permission.sql b/src/main/resources/db/migration/postgresql/V2.8.1.20210226100460__evidence_get_permission.sql deleted file mode 100644 index b6e46ba9d8..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.8.1.20210226100460__evidence_get_permission.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT nextval('${ohdsiSchema}.sec_permission_id_seq'),'evidence:*:drugconditionpairs:post','Get drug condition pairs information'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in - ( - 'evidence:*:drugconditionpairs:post' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.9.0.20210423125133__assets_tags.sql b/src/main/resources/db/migration/postgresql/V2.9.0.20210423125133__assets_tags.sql deleted file mode 100644 index 16e580b589..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.9.0.20210423125133__assets_tags.sql +++ /dev/null @@ -1,189 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'tag:get', 'List tags'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'tag:search:get', 'Search tags by name'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'tag:post', 'Create tag'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'tag:*:put', 'Update tag'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'tag:*:get', 'Get tag'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'tag:*:delete', 'Delete tag'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:tag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:tag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:protectedtag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:protectedtag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:tag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:tag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:protectedtag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:protectedtag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:check:post', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:tag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:tag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:protectedtag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:protectedtag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:tag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:tag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:protectedtag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:protectedtag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:tag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:tag:*:delete', - 'Unassign tag from cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:protectedtag:post', - 'Assign tag to cohort definition'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:protectedtag:*:delete', - 'Unassign tag from cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'tag:get', - 'tag:search:get', - 'tag:post', - 'tag:*:put', - 'tag:*:get', - 'tag:*:delete', - 'cohortdefinition:*:tag:post', - 'cohortdefinition:*:tag:*:delete', - 'conceptset:*:tag:post', - 'conceptset:*:tag:*:delete', - 'conceptset:check:post', - 'cohort-characterization:*:tag:post', - 'cohort-characterization:*:tag:*:delete', - 'ir:*:tag:post', - 'ir:*:tag:*:delete', - 'pathway-analysis:*:tag:post', - 'pathway-analysis:*:tag:*:delete') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:protectedtag:post', - 'cohortdefinition:*:protectedtag:*:delete', - 'conceptset:*:protectedtag:post', - 'conceptset:*:protectedtag:*:delete', - 'cohort-characterization:*:protectedtag:post', - 'cohort-characterization:*:protectedtag:*:delete', - 'ir:*:protectedtag:post', - 'ir:*:protectedtag:*:delete', - 'pathway-analysis:*:protectedtag:post', - 'pathway-analysis:*:protectedtag:*:delete') - AND sr.name IN ('admin'); - -CREATE SEQUENCE ${ohdsiSchema}.tags_seq; - --- Possible types are: --- 0 - System (predefined) tags --- 1 - Custom tags --- 2 - Prizm tags -CREATE TABLE ${ohdsiSchema}.tags -( - id int4 NOT NULL DEFAULT nextval('${ohdsiSchema}.tags_seq'), - name VARCHAR NOT NULL, - type int4 NOT NULL DEFAULT 0, - count int4 NOT NULL DEFAULT 0, - show_group bool NOT NULL DEFAULT FALSE, - icon varchar NULL, - color varchar NULL, - multi_selection bool NOT NULL DEFAULT FALSE, - permission_protected bool NOT NULL DEFAULT FALSE, - mandatory bool NOT NULL DEFAULT FALSE, - allow_custom bool NOT NULL DEFAULT FALSE, - description varchar NULL, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - modified_by_id INTEGER, - modified_date TIMESTAMP WITH TIME ZONE, - CONSTRAINT pk_tags_id PRIMARY KEY (id), - CONSTRAINT fk_tags_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_tags_sec_user_updater FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user (id) -); - -CREATE UNIQUE INDEX tags_name_idx ON ${ohdsiSchema}.tags USING btree (LOWER(name)); - -CREATE TABLE ${ohdsiSchema}.tag_groups -( - tag_id int4 NOT NULL, - group_id int4 NOT NULL, - CONSTRAINT tag_groups_group_fk FOREIGN KEY (group_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE, - CONSTRAINT tag_groups_tag_fk FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE TABLE ${ohdsiSchema}.concept_set_tags -( - asset_id int4 NOT NULL, - tag_id int4 NOT NULL, - CONSTRAINT pk_concept_set_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT concept_set_tags_fk_sets FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.concept_set (concept_set_id) ON DELETE CASCADE, - CONSTRAINT concept_set_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX concept_set_tags_concept_id_idx ON ${ohdsiSchema}.concept_set_tags USING btree (asset_id); -CREATE INDEX concept_set_tags_tag_id_idx ON ${ohdsiSchema}.concept_set_tags USING btree (tag_id); - -CREATE TABLE ${ohdsiSchema}.cohort_tags -( - asset_id int4 NOT NULL, - tag_id int4 NOT NULL, - CONSTRAINT pk_cohort_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT cohort_tags_fk_definitions FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE, - CONSTRAINT cohort_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX cohort_tags_cohort_id_idx ON ${ohdsiSchema}.cohort_tags USING btree (asset_id); -CREATE INDEX cohort_tags_tag_id_idx ON ${ohdsiSchema}.cohort_tags USING btree (tag_id); - -CREATE TABLE ${ohdsiSchema}.cohort_characterization_tags -( - asset_id int4 NOT NULL, - tag_id int4 NOT NULL, - CONSTRAINT pk_cc_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT cc_tags_fk_ccs FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_characterization (id) ON DELETE CASCADE, - CONSTRAINT cc_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX cc_tags_cc_id_idx ON ${ohdsiSchema}.cohort_characterization_tags USING btree (asset_id); -CREATE INDEX cc_tags_tag_id_idx ON ${ohdsiSchema}.cohort_characterization_tags USING btree (tag_id); - -CREATE TABLE ${ohdsiSchema}.ir_tags -( - asset_id int4 NOT NULL, - tag_id int4 NOT NULL, - CONSTRAINT pk_ir_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT ir_tags_fk_irs FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.ir_analysis (id) ON DELETE CASCADE, - CONSTRAINT ir_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX ir_tags_ir_id_idx ON ${ohdsiSchema}.ir_tags USING btree (asset_id); -CREATE INDEX ir_tags_tag_id_idx ON ${ohdsiSchema}.ir_tags USING btree (tag_id); - -CREATE TABLE ${ohdsiSchema}.pathway_tags -( - asset_id int4 NOT NULL, - tag_id int4 NOT NULL, - CONSTRAINT pk_pathway_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT ir_tags_fk_irs FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.pathway_analysis (id) ON DELETE CASCADE, - CONSTRAINT ir_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX pathway_tags_pathway_id_idx ON ${ohdsiSchema}.pathway_tags USING btree (asset_id); -CREATE INDEX pathway_tags_tag_id_idx ON ${ohdsiSchema}.pathway_tags USING btree (tag_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/postgresql/V2.9.0.20210513111520__versioning.sql b/src/main/resources/db/migration/postgresql/V2.9.0.20210513111520__versioning.sql deleted file mode 100644 index f55927ce53..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.9.0.20210513111520__versioning.sql +++ /dev/null @@ -1,176 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:version:get', - 'Get list of cohort versions'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:version:*:get', - 'Get cohort version'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:version:*:put', - 'Update cohort version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:version:*:delete', - 'Delete cohort version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohortdefinition:*:version:*:createAsset:put', - 'Copy cohort version as new cohort'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:get', - 'Get list of concept set versions'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:*:get', - 'Get concept set version'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:*:put', - 'Update concept set version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:*:delete', - 'Delete concept set version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:*:createAsset:put', - 'Copy concept set version as new concept set'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:*:expression:get', - 'Get expression for concept set items for default source'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'conceptset:*:version:*:expression:*:get', - 'Get expression for concept set items for certain source'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:version:get', - 'Get list of characterization versions'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:version:*:get', - 'Get characterization version'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:version:*:put', - 'Update characterization version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:version:*:delete', - 'Delete characterization version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'cohort-characterization:*:version:*:createAsset:put', - 'Copy characterization version as new cohort'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:version:get', - 'Get list of incidence rate analysis versions'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:version:*:get', - 'Get incidence rate analysis version'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:version:*:put', - 'Update incidence rate analysis version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:version:*:delete', - 'Delete incidence rate analysis version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'ir:*:version:*:createAsset:put', - 'Copy incidence rate analysis version as new cohort'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:version:get', - 'Get list of pathway analysis versions'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:version:*:get', - 'Get pathway analysis version'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:version:*:put', - 'Update pathway analysis version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:version:*:delete', - 'Delete pathway analysis version info'), - (NEXTVAL('${ohdsiSchema}.sec_permission_id_seq'), 'pathway-analysis:*:version:*:createAsset:put', - 'Copy pathway analysis version as new cohort'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:version:get', - 'cohortdefinition:*:version:*:get', - 'cohortdefinition:*:version:*:put', - 'cohortdefinition:*:version:*:delete', - 'cohortdefinition:*:version:*:createAsset:put', - 'conceptset:*:version:get', - 'conceptset:*:version:*:get', - 'conceptset:*:version:*:put', - 'conceptset:*:version:*:delete', - 'conceptset:*:version:*:createAsset:put', - 'conceptset:*:version:*:expression:get', - 'conceptset:*:version:*:expression:*:get', - 'cohort-characterization:*:version:get', - 'cohort-characterization:*:version:*:get', - 'cohort-characterization:*:version:*:put', - 'cohort-characterization:*:version:*:delete', - 'cohort-characterization:*:version:*:createAsset:put', - 'ir:*:version:get', - 'ir:*:version:*:get', - 'ir:*:version:*:put', - 'ir:*:version:*:delete', - 'ir:*:version:*:createAsset:put', - 'pathway-analysis:*:version:get', - 'pathway-analysis:*:version:*:get', - 'pathway-analysis:*:version:*:put', - 'pathway-analysis:*:version:*:delete', - 'pathway-analysis:*:version:*:createAsset:put') - AND sr.name IN ('Atlas users'); - --- Cohorts -CREATE TABLE ${ohdsiSchema}.cohort_version -( - asset_id int8 NOT NULL, - comment varchar NULL, - description varchar NULL, - version int4 NOT NULL DEFAULT 1, - asset_json varchar NOT NULL, - archived bool NOT NULL DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - CONSTRAINT pk_cohort_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_cohort_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_cohort_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE -); - -CREATE INDEX cohort_version_asset_idx ON ${ohdsiSchema}.cohort_version USING btree (asset_id); - --- Cohort characterizations -CREATE TABLE ${ohdsiSchema}.cohort_characterization_version -( - asset_id int8 NOT NULL, - comment varchar NULL, - version int4 NOT NULL DEFAULT 1, - asset_json varchar NOT NULL, - archived bool NOT NULL DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - CONSTRAINT pk_cc_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_cc_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_cc_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_characterization (id) ON DELETE CASCADE -); - -CREATE INDEX cc_version_asset_idx ON ${ohdsiSchema}.cohort_characterization_version USING btree (asset_id); - --- Concept sets -CREATE TABLE ${ohdsiSchema}.concept_set_version -( - asset_id int8 NOT NULL, - comment varchar NULL, - version int4 NOT NULL DEFAULT 1, - asset_json varchar NOT NULL, - archived bool NOT NULL DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - CONSTRAINT pk_concept_set_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_concept_set_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_concept_set_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.concept_set (concept_set_id) ON DELETE CASCADE -); - -CREATE INDEX concept_set_version_asset_idx ON ${ohdsiSchema}.concept_set_version USING btree (asset_id); - --- Incidence rates -CREATE TABLE ${ohdsiSchema}.ir_version -( - asset_id int8 NOT NULL, - comment varchar NULL, - description varchar NULL, - version int4 NOT NULL DEFAULT 1, - asset_json varchar NOT NULL, - archived bool NOT NULL DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - CONSTRAINT pk_ir_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_ir_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_ir_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.ir_analysis (id) ON DELETE CASCADE -); - -CREATE INDEX ir_version_asset_idx ON ${ohdsiSchema}.ir_version USING btree (asset_id); - --- Pathways -CREATE TABLE ${ohdsiSchema}.pathway_version -( - asset_id int8 NOT NULL, - comment varchar NULL, - version int4 NOT NULL DEFAULT 1, - asset_json varchar NOT NULL, - archived bool NOT NULL DEFAULT FALSE, - created_by_id INTEGER, - created_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT (now()), - CONSTRAINT pk_pathway_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_pathway_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_pathway_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.pathway_analysis (id) ON DELETE CASCADE -); - -CREATE INDEX pathway_version_asset_idx ON ${ohdsiSchema}.pathway_version USING btree (asset_id); diff --git a/src/main/resources/db/migration/postgresql/V2.9.0.20210727101117__achilles_cache.sql b/src/main/resources/db/migration/postgresql/V2.9.0.20210727101117__achilles_cache.sql deleted file mode 100644 index 1915c254b3..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.9.0.20210727101117__achilles_cache.sql +++ /dev/null @@ -1,13 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.achilles_cache_seq START WITH 1; - -CREATE TABLE ${ohdsiSchema}.achilles_cache -( - id bigint NOT NULL DEFAULT nextval('${ohdsiSchema}.achilles_cache_seq'), - source_id int4 NOT NULL, - cache_name varchar NOT NULL, - cache text, - CONSTRAINT achilles_cache_pk PRIMARY KEY (id), - CONSTRAINT achilles_cache_fk FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}."source" (source_id) ON DELETE CASCADE -); - -CREATE UNIQUE INDEX achilles_cache_source_id_idx ON ${ohdsiSchema}.achilles_cache USING btree (source_id, cache_name); diff --git a/src/main/resources/db/migration/postgresql/V2.9.0.20210812164224__assets_tags_renaming.sql b/src/main/resources/db/migration/postgresql/V2.9.0.20210812164224__assets_tags_renaming.sql deleted file mode 100644 index 1aaf3f77cc..0000000000 --- a/src/main/resources/db/migration/postgresql/V2.9.0.20210812164224__assets_tags_renaming.sql +++ /dev/null @@ -1,9 +0,0 @@ -ALTER SEQUENCE ${ohdsiSchema}.tags_seq RENAME TO tag_seq; - -ALTER TABLE ${ohdsiSchema}.tags RENAME TO tag; -ALTER TABLE ${ohdsiSchema}.tag_groups RENAME TO tag_group; -ALTER TABLE ${ohdsiSchema}.concept_set_tags RENAME TO concept_set_tag; -ALTER TABLE ${ohdsiSchema}.cohort_tags RENAME TO cohort_tag; -ALTER TABLE ${ohdsiSchema}.cohort_characterization_tags RENAME TO cohort_characterization_tag; -ALTER TABLE ${ohdsiSchema}.ir_tags RENAME TO ir_tag; -ALTER TABLE ${ohdsiSchema}.pathway_tags RENAME TO pathway_tag; diff --git a/src/main/resources/db/migration/postgresql/V2_16_0_20251107000000__remove_analysis_modules.sql b/src/main/resources/db/migration/postgresql/V3.0.0.20251108000000__webapi_3_0_migration.sql similarity index 73% rename from src/main/resources/db/migration/postgresql/V2_16_0_20251107000000__remove_analysis_modules.sql rename to src/main/resources/db/migration/postgresql/V3.0.0.20251108000000__webapi_3_0_migration.sql index 8d2a296701..23969efd96 100644 --- a/src/main/resources/db/migration/postgresql/V2_16_0_20251107000000__remove_analysis_modules.sql +++ b/src/main/resources/db/migration/postgresql/V3.0.0.20251108000000__webapi_3_0_migration.sql @@ -1,15 +1,11 @@ --- V2.16.0.20251107000000__remove_analysis_modules.sql --- Remove Statistical Analysis, Pathway Analysis, Execution Engine, and Shiny Infrastructure modules --- This is a BREAKING CHANGE for v3.0 - see docs/MIGRATION_GUIDE_v3.0.md +-- WebAPI 3.0.0 Migration: Remove deprecated modules + Spring Batch 5 schema updates --- Drop views first (to avoid dependency issues) DROP VIEW IF EXISTS estimation_gen_view; DROP VIEW IF EXISTS pathway_analysis_generation_view; DROP VIEW IF EXISTS cc_generation; DROP VIEW IF EXISTS estimation_analysis_generation; DROP VIEW IF EXISTS prediction_analysis_generation; --- Drop cohort characterization tables (before fe_analysis to avoid FK violations) DROP TABLE IF EXISTS cohort_characterization_tag CASCADE; DROP TABLE IF EXISTS cohort_characterization_version CASCADE; DROP TABLE IF EXISTS cc_execution CASCADE; @@ -26,24 +22,20 @@ DROP SEQUENCE IF EXISTS cc_strata_seq; DROP SEQUENCE IF EXISTS cc_strata_conceptset_seq; DROP SEQUENCE IF EXISTS cc_analysis_seq; --- Drop estimation tables DROP TABLE IF EXISTS estimation_analysis_generation CASCADE; DROP TABLE IF EXISTS estimation CASCADE; DROP SEQUENCE IF EXISTS estimation_seq; --- Drop prediction tables DROP TABLE IF EXISTS prediction_analysis_generation CASCADE; DROP TABLE IF EXISTS prediction CASCADE; DROP SEQUENCE IF EXISTS prediction_seq; --- Drop feature analysis tables DROP TABLE IF EXISTS fe_analysis_aggregate CASCADE; DROP TABLE IF EXISTS fe_analysis_criteria CASCADE; DROP TABLE IF EXISTS fe_analysis CASCADE; DROP SEQUENCE IF EXISTS fe_analysis_sequence; DROP SEQUENCE IF EXISTS fe_analysis_criteria_sequence; --- Drop incidence rate tables DROP TABLE IF EXISTS ir_tag CASCADE; DROP TABLE IF EXISTS ir_strata CASCADE; DROP TABLE IF EXISTS ir_analysis_result CASCADE; @@ -53,7 +45,6 @@ DROP TABLE IF EXISTS ir_analysis_details CASCADE; DROP TABLE IF EXISTS ir_analysis CASCADE; DROP SEQUENCE IF EXISTS ir_analysis_sequence; --- Drop pathway tables DROP TABLE IF EXISTS pathway_tag CASCADE; DROP TABLE IF EXISTS pathway_event_cohort CASCADE; DROP TABLE IF EXISTS pathway_target_cohort CASCADE; @@ -61,17 +52,32 @@ DROP TABLE IF EXISTS pathway_analysis CASCADE; DROP SEQUENCE IF EXISTS pathway_analysis_sequence; DROP SEQUENCE IF EXISTS pathway_cohort_sequence; --- Drop execution engine tables DROP TABLE IF EXISTS input_files CASCADE; DROP TABLE IF EXISTS output_files CASCADE; DROP TABLE IF EXISTS analysis_execution CASCADE; DROP SEQUENCE IF EXISTS output_file_seq; DROP SEQUENCE IF EXISTS input_file_seq; --- Drop shiny infrastructure tables DROP TABLE IF EXISTS shiny_published CASCADE; DROP SEQUENCE IF EXISTS shiny_published_sequence; --- Note: Results schema tables (pathway_analysis_codes, pathway_analysis_events, etc.) --- are in separate results schemas and must be dropped manually if desired. --- This migration only handles WebAPI schema tables. +-- Spring Batch 5 schema updates +DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS CASCADE; + +CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( + JOB_EXECUTION_ID BIGINT NOT NULL, + PARAMETER_NAME VARCHAR(100) NOT NULL, + PARAMETER_TYPE VARCHAR(100) NOT NULL, + PARAMETER_VALUE VARCHAR(2500), + IDENTIFYING CHAR(1) NOT NULL, + CONSTRAINT JOB_EXEC_PARAMS_FK FOREIGN KEY (JOB_EXECUTION_ID) + REFERENCES ${ohdsiSchema}.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) +); + +CREATE INDEX BJEP_JOB_EXEC_PARAMS_IDX ON ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS (JOB_EXECUTION_ID); + +ALTER TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION +ADD COLUMN IF NOT EXISTS CREATE_TIME TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP; + +ALTER TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION +ALTER COLUMN START_TIME DROP NOT NULL; diff --git a/src/main/resources/db/migration/postgresql/V3.0.0.20251108000001__spring_batch_5_migration.sql b/src/main/resources/db/migration/postgresql/V3.0.0.20251108000001__spring_batch_5_migration.sql deleted file mode 100644 index 036fd10792..0000000000 --- a/src/main/resources/db/migration/postgresql/V3.0.0.20251108000001__spring_batch_5_migration.sql +++ /dev/null @@ -1,26 +0,0 @@ --- Migrate Spring Batch 4 schema to Spring Batch 5 schema for PostgreSQL --- This updates all Spring Batch tables to be compatible with Spring Batch 5.x - --- 1. Update BATCH_JOB_EXECUTION_PARAMS table structure --- Drop the old table and recreate with new Spring Batch 5 column names -DROP TABLE IF EXISTS ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS CASCADE; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( - JOB_EXECUTION_ID BIGINT NOT NULL , - PARAMETER_NAME VARCHAR(100) NOT NULL , - PARAMETER_TYPE VARCHAR(100) NOT NULL , - PARAMETER_VALUE VARCHAR(2500) , - IDENTIFYING CHAR(1) NOT NULL , - constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID) - references ${ohdsiSchema}.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -); - -CREATE INDEX BJEP_JOB_EXEC_PARAMS_IDX ON ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS (JOB_EXECUTION_ID); - --- 2. Add missing CREATE_TIME column to BATCH_STEP_EXECUTION -ALTER TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION -ADD COLUMN IF NOT EXISTS CREATE_TIME TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP; - --- 3. Make START_TIME nullable for Spring Batch 5 compatibility -ALTER TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION -ALTER COLUMN START_TIME DROP NOT NULL; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.1__schema-create_spring_batch.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.1__schema-create_spring_batch.sql deleted file mode 100644 index 0062952751..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.1__schema-create_spring_batch.sql +++ /dev/null @@ -1,79 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_INSTANCE ( - JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY , - VERSION BIGINT , - JOB_NAME VARCHAR(100) NOT NULL, - JOB_KEY VARCHAR(32) NOT NULL, - constraint JOB_INST_UN unique (JOB_NAME, JOB_KEY) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION ( - JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , - VERSION BIGINT , - JOB_INSTANCE_ID BIGINT NOT NULL, - CREATE_TIME DATETIME NOT NULL, - START_TIME DATETIME DEFAULT NULL , - END_TIME DATETIME DEFAULT NULL , - STATUS VARCHAR(10) , - EXIT_CODE VARCHAR(2500) , - EXIT_MESSAGE VARCHAR(2500) , - LAST_UPDATED DATETIME, - JOB_CONFIGURATION_LOCATION VARCHAR(2500) NULL, - constraint JOB_INST_EXEC_FK foreign key (JOB_INSTANCE_ID) - references ${ohdsiSchema}.BATCH_JOB_INSTANCE(JOB_INSTANCE_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS ( - JOB_EXECUTION_ID BIGINT NOT NULL , - TYPE_CD VARCHAR(6) NOT NULL , - KEY_NAME VARCHAR(100) NOT NULL , - STRING_VAL VARCHAR(250) , - DATE_VAL DATETIME DEFAULT NULL , - LONG_VAL BIGINT , - DOUBLE_VAL DOUBLE PRECISION , - IDENTIFYING CHAR(1) NOT NULL , - constraint JOB_EXEC_PARAMS_FK foreign key (JOB_EXECUTION_ID) - references ${ohdsiSchema}.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION ( - STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY , - VERSION BIGINT NOT NULL, - STEP_NAME VARCHAR(100) NOT NULL, - JOB_EXECUTION_ID BIGINT NOT NULL, - START_TIME DATETIME NOT NULL , - END_TIME DATETIME DEFAULT NULL , - STATUS VARCHAR(10) , - COMMIT_COUNT BIGINT , - READ_COUNT BIGINT , - FILTER_COUNT BIGINT , - WRITE_COUNT BIGINT , - READ_SKIP_COUNT BIGINT , - WRITE_SKIP_COUNT BIGINT , - PROCESS_SKIP_COUNT BIGINT , - ROLLBACK_COUNT BIGINT , - EXIT_CODE VARCHAR(2500) , - EXIT_MESSAGE VARCHAR(2500) , - LAST_UPDATED DATETIME, - constraint JOB_EXEC_STEP_FK foreign key (JOB_EXECUTION_ID) - references ${ohdsiSchema}.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_CONTEXT ( - STEP_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, - SHORT_CONTEXT VARCHAR(2500) NOT NULL, - SERIALIZED_CONTEXT TEXT , - constraint STEP_EXEC_CTX_FK foreign key (STEP_EXECUTION_ID) - references ${ohdsiSchema}.BATCH_STEP_EXECUTION(STEP_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_CONTEXT ( - JOB_EXECUTION_ID BIGINT NOT NULL PRIMARY KEY, - SHORT_CONTEXT VARCHAR(2500) NOT NULL, - SERIALIZED_CONTEXT TEXT , - constraint JOB_EXEC_CTX_FK foreign key (JOB_EXECUTION_ID) - references ${ohdsiSchema}.BATCH_JOB_EXECUTION(JOB_EXECUTION_ID) -) ; - -CREATE TABLE ${ohdsiSchema}.BATCH_STEP_EXECUTION_SEQ (ID BIGINT IDENTITY); -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_EXECUTION_SEQ (ID BIGINT IDENTITY); -CREATE TABLE ${ohdsiSchema}.BATCH_JOB_SEQ (ID BIGINT IDENTITY); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.2.1__alter_jpa_identity.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.2.1__alter_jpa_identity.sql deleted file mode 100644 index 312d3bb750..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.2.1__alter_jpa_identity.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.[TEMP_EXAMPLEAPP_WIDGET] -( - [ID] [bigint] NOT NULL identity(1,1), - [NAME] [varchar](50) NULL -); - -SET IDENTITY_INSERT ${ohdsiSchema}.[TEMP_EXAMPLEAPP_WIDGET] ON; - -INSERT INTO ${ohdsiSchema}.[TEMP_EXAMPLEAPP_WIDGET] (ID, NAME) -SELECT ID, NAME from ${ohdsiSchema}.[EXAMPLEAPP_WIDGET] TABLOCKX; - -SET IDENTITY_INSERT ${ohdsiSchema}.[TEMP_EXAMPLEAPP_WIDGET] OFF; - -DROP TABLE ${ohdsiSchema}.[EXAMPLEAPP_WIDGET]; - -Exec sp_rename '${ohdsiSchema}.TEMP_EXAMPLEAPP_WIDGET', 'EXAMPLEAPP_WIDGET'; - -ALTER TABLE ${ohdsiSchema}.EXAMPLEAPP_WIDGET - ADD CONSTRAINT PK_EXAMPLEAPP_WIDGET PRIMARY KEY CLUSTERED ([ID]) -ON [PRIMARY]; - -DROP TABLE ${ohdsiSchema}.HIBERNATE_SEQUENCE; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.2__schema-create_jpa.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.2__schema-create_jpa.sql deleted file mode 100644 index 4fdc998714..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.2__schema-create_jpa.sql +++ /dev/null @@ -1,8 +0,0 @@ ---Needed for JPA/hibernate -CREATE TABLE ${ohdsiSchema}.HIBERNATE_SEQUENCE (ID BIGINT IDENTITY); - ---Example -CREATE TABLE ${ohdsiSchema}.EXAMPLEAPP_WIDGET ( - ID BIGINT NOT NULL PRIMARY KEY , - NAME VARCHAR(50) -); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.3.1__cohort_generation.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.3.1__cohort_generation.sql deleted file mode 100644 index c8d4ccc8b9..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.3.1__cohort_generation.sql +++ /dev/null @@ -1,23 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_definition_details DROP CONSTRAINT FK_cohort_definition_details_cohort_definition; - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - ADD CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY ( id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) - ON UPDATE CASCADE - ON DELETE CASCADE -; - -CREATE TABLE [${ohdsiSchema}].[cohort_generation_info]( - [id] [int] NOT NULL, - [start_time] [datetime] NOT NULL, - [execution_duration] [int] NULL, - [status] [int] NOT NULL, - [is_valid] [bit] NOT NULL, - CONSTRAINT [PK_cohort_generation_info] PRIMARY KEY CLUSTERED ( [id] ASC), - CONSTRAINT [FK_cohort_generation_info_cohort_definition] FOREIGN KEY([id]) - REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]) - ON UPDATE CASCADE - ON DELETE CASCADE -) ON [PRIMARY] -; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.3.2__alter_foreign_keys.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.3.2__alter_foreign_keys.sql deleted file mode 100644 index fec03ff28f..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.3.2__alter_foreign_keys.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_definition_details DROP CONSTRAINT FK_cohort_definition_details_cohort_definition; - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - ADD CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY ( id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) -; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.3__cohort_definition_persistence.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.3__cohort_definition_persistence.sql deleted file mode 100644 index f489f1b173..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.3__cohort_definition_persistence.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[cohort_definition]( - [id] [int] NOT NULL identity(1,1), - [name] [varchar](255) NOT NULL, - [description] [varchar](1000) NULL, - [expression_type] [varchar](50) NULL, - [created_by] [varchar](255) NULL, - [created_date] [datetime] NULL, - [modified_by] [varchar](255) NULL, - [modified_date] [datetime] NULL, - CONSTRAINT [PK_cohort_definition] PRIMARY KEY (id) -) ON [PRIMARY] - -CREATE TABLE [${ohdsiSchema}].[cohort_definition_details]( - [id] [int], - [expression] [varchar](max) NOT NULL, - CONSTRAINT PK_cohort_definition_details PRIMARY KEY (id), - CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY (id) - REFERENCES ${ohdsiSchema}.cohort_definition(id) -) ON [PRIMARY]; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.4.1__heracles_heel.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.4.1__heracles_heel.sql deleted file mode 100644 index 653eca703c..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.4.1__heracles_heel.sql +++ /dev/null @@ -1,6 +0,0 @@ - CREATE TABLE ${ohdsiSchema}.HERACLES_HEEL_results - ( - cohort_definition_id int, - analysis_id INT, - HERACLES_HEEL_warning VARCHAR(255) - ); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.4.2__measurement_types.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.4.2__measurement_types.sql deleted file mode 100644 index 0a74530db9..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.4.2__measurement_types.sql +++ /dev/null @@ -1,19 +0,0 @@ - -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1300,'Number of persons with at least one measurement occurrence, by measurement_concept_id','measurement_concept_id',null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1301,'Number of measurement occurrence records, by measurement_concept_id','measurement_concept_id',null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1302,'Number of persons by measurement occurrence start month, by measurement_concept_id','measurement_concept_id','calendar month',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1303,'Number of distinct measurement occurrence concepts per person',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1304,'Number of persons with at least one measurement occurrence, by measurement_concept_id by calendar year by gender by age decile','measurement_concept_id','calendar year','gender_concept_id','age decile',null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1305,'Number of measurement occurrence records, by measurement_concept_id by measurement_type_concept_id','measurement_concept_id','measurement_type_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1306,'Distribution of age by measurement_concept_id','measurement_concept_id','gender_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1307,'Number of measurement occurrence records, by measurement_concept_id and unit_concept_id','measurement_concept_id','unit_concept_id',null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1309,'Number of measurement records with invalid person_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1310,'Number of measurement records outside valid measurement period',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1312,'Number of measurement records with invalid provider_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1313,'Number of measurement records with invalid visit_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1314,'Number of measurement records with no value (numeric, string, or concept)',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1315,'Distribution of numeric values, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1316,'Distribution of low range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1317,'Distribution of high range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1318,'Number of measurement records below/within/above normal range, by measurement_concept_id and unit_concept_id',null,null,null,null,null,'MEASUREMENT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1320,'Number of measurement records by measurement start month','calendar month',null,null,null,null,'MEASUREMENT'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.4.3__heracles_index.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.4.3__heracles_index.sql deleted file mode 100644 index acee294bcf..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.4.3__heracles_index.sql +++ /dev/null @@ -1,11 +0,0 @@ -CREATE INDEX HRD_IDX_COHORT_DEF_ID ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id); -CREATE INDEX HRD_IDX_COHORT_ID_ANALYSIS_ID ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, analysis_id); -CREATE INDEX HRD_IDX_COHORT_DEF_ID_DT ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, last_update_time); -CREATE INDEX HRD_IDX_COHORT_ID_FIRST_RES ON ${ohdsiSchema}.HERACLES_RESULTS_DIST (cohort_definition_id, analysis_id, count_value, stratum_1); - -CREATE INDEX HR_IDX_COHORT_DEF_ID ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id); -CREATE INDEX HR_IDX_COHORT_ID_ANALYSIS_ID ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, analysis_id); -CREATE INDEX HR_IDX_COHORT_DEF_ID_DT ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, last_update_time); -CREATE INDEX HR_IDX_COHORT_ID_FIRST_RES ON ${ohdsiSchema}.HERACLES_RESULTS (cohort_definition_id, analysis_id, count_value, stratum_1); - -CREATE INDEX HH_IDX_COHORT_ID_ANALYSIS_ID ON ${ohdsiSchema}.HERACLES_HEEL_RESULTS (cohort_definition_id, analysis_id); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.4__cohort_analysis_results.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.4__cohort_analysis_results.sql deleted file mode 100644 index 913ab91abb..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.4__cohort_analysis_results.sql +++ /dev/null @@ -1,230 +0,0 @@ -create table ${ohdsiSchema}.cohort -( - COHORT_DEFINITION_ID int NOT NULL, - SUBJECT_ID bigint NOT NULL, - cohort_start_date date NOT NULL, - cohort_end_date date NOT NULL -) ON [PRIMARY] -; - -create table ${ohdsiSchema}.heracles_analysis -( - analysis_id int, - analysis_name varchar(255), - stratum_1_name varchar(255), - stratum_2_name varchar(255), - stratum_3_name varchar(255), - stratum_4_name varchar(255), - stratum_5_name varchar(255), - analysis_type varchar(255) -) on [PRIMARY] -; - -TRUNCATE TABLE ${ohdsiSchema}.heracles_analysis; - -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (0,'Source name',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1,'Number of persons',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (2,'Number of persons by gender','gender_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (3,'Number of persons by year of birth','year_of_birth',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (4,'Number of persons by race','race_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (5,'Number of persons by ethnicity','ethnicity_concept_id',null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (7,'Number of persons with invalid provider_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (8,'Number of persons with invalid location_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (9,'Number of persons with invalid care_site_id',null,null,null,null,null,'PERSON'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (101,'Number of persons by age, with age at first observation period','age',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (102,'Number of persons by gender by age, with age at first observation period','gender_concept_id','age',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (103,'Distribution of age at first observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (104,'Distribution of age at first observation period by gender','gender_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (105,'Length of observation (days) of first observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (106,'Length of observation (days) of first observation period by gender','gender_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (107,'Length of observation (days) of first observation period by age decile','age decile',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (108,'Number of persons by length of observation period, in 30d increments','Observation period length 30d increments',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (109,'Number of persons with continuous observation in each year','calendar year',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (110,'Number of persons with continuous observation in each month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (111,'Number of persons by observation period start month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (112,'Number of persons by observation period end month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (113,'Number of persons by number of observation periods','number of observation periods',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (114,'Number of persons with observation period before year-of-birth',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (115,'Number of persons with observation period end < observation period start',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (116,'Number of persons with at least one day of observation in each year by gender and age decile','calendar year','gender_concept_id','age decile',null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (117,'Number of persons with at least one day of observation in each month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (200,'Number of persons with at least one visit occurrence, by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (201,'Number of visit occurrence records, by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (202,'Number of persons by visit occurrence start month, by visit_concept_id','visit_concept_id','calendar month',null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (203,'Number of distinct visit occurrence concepts per person',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (204,'Number of persons with at least one visit occurrence, by visit_concept_id by calendar year by gender by age decile','visit_concept_id','calendar year','gender_concept_id','age decile',null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (206,'Distribution of age by visit_concept_id','visit_concept_id','gender_concept_id',null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (207,'Number of visit records with invalid person_id',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (208,'Number of visit records outside valid observation period',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (209,'Number of visit records with end date < start date',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (210,'Number of visit records with invalid care_site_id',null,null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (211,'Distribution of length of stay by visit_concept_id','visit_concept_id',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (220,'Number of visit occurrence records by visit occurrence start month','calendar month',null,null,null,null,'VISITS'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (400,'Number of persons with at least one condition occurrence, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (401,'Number of condition occurrence records, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (402,'Number of persons by condition occurrence start month, by condition_concept_id','condition_concept_id','calendar month',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (403,'Number of distinct condition occurrence concepts per person',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (404,'Number of persons with at least one condition occurrence, by condition_concept_id by calendar year by gender by age decile','condition_concept_id','calendar year','gender_concept_id','age decile',null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (405,'Number of condition occurrence records, by condition_concept_id by condition_type_concept_id','condition_concept_id','condition_type_concept_id',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (406,'Distribution of age by condition_concept_id','condition_concept_id','gender_concept_id',null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (409,'Number of condition occurrence records with invalid person_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (410,'Number of condition occurrence records outside valid observation period',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (411,'Number of condition occurrence records with end date < start date',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (412,'Number of condition occurrence records with invalid provider_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (413,'Number of condition occurrence records with invalid visit_id',null,null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (420,'Number of condition occurrence records by condition occurrence start month','calendar month',null,null,null,null,'CONDITION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (500,'Number of persons with death, by cause_of_death_concept_id','cause_of_death_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (501,'Number of records of death, by cause_of_death_concept_id','cause_of_death_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (502,'Number of persons by death month','calendar month',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (504,'Number of persons with a death, by calendar year by gender by age decile','calendar year','gender_concept_id','age decile',null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (505,'Number of death records, by death_type_concept_id','death_type_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (506,'Distribution of age at death by gender','gender_concept_id',null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (509,'Number of death records with invalid person_id',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (510,'Number of death records outside valid observation period',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (511,'Distribution of time from death to last condition',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (512,'Distribution of time from death to last drug',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (513,'Distribution of time from death to last visit',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (514,'Distribution of time from death to last procedure',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (515,'Distribution of time from death to last observation',null,null,null,null,null,'DEATH'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (600,'Number of persons with at least one procedure occurrence, by procedure_concept_id','procedure_concept_id',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (601,'Number of procedure occurrence records, by procedure_concept_id','procedure_concept_id',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (602,'Number of persons by procedure occurrence start month, by procedure_concept_id','procedure_concept_id','calendar month',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (603,'Number of distinct procedure occurrence concepts per person',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (604,'Number of persons with at least one procedure occurrence, by procedure_concept_id by calendar year by gender by age decile','procedure_concept_id','calendar year','gender_concept_id','age decile',null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (605,'Number of procedure occurrence records, by procedure_concept_id by procedure_type_concept_id','procedure_concept_id','procedure_type_concept_id',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (606,'Distribution of age by procedure_concept_id','procedure_concept_id','gender_concept_id',null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (609,'Number of procedure occurrence records with invalid person_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (610,'Number of procedure occurrence records outside valid observation period',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (612,'Number of procedure occurrence records with invalid provider_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (613,'Number of procedure occurrence records with invalid visit_id',null,null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (620,'Number of procedure occurrence records by procedure occurrence start month','calendar month',null,null,null,null,'PROCEDURE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (700,'Number of persons with at least one drug exposure, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (701,'Number of drug exposure records, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (702,'Number of persons by drug exposure start month, by drug_concept_id','drug_concept_id','calendar month',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (703,'Number of distinct drug exposure concepts per person',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (704,'Number of persons with at least one drug exposure, by drug_concept_id by calendar year by gender by age decile','drug_concept_id','calendar year','gender_concept_id','age decile',null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (705,'Number of drug exposure records, by drug_concept_id by drug_type_concept_id','drug_concept_id','drug_type_concept_id',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (706,'Distribution of age by drug_concept_id','drug_concept_id','gender_concept_id',null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (709,'Number of drug exposure records with invalid person_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (710,'Number of drug exposure records outside valid observation period',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (711,'Number of drug exposure records with end date < start date',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (712,'Number of drug exposure records with invalid provider_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (713,'Number of drug exposure records with invalid visit_id',null,null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (715,'Distribution of days_supply by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (716,'Distribution of refills by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (717,'Distribution of quantity by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (720,'Number of drug exposure records by drug exposure start month','calendar month',null,null,null,null,'DRUG'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (800,'Number of persons with at least one observation occurrence, by observation_concept_id','observation_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (801,'Number of observation occurrence records, by observation_concept_id','observation_concept_id',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (802,'Number of persons by observation occurrence start month, by observation_concept_id','observation_concept_id','calendar month',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (803,'Number of distinct observation occurrence concepts per person',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (804,'Number of persons with at least one observation occurrence, by observation_concept_id by calendar year by gender by age decile','observation_concept_id','calendar year','gender_concept_id','age decile',null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (805,'Number of observation occurrence records, by observation_concept_id by observation_type_concept_id','observation_concept_id','observation_type_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (806,'Distribution of age by observation_concept_id','observation_concept_id','gender_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (807,'Number of observation occurrence records, by observation_concept_id and unit_concept_id','observation_concept_id','unit_concept_id',null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (809,'Number of observation records with invalid person_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (810,'Number of observation records outside valid observation period',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (812,'Number of observation records with invalid provider_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (813,'Number of observation records with invalid visit_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (814,'Number of observation records with no value (numeric, string, or concept)',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (815,'Distribution of numeric values, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (816,'Distribution of low range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (817,'Distribution of high range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (818,'Number of observation records below/within/above normal range, by observation_concept_id and unit_concept_id',null,null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (820,'Number of observation records by observation start month','calendar month',null,null,null,null,'OBSERVATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (900,'Number of persons with at least one drug era, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (901,'Number of drug era records, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (902,'Number of persons by drug era start month, by drug_concept_id','drug_concept_id','calendar month',null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (903,'Number of distinct drug era concepts per person',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (904,'Number of persons with at least one drug era, by drug_concept_id by calendar year by gender by age decile','drug_concept_id','calendar year','gender_concept_id','age decile',null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (906,'Distribution of age by drug_concept_id','drug_concept_id','gender_concept_id',null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (907,'Distribution of drug era length, by drug_concept_id','drug_concept_id',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (908,'Number of drug eras without valid person',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (909,'Number of drug eras outside valid observation period',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (910,'Number of drug eras with end date < start date',null,null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (920,'Number of drug era records by drug era start month','calendar month',null,null,null,null,'DRUG_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1000,'Number of persons with at least one condition era, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1001,'Number of condition era records, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1002,'Number of persons by condition era start month, by condition_concept_id','condition_concept_id','calendar month',null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1003,'Number of distinct condition era concepts per person',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1004,'Number of persons with at least one condition era, by condition_concept_id by calendar year by gender by age decile','condition_concept_id','calendar year','gender_concept_id','age decile',null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1006,'Distribution of age by condition_concept_id','condition_concept_id','gender_concept_id',null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1007,'Distribution of condition era length, by condition_concept_id','condition_concept_id',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1008,'Number of condition eras without valid person',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1009,'Number of condition eras outside valid observation period',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1010,'Number of condition eras with end date < start date',null,null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1020,'Number of condition era records by condition era start month','calendar month',null,null,null,null,'CONDITION_ERA'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1100,'Number of persons by location 3-digit zip','3-digit zip',null,null,null,null,'LOCATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1101,'Number of persons by location state','state',null,null,null,null,'LOCATION'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1200,'Number of persons by place of service','place_of_service_concept_id',null,null,null,null,'CARE_SITE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1201,'Number of visits by place of service','place_of_service_concept_id',null,null,null,null,'CARE_SITE'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1700,'Number of records by cohort_definition_id','cohort_definition_id',null,null,null,null,'COHORT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1701,'Number of records with cohort end date < cohort start date',null,null,null,null,null,'COHORT'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1800,'Number of persons by age, with age at cohort start','age',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1801,'Distribution of age at cohort start',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1802,'Distribution of age at cohort start by gender','gender_concept_id',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1803,'Distribution of age at cohort start by cohort start year','calendar year',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1804,'Number of persons by duration from cohort start to cohort end, in 30d increments','Cohort period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1805,'Number of persons by duration from observation start to cohort start, in 30d increments','Baseline period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1806,'Number of persons by duration from cohort start to observation end, in 30d increments','Follow-up period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1807,'Number of persons by duration from cohort end to observation end, in 30d increments','Post-cohort period length 30d increments',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1808,'Distribution of duration (days) from cohort start to cohort end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1809,'Distribution of duration (days) from cohort start to cohort end, by gender','gender_concept_id',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1810,'Distribution of duration (days) from cohort start to cohort end, by age decile','age decile',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1811,'Distribution of duration (days) from observation start to cohort start',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1812,'Distribution of duration (days) from cohort start to observation end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1813,'Distribution of duration (days) from cohort end to observation end',null,null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1814,'Number of persons by cohort start year by gender by age decile','calendar year','gender_concept_id','age decile',null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1815,'Number of persons by cohort start month','calendar month',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1816,'Number of persons by number of cohort periods','number of cohort periods',null,null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1820,'Number of persons by duration from cohort start to first occurrence of condition occurrence, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1821,'Number of events by duration from cohort start to all occurrences of condition occurrence, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1830,'Number of persons by duration from cohort start to first occurrence of procedure occurrence, by procedure_concept_id','procedure_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1831,'Number of events by duration from cohort start to all occurrences of procedure occurrence, by procedure_concept_id','procedure_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1840,'Number of persons by duration from cohort start to first occurrence of drug exposure, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1841,'Number of events by duration from cohort start to all occurrences of drug exposure, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1850,'Number of persons by duration from cohort start to first occurrence of observation, by observation_concept_id','observation_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1851,'Number of events by duration from cohort start to all occurrences of observation, by observation_concept_id','observation_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1860,'Number of persons by duration from cohort start to first occurrence of condition era, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1861,'Number of events by duration from cohort start to all occurrences of condition era, by condition_concept_id','condition_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1870,'Number of persons by duration from cohort start to first occurrence of drug era, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); -insert into ${ohdsiSchema}.heracles_analysis (ANALYSIS_ID,ANALYSIS_NAME,STRATUM_1_NAME,STRATUM_2_NAME,STRATUM_3_NAME,STRATUM_4_NAME,STRATUM_5_NAME,ANALYSIS_TYPE) values (1871,'Number of events by duration from cohort start to all occurrences of drug era, by drug_concept_id','drug_concept_id','time-to-event 30d increments',null,null,null,'COHORT_SPECIFIC_ANALYSES'); - -create table ${ohdsiSchema}.heracles_results -( - cohort_definition_id int, - analysis_id int, - stratum_1 varchar(255), - stratum_2 varchar(255), - stratum_3 varchar(255), - stratum_4 varchar(255), - stratum_5 varchar(255), - count_value bigint, - last_update_time datetime - CONSTRAINT DF_HERACLES_results_last_update DEFAULT GETDATE() -) on [PRIMARY] -; - -create table ${ohdsiSchema}.heracles_results_dist -( - cohort_definition_id int, - analysis_id int, - stratum_1 varchar(255), - stratum_2 varchar(255), - stratum_3 varchar(255), - stratum_4 varchar(255), - stratum_5 varchar(255), - count_value bigint, - min_value float, - max_value float, - avg_value float, - stdev_value float, - median_value float, - p10_value float, - p25_value float, - p75_value float, - p90_value float, - last_update_time datetime - CONSTRAINT DF_heracles_results_dist_last_update DEFAULT GETDATE() -) on [PRIMARY] -; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.5.1__alter_foreign_keys.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.5.1__alter_foreign_keys.sql deleted file mode 100644 index e66f8ae527..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.5.1__alter_foreign_keys.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion DROP CONSTRAINT FK_feasibility_inclusion_feasibility_study; - -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion - ADD CONSTRAINT FK_feasibility_inclusion_feasibility_study - FOREIGN KEY (study_id) - REFERENCES ${ohdsiSchema}.feasibility_study (id) -; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.5__feasability_tables.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.5__feasability_tables.sql deleted file mode 100644 index 1f1c649001..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.5__feasability_tables.sql +++ /dev/null @@ -1,67 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[feas_study_generation_info]( - [study_id] [int] NOT NULL, - [start_time] [datetime] NULL, - [execution_duration] [int] NULL, - [status] [int] NOT NULL, - [is_valid] [bit] NOT NULL, - CONSTRAINT [PK_feas_study_generation_info] PRIMARY KEY CLUSTERED ([study_id] ASC ) -) -; - -CREATE TABLE [${ohdsiSchema}].[feasibility_study]( - [id] [int] IDENTITY(1,1) NOT NULL, - [name] [varchar](255) NOT NULL, - [description] [varchar](1000) NULL, - [index_def_id] [int] NULL, - [result_def_id] [int] NULL, - [generate_info_id] [int] NULL, - [created_by] [varchar](255) NULL, - [created_date] [datetime] NULL, - [modified_by] [varchar](255) NULL, - [modified_date] [datetime] NULL, - CONSTRAINT [PK_clinical_trial_protocol] PRIMARY KEY CLUSTERED ([id] ASC), - CONSTRAINT [FK_feasibility_study_cohort_definition_index] FOREIGN KEY([index_def_id]) - REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]), - CONSTRAINT [FK_feasibility_study_cohort_definition_result] FOREIGN KEY([result_def_id]) - REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]), - CONSTRAINT [FK_feasibility_study_feas_study_generation_info] FOREIGN KEY([generate_info_id]) - REFERENCES [${ohdsiSchema}].[feas_study_generation_info] ([study_id]) -) -; - -CREATE TABLE [${ohdsiSchema}].[feasibility_inclusion]( - [study_id] [int] NOT NULL, - [sequence] [int] NOT NULL, - [name] [varchar](255) NULL, - [description] [varchar](1000) NULL, - [expression] [varchar](max) NULL, - CONSTRAINT [FK_feasibility_inclusion_feasibility_study] FOREIGN KEY([study_id]) - REFERENCES [${ohdsiSchema}].[feasibility_study] ([id]) - ON DELETE CASCADE -) -; - -CREATE TABLE [${ohdsiSchema}].[feas_study_result]( - [study_id] [int] NOT NULL, - [inclusion_rule_mask] [bigint] NOT NULL, - [person_count] [bigint] NOT NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[feas_study_index_stats]( - [study_id] [int] NOT NULL, - [person_count] [bigint] NOT NULL, - [match_count] [bigint] NOT NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[feas_study_inclusion_stats]( - [study_id] [int] NOT NULL, - [rule_sequence] [int] NOT NULL, - [name] [varchar](255) NOT NULL, - [person_count] [bigint] NOT NULL, - [gain_count] [bigint] NOT NULL, - [person_total] [bigint] NOT NULL -) -; - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.6.1__schema-create_laertes.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.6.1__schema-create_laertes.sql deleted file mode 100644 index bc39f6fe5b..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.6.1__schema-create_laertes.sql +++ /dev/null @@ -1,81 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- SQL Server script - -IF OBJECT_ID(N'${ohdsiSchema}.DRUG_HOI_EVIDENCE', N'U') IS NOT NULL DROP TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE; -IF OBJECT_ID('${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE', 'SO') IS NOT NULL DROP SEQUENCE ${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.DRUG_HOI_EVIDENCE_SEQUENCE, - DRUG_HOI_RELATIONSHIP VARCHAR(50), - EVIDENCE_TYPE VARCHAR(4000), - MODALITY VARCHAR(1), - EVIDENCE_SOURCE_CODE_ID INTEGER, - STATISTIC_VALUE NUMERIC NOT NULL, - EVIDENCE_LINKOUT VARCHAR(4000), - STATISTIC_TYPE VARCHAR(4000) -); - -IF OBJECT_ID(N'${ohdsiSchema}.EVIDENCE_SOURCES', N'U') IS NOT NULL DROP TABLE ${ohdsiSchema}.EVIDENCE_SOURCES; -IF OBJECT_ID('${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE', 'SO') IS NOT NULL DROP SEQUENCE ${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.EVIDENCE_SOURCES_SEQUENCE, - TITLE VARCHAR(4000), - DESCRIPTION VARCHAR(4000), - CONTRIBUTER VARCHAR(4000), - CREATOR VARCHAR(4000), - CREATION_DATE DATE NOT NULL, - RIGHTS VARCHAR(4000), - SOURCE VARCHAR(4000) -); - -IF OBJECT_ID(N'${ohdsiSchema}.DRUG_HOI_RELATIONSHIP', N'U') IS NOT NULL DROP TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP; -CREATE TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP ( - ID VARCHAR(50) NOT NULL, - DRUG INTEGER, - RXNORM_DRUG VARCHAR(4000), - HOI INTEGER, - SNOMED_HOI VARCHAR(4000) -); - -IF OBJECT_ID(N'${ohdsiSchema}.LAERTES_SUMMARY', N'U') IS NOT NULL DROP TABLE ${ohdsiSchema}.LAERTES_SUMMARY; -IF OBJECT_ID('${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE', 'SO') IS NOT NULL DROP SEQUENCE ${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE; -CREATE SEQUENCE ${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.LAERTES_SUMMARY ( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.LAERTES_SUMMARY_SEQUENCE, - REPORT_ORDER INTEGER, - REPORT_NAME VARCHAR(4000), - INGREDIENT_ID INTEGER, - INGREDIENT VARCHAR(4000), - CLINICAL_DRUG_ID INTEGER, - CLINICAL_DRUG VARCHAR(4000), - HOI_ID INTEGER, - HOI VARCHAR(4000), - CT_COUNT INTEGER, - CASE_COUNT INTEGER, - OTHER_COUNT INTEGER, - SPLICER_COUNT INTEGER, - EU_SPC_COUNT INTEGER, - SEMMEDDB_CT_COUNT INTEGER, - SEMMEDDB_CASE_COUNT INTEGER, - SEMMEDDB_NEG_CT_COUNT INTEGER, - SEMMEDDB_NEG_CASE_COUNT INTEGER, - EB05 NUMERIC, - EBGM NUMERIC, - AERS_REPORT_COUNT INTEGER -); - --- add EVIDENCE_SOURCES table constraints -ALTER TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ADD CONSTRAINT PK_EVIDENCE_SOURCES PRIMARY KEY (ID); - --- add DRUG_HOI_RELATIONSHIP table constraints -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP ADD CONSTRAINT PK_DRUG_HOI_RELATIONSHIP PRIMARY KEY (ID); - --- add LAERTES_SUMMARY table constraints -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD CONSTRAINT PK_LAERTES_SUMMARY PRIMARY KEY (ID); - --- add DRUG_HOI_EVIDENCE table constraints -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT FK_DRUG_HOI_RELATIONSHIP FOREIGN KEY (DRUG_HOI_RELATIONSHIP) REFERENCES ${ohdsiSchema}.DRUG_HOI_RELATIONSHIP(ID); -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT FK_EVIDENCE_SOURCES FOREIGN KEY (EVIDENCE_SOURCE_CODE_ID) REFERENCES ${ohdsiSchema}.EVIDENCE_SOURCES(ID); -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ADD CONSTRAINT PK_DRUG_HOI_EVIDENCE PRIMARY KEY (ID); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.6.2__schema-create_laertes.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.6.2__schema-create_laertes.sql deleted file mode 100644 index 7d796fc3f4..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.6.2__schema-create_laertes.sql +++ /dev/null @@ -1,10 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- Postgresql script - -ALTER TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ADD coverage_start_date date; -ALTER TABLE ${ohdsiSchema}.EVIDENCE_SOURCES ADD coverage_end_date date; - -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY DROP COLUMN eb05; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY DROP COLUMN ebgm; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD prr numeric; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.6.3__schema-create_laertes.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.6.3__schema-create_laertes.sql deleted file mode 100644 index 4b28aec5b9..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.6.3__schema-create_laertes.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- sql server script - -ALTER TABLE ${ohdsiSchema}.DRUG_HOI_EVIDENCE ALTER COLUMN statistic_value numeric(19,5) NULL; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.6.4__schema-create_laertes.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.6.4__schema-create_laertes.sql deleted file mode 100644 index b3de44caf0..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.6.4__schema-create_laertes.sql +++ /dev/null @@ -1,13 +0,0 @@ --- Authors: Richard D Boyce, Erica Voss, Lee Evans --- 2014/2015 --- sql server script - -EXEC sp_rename '${ohdsiSchema}.DRUG_HOI_EVIDENCE.MODALITY', 'SUPPORTS' , 'COLUMN' - -EXEC sp_rename '${ohdsiSchema}.LAERTES_SUMMARY.CT_COUNT', 'MEDLINE_CT_COUNT' , 'COLUMN' -EXEC sp_rename '${ohdsiSchema}.LAERTES_SUMMARY.CASE_COUNT', 'MEDLINE_CASE_COUNT' , 'COLUMN' -EXEC sp_rename '${ohdsiSchema}.LAERTES_SUMMARY.OTHER_COUNT', 'MEDLINE_OTHER_COUNT' , 'COLUMN' - -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD CTD_CHEMICAL_DISEASE_COUNT INT; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD SEMMEDDB_OTHER_COUNT INT; -ALTER TABLE ${ohdsiSchema}.LAERTES_SUMMARY ADD SEMMEDDB_NEG_OTHER_COUNT INT; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.6.5__schema-create_penelope_laertes.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.6.5__schema-create_penelope_laertes.sql deleted file mode 100644 index b86ea2fb95..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.6.5__schema-create_penelope_laertes.sql +++ /dev/null @@ -1,36 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].penelope_laertes_universe ( - id bigint, - condition_concept_id bigint NULL, - condition_concept_name varchar(200) NULL, - ingredient_concept_id bigint NULL, - ingredient_concept_name varchar(200) NULL, - evidence_type varchar(200) NULL, - supports char(1) NULL, - statistic_value real NULL, - evidence_linkouts varchar(max) NULL, - CONSTRAINT [PK_PENELOPE_LAERTES_UNIVERSE] PRIMARY KEY CLUSTERED - ( - [id] ASC - )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); - -CREATE TABLE [${ohdsiSchema}].penelope_laertes_uni_pivot( - condition_concept_id bigint NULL, - condition_concept_name varchar(255) NULL, - ingredient_concept_id bigint NULL, - ingredient_concept_name varchar(255) NULL, - medline_ct bigint NULL, - medline_case bigint NULL, - medline_other bigint NULL, - semmeddb_ct_t bigint NULL, - semmeddb_case_t bigint NULL, - semmeddb_other_t bigint NULL, - semmeddb_ct_f bigint NULL, - semmeddb_case_f bigint NULL, - semmeddb_other_f bigint NULL, - eu_spc bigint NULL, - spl_adr bigint NULL, - aers bigint NULL, - aers_prr float NULL, - aers_prr_original float NULL -) ON [PRIMARY] \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.7.0__sources.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.7.0__sources.sql deleted file mode 100644 index 7497a7e519..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.7.0__sources.sql +++ /dev/null @@ -1,17 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[source] ( - [SOURCE_ID] INT IDENTITY (1, 1) NOT NULL, - [SOURCE_NAME] VARCHAR (255) NOT NULL, - [SOURCE_KEY] VARCHAR (50) NOT NULL, - [SOURCE_CONNECTION] VARCHAR (8000) NOT NULL, - [SOURCE_DIALECT] VARCHAR (255) CONSTRAINT [DF_source_SOURCE_DIALECT] DEFAULT ('sql server') NOT NULL -) ON [PRIMARY]; - -CREATE TABLE [${ohdsiSchema}].[source_daimon] ( - [source_daimon_id] INT IDENTITY (1, 1) NOT NULL, - [source_id] INT NOT NULL, - [daimon_type] INT NOT NULL, - [table_qualifier] VARCHAR (255) NOT NULL, - [priority] INT DEFAULT ((0)) NOT NULL, - PRIMARY KEY CLUSTERED ([source_daimon_id] ASC) -) ON [PRIMARY]; - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.7.1__cohort_multihomed_support.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.7.1__cohort_multihomed_support.sql deleted file mode 100644 index 463cd95661..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.7.1__cohort_multihomed_support.sql +++ /dev/null @@ -1,32 +0,0 @@ -ALTER TABLE [${ohdsiSchema}].[cohort_generation_info] DROP CONSTRAINT [FK_cohort_generation_info_cohort_definition]; - -CREATE TABLE [${ohdsiSchema}].[tmp_ms_xx_cohort_generation_info] ( - [id] INT NOT NULL, - [source_id] INT NOT NULL, - [start_time] DATETIME NULL, - [execution_duration] INT NULL, - [status] INT NOT NULL, - [is_valid] BIT NOT NULL, - CONSTRAINT [tmp_ms_xx_constraint_PK_cohort_generation_info] PRIMARY KEY CLUSTERED ([id] ASC, [source_id] ASC) -); - -INSERT INTO [${ohdsiSchema}].[tmp_ms_xx_cohort_generation_info] ([id], [source_id], [start_time], [execution_duration], [status], [is_valid]) -SELECT [id], - 1, - [start_time], - [execution_duration], - [status], - [is_valid] -FROM [${ohdsiSchema}].[cohort_generation_info] -ORDER BY [id] ASC; - -DROP TABLE [${ohdsiSchema}].[cohort_generation_info]; - -EXECUTE sp_rename N'[${ohdsiSchema}].[tmp_ms_xx_cohort_generation_info]', N'cohort_generation_info'; - -EXECUTE sp_rename N'[${ohdsiSchema}].[tmp_ms_xx_constraint_PK_cohort_generation_info]', N'PK_cohort_generation_info', N'OBJECT'; - -ALTER TABLE [${ohdsiSchema}].[cohort_generation_info] - ADD CONSTRAINT [FK_cohort_generation_info_cohort_definition] - FOREIGN KEY ([id]) REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]) - ON DELETE CASCADE ON UPDATE CASCADE; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.7.2__feasability_multihomed_support.sql.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.7.2__feasability_multihomed_support.sql.sql deleted file mode 100644 index d4874642bd..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.7.2__feasability_multihomed_support.sql.sql +++ /dev/null @@ -1,32 +0,0 @@ -ALTER TABLE [${ohdsiSchema}].[feasibility_study] DROP CONSTRAINT [FK_feasibility_study_feas_study_generation_info]; - -CREATE TABLE [${ohdsiSchema}].[tmp_ms_xx_feas_study_generation_info] ( - [study_id] INT NOT NULL, - [source_id] INT NOT NULL, - [start_time] DATETIME NULL, - [execution_duration] INT NULL, - [status] INT NOT NULL, - [is_valid] BIT NOT NULL, - CONSTRAINT [tmp_ms_xx_constraint_PK_feas_study_generation_info] PRIMARY KEY CLUSTERED ([study_id] ASC, [source_id] ASC) -); - -INSERT INTO [${ohdsiSchema}].[tmp_ms_xx_feas_study_generation_info] ([study_id], [source_id], [start_time], [execution_duration], [status], [is_valid]) -SELECT [study_id], - 1, - [start_time], - [execution_duration], - [status], - [is_valid] -FROM [${ohdsiSchema}].[feas_study_generation_info] -ORDER BY [study_id] ASC; - -DROP TABLE [${ohdsiSchema}].[feas_study_generation_info]; - -EXECUTE sp_rename N'[${ohdsiSchema}].[tmp_ms_xx_feas_study_generation_info]', N'feas_study_generation_info'; - -EXECUTE sp_rename N'[${ohdsiSchema}].[tmp_ms_xx_constraint_PK_feas_study_generation_info]', N'PK_feas_study_generation_info', N'OBJECT'; - -ALTER TABLE [${ohdsiSchema}].[feasibility_study] DROP COLUMN [generate_info_id]; - -ALTER TABLE [${ohdsiSchema}].[feas_study_generation_info] - ADD CONSTRAINT [FK_feas_study_generation_info_feasibility_study] FOREIGN KEY ([study_id]) REFERENCES [${ohdsiSchema}].[feasibility_study] ([id]); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.8.1__heracles_data.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.8.1__heracles_data.sql deleted file mode 100644 index 3bd3f0ac4e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.8.1__heracles_data.sql +++ /dev/null @@ -1,8 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP CONSTRAINT PK_heracles_viz_data; -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP COLUMN id; -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ADD id integer IDENTITY(1,1); -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ADD CONSTRAINT PK_heracles_viz_data -PRIMARY KEY CLUSTERED -( - id ASC -); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.8.2__heracles_data_fix.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.8.2__heracles_data_fix.sql deleted file mode 100644 index e1976972aa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.8.2__heracles_data_fix.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP COLUMN end_time; -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ADD end_time [datetime]; - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.8.3__heracles_data_fix.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.8.3__heracles_data_fix.sql deleted file mode 100644 index f439283274..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.8.3__heracles_data_fix.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP COLUMN data; -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ADD data varchar(max); - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.8__heracles_data.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.8__heracles_data.sql deleted file mode 100644 index 797a8af661..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.8__heracles_data.sql +++ /dev/null @@ -1,13 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ( - id integer NOT NULL , - cohort_definition_id integer NOT NULL , - source_id integer NOT NULL, - visualization_key VARCHAR(300) NOT NULL, - drilldown_id integer, - data TEXT NOT NULL, - end_time Timestamp NOT NULL, - CONSTRAINT PK_heracles_viz_data PRIMARY KEY (id) -); - -CREATE UNIQUE INDEX HERACLES_VIZ_DATA_UNQ_IDX ON ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA (COHORT_DEFINITION_ID, SOURCE_ID, VISUALIZATION_KEY, DRILLDOWN_ID); -CREATE INDEX HERACLES_VIZ_DATA_IDX ON ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA (COHORT_DEFINITION_ID, SOURCE_ID, VISUALIZATION_KEY); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.9.1__shiro_security-initial_values.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.9.1__shiro_security-initial_values.sql deleted file mode 100644 index bdcb4776e2..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.9.1__shiro_security-initial_values.sql +++ /dev/null @@ -1,69 +0,0 @@ - --- roles --- - -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (1, 'public'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (2, 'admin'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (3, 'concept set creator'); ---INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (4, 'concept set reader'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (5, 'cohort creator'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE (ID, NAME) VALUES (6, 'cohort reader'); - --- permissions --- - --- admin -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (200, 'configuration:edit:ui', 'Access to ''Configuration'' page'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (201, 'user:get', 'Get list of users'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (202, 'permission:get', 'Get list of permissions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (203, 'role:post', 'Create role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (204, 'role:get', 'Get list of roles'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (205, 'role:*:get', 'Get role by ID'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (206, 'role:*:permissions:get', 'Get list of role''s permissions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (207, 'role:*:users:get', 'Get list of role''s users'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (208, 'role:*:users:*:put', 'Add users to role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (209, 'role:*:users:*:delete', 'Remove users from role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (210, 'role:1:permissions:*:put', 'Add permissions to public role'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (211, 'role:1:permissions:*:delete', 'Remove permissions from public role'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 200); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 201); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 202); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 203); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 204); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 205); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 206); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 207); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 208); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 209); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 210); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (2, 211); - --- concept set creator -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (30, 'conceptset:post', 'Create Concept Set'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (3, 30); - --- cohort creator -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (50, 'cohortdefinition:post', 'Save new Cohort Definition'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (51, 'job:execution:get', 'Get list of jobs'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (52, 'cohortdefinition:*:copy:get', 'Copy the specified cohort definition'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 50); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 51); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 52); - --- cohort reader -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (60, 'cohortdefinition:get', 'Get list of Cohort Definitions'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (61, 'cohortdefinition:*:get', 'Get Cohort Definition by ID'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (62, 'cohortdefinition:*:info:get', ''); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (63, '*:vocabulary:lookup:identifiers:post', 'Perform a lookup of an array of concept identifiers returning the matching concepts with their detailed properties.'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (64, 'cohortdefinition:sql:post', 'Generate SQL from Cohort expression'); -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION (ID, VALUE, DESCRIPTION) VALUES (65, '*:cohortresults:*:breakdown:get', 'Get breakdown with counts about people in cohort'); - -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 60); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 61); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 62); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 63); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 64); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (6, 65); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.0.9__shiro_security.sql b/src/main/resources/db/migration/sqlserver/V1.0.0.9__shiro_security.sql deleted file mode 100644 index 4c8ba03ada..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.0.9__shiro_security.sql +++ /dev/null @@ -1,57 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.SEC_USER_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_USER( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.SEC_USER_SEQUENCE, - LOGIN VARCHAR(50), - PASSWORD VARCHAR(255), - SALT VARCHAR(255), - NAME VARCHAR(100) -); - -CREATE SEQUENCE ${ohdsiSchema}.SEC_ROLE_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_ROLE ( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.SEC_ROLE_SEQUENCE, - NAME VARCHAR(255) -); - -CREATE SEQUENCE ${ohdsiSchema}.SEC_USER_ROLE_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_USER_ROLE( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.SEC_USER_ROLE_SEQUENCE, - USER_ID INTEGER NOT NULL, - ROLE_ID INTEGER NOT NULL, - STATUS VARCHAR(255) NULL -); - -CREATE SEQUENCE ${ohdsiSchema}.SEC_PERMISSION_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_PERMISSION( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.SEC_PERMISSION_SEQUENCE, - VALUE VARCHAR(255) NOT NULL, - DESCRIPTION VARCHAR(255) NULL -); - -CREATE SEQUENCE ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE START WITH 1000 INCREMENT BY 1 MAXVALUE 9223372036854775807 NO CYCLE; -CREATE TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ( - ID INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE, - ROLE_ID INTEGER NOT NULL, - PERMISSION_ID INTEGER NOT NULL, - STATUS VARCHAR(255) NULL -); - - --- add SEC_USER table constraints -ALTER TABLE ${ohdsiSchema}.SEC_USER ADD CONSTRAINT PK_SEC_USER PRIMARY KEY (ID); - --- add SEC_ROLE table constraints -ALTER TABLE ${ohdsiSchema}.SEC_ROLE ADD CONSTRAINT PK_SEC_ROLE PRIMARY KEY (ID); - --- add SEC_PERMISSION table constraints -ALTER TABLE ${ohdsiSchema}.SEC_PERMISSION ADD CONSTRAINT PK_SEC_PERMISSION PRIMARY KEY (ID); - --- add SEC_USER_ROLE table constraints -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT PK_SEC_USER_ROLE PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT FK_USER_ROLE_TO_USER FOREIGN KEY (USER_ID) REFERENCES ${ohdsiSchema}.SEC_USER(ID); -ALTER TABLE ${ohdsiSchema}.SEC_USER_ROLE ADD CONSTRAINT FK_USER_ROLE_TO_ROLE FOREIGN KEY (ROLE_ID) REFERENCES ${ohdsiSchema}.SEC_ROLE(ID); - --- add SEC_ROLE_PERMISSION table constraints -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT PK_SEC_ROLE_PERMISSION PRIMARY KEY (ID); -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT FK_ROLE_PERMISSION_TO_ROLE FOREIGN KEY (ROLE_ID) REFERENCES ${ohdsiSchema}.SEC_ROLE(ID); -ALTER TABLE ${ohdsiSchema}.SEC_ROLE_PERMISSION ADD CONSTRAINT FK_ROLE_PERMISSION_TO_PERMISSION FOREIGN KEY (PERMISSION_ID) REFERENCES ${ohdsiSchema}.SEC_PERMISSION(ID); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.1.0__conceptsets.sql b/src/main/resources/db/migration/sqlserver/V1.0.1.0__conceptsets.sql deleted file mode 100644 index 846579eb63..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.1.0__conceptsets.sql +++ /dev/null @@ -1,15 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[concept_set] ( - [concept_set_id] INT IDENTITY (1, 1) NOT NULL, - [concept_set_name] VARCHAR (255) NOT NULL -); - -CREATE TABLE [${ohdsiSchema}].[concept_set_item] ( - [concept_set_item_id] INT IDENTITY (1, 1) NOT NULL, - [concept_set_id] INT NOT NULL, - [concept_id] INT NOT NULL, - [is_excluded] INT NOT NULL, - [include_descendants] INT NOT NULL, - [include_mapped] INT NOT NULL -); - - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.1.1.1__penelope_data.sql b/src/main/resources/db/migration/sqlserver/V1.0.1.1.1__penelope_data.sql deleted file mode 100644 index da64783c06..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.1.1.1__penelope_data.sql +++ /dev/null @@ -1,9188 +0,0 @@ -DELETE FROM ${ohdsiSchema}.[drug_labels] -GO -DELETE FROM ${ohdsiSchema}.[CONCEPT_OF_INTEREST] -GO -DELETE FROM ${ohdsiSchema}.[COHORT_STUDY] -GO -SET IDENTITY_INSERT ${ohdsiSchema}.[COHORT_STUDY] ON - -GO -INSERT ${ohdsiSchema}.[COHORT_STUDY] ([cohort_study_id], [cohort_definition_id], [study_type], [study_name], [study_URL]) VALUES (1, 296, 1, N'Treatment Pathways in Chronic Disease', N'http://www.ohdsi.org/web/wiki/doku.php?id=research:treatment_pathways_in_chronic_disease') -GO -INSERT ${ohdsiSchema}.[COHORT_STUDY] ([cohort_study_id], [cohort_definition_id], [study_type], [study_name], [study_URL]) VALUES (2, 296, 1, N'Early Treatment Pathways in Chronic Disease', N'http://www.ohdsi.org/web/wiki/doku.php?id=research:treatment_pathways_in_chronic_disease_12_mos') -GO -INSERT ${ohdsiSchema}.[COHORT_STUDY] ([cohort_study_id], [cohort_definition_id], [study_type], [study_name], [study_URL]) VALUES (3, 296, 1, N'Drug Utilization in Children', N'http://www.ohdsi.org/web/wiki/doku.php?id=research:drugs_in_peds') -GO -INSERT ${ohdsiSchema}.[COHORT_STUDY] ([cohort_study_id], [cohort_definition_id], [study_type], [study_name], [study_URL]) VALUES (4, 293, 1, N'Drug Utilization in Children', N'http://www.ohdsi.org/web/wiki/doku.php?id=research:drugs_in_peds') -GO -INSERT ${ohdsiSchema}.[COHORT_STUDY] ([cohort_study_id], [cohort_definition_id], [study_type], [study_name], [study_URL]) VALUES (5, 293, 2, N'Population-level estimation of comparative risks of Celecoxib versus non-selective NSAIDs', N'http://www.ohdsi.org/web/wiki/doku.php?id=research:celecoxib_vs_nsnsaids') -GO -INSERT ${ohdsiSchema}.[COHORT_STUDY] ([cohort_study_id], [cohort_definition_id], [study_type], [study_name], [study_URL]) VALUES (6, 293, 3, N'Predicting outcomes for new users of celecoxib', N'http://www.ohdsi.org/web/wiki/doku.php?id=research:celecoxib_prediction_models') -GO -SET IDENTITY_INSERT ${ohdsiSchema}.[COHORT_STUDY] OFF -GO -SET IDENTITY_INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ON - -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (1, 4329847, 4185932) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (2, 4329847, 77670) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (3, 192671, 4247120) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (4, 192671, 201340) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (5, 192671, 4266809) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (6, 192359, 4242411) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (7, 197320, 4242411) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (8, 432791, 43021226) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (9, 319835, 316139) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (10, 319835, 4024552) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (11, 316139, 4024552) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (12, 312327, 4329847) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (13, 312327, 4185932) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (14, 197508, 200680) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (15, 4290333, 4174977) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (16, 4170143, 4085100) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (17, 378253, 318736) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (18, 4283893, 4138403) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (19, 312327, 321318) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (20, 4329847, 321318) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (21, 312327, 77670) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (22, 73153, 200680) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (23, 4181583, 257011) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (24, 194984, 137977) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (25, 137977, 194984) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (26, 4245975, 194984) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (27, 312327, 321318) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (28, 312327, 77670) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (29, 319835, 433595) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (30, 319835, 321319) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (31, 4181583, 4085100) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (32, 4283893, 4138403) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (33, 316139, 433595) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (34, 316139, 321319) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (35, 4181583, 254761) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (36, 437312, 192671) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (37, 381316, 381591) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (38, 4030518, 4242411) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (39, 198124, 4242411) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (40, 4220631, 4242411) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (41, 4152839, 4242411) -GO -INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] ([id], [concept_id], [concept_of_interest_id]) VALUES (42, 4148381, 441202) -GO -SET IDENTITY_INSERT ${ohdsiSchema}.[CONCEPT_OF_INTEREST] OFF -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1, N'A+D DIAPER RASH (Topical)', 916662, N'dimethicone', N'297e62e4-5282-4733-b3f7-f63a16e8ddee', CAST(N'2011-07-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2, N'Abacavir (Oral Pill)', 1736971, N'abacavir', N'73ce0bc5-43e2-c57f-0a6a-bdaf9fbaa3c2', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3, N'Abacavir/Dolutegravir/lamiVUDine (Oral Pill)', 1736971, N'abacavir', N'2997739a-aa91-42aa-a206-a70e2db7b84f', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4, N'Abacavir/lamiVUDine (Oral Pill)', 1736971, N'abacavir', N'080e3423-5962-4465-8e78-cd8793699336', CAST(N'2010-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (5, N'Abacavir/lamiVUDine/Zidovudine (Oral Pill)', 1736971, N'abacavir', N'3354e50f-4dc5-413f-b5ae-87353ab8913d', CAST(N'2014-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (6, N'ABELCET (Injectable)', 19056402, N'amphotericin B liposomal', N'5587db37-f21a-4a39-a319-e1077032ced9', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (7, N'ABILIFY (Oral Pill)', 757688, N'aripiprazole', N'630f15ee-b839-46d5-9e89-06af3d47e8f5', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (8, N'AbobotulinumtoxinA (Injectable)', 40165377, N'abobotulinumtoxinA', N'71313a04-1349-4c26-b840-a39e4a3ddaed', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (9, N'ABREVA (Topical)', 980955, N'docosanol', N'c39b38a7-dcdd-4c32-8f35-b565c4d3cec6', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (10, N'Absidia ramosa extract (Injectable)', 40227558, N'Absidia ramosa extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (11, N'ABSORBINE (Transdermal)', 901656, N'Menthol', N'4c80d544-ecb7-4994-bbc0-698970f85549', CAST(N'2014-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (12, N'ABSORBINE JR. (Topical)', 901656, N'Menthol', N'e9e83221-84c5-49a7-9733-a9ccd97a43dd', CAST(N'2014-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (13, N'ABSORICA (Oral Pill)', 984232, N'Isotretinoin', N'8d54aab5-3349-4a41-8533-0a566fd7bbaa', CAST(N'2014-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (14, N'ABSTRAL (Sublingual)', 1154029, N'Fentanyl', N'4906457e-30ad-4da7-b3ac-bb9e6651a670', CAST(N'2015-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (15, N'Acacia longifolia pollen extract (Injectable)', 40170299, N'Acacia longifolia pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (16, N'Acamprosate (Oral Pill)', 19043959, N'acamprosate', N'fe6f754f-62b4-4c86-805d-221332409516', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (17, N'ACANYA (Topical)', 918172, N'Benzoyl Peroxide', N'3dcd2c96-72b1-4a9f-b65c-08198d63b7df', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (18, N'Acarbose (Oral Pill)', 1529331, N'Acarbose', N'656769ee-e292-4950-83df-a38e6b1a9d6e', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (19, N'ACCOLATE (Oral Pill)', 1111706, N'zafirlukast', N'4bf90772-58d5-456d-ad1c-fc448cc5a231', CAST(N'2010-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (20, N'ACCUPRIL (Oral Pill)', 1331235, N'quinapril', N'a2de05b9-d1aa-4fbb-a9a3-6918cc306f78', CAST(N'2013-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (21, N'Acebutolol (Oral Pill)', 1319998, N'Acebutolol', N'7eee95bf-0452-4d6e-9712-33403768695a', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (22, N'ACEON (Oral Pill)', 1373225, N'Perindopril', N'340846a3-896e-40bf-a4d0-419922df71a1', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (23, N'ACEPHEN (Rectal)', 1125315, N'Acetaminophen', N'1922c613-a8e2-4cf2-ab8b-bbc65c394309', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (24, N'ACETADOTE (Injectable)', 1139042, N'Acetylcysteine', N'472f158a-5ab9-4308-8e49-1116e6ea3d39', CAST(N'2013-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (25, N'ACETADRYL (Oral Pill)', 1125315, N'Acetaminophen', N'7731331b-4486-438b-90a7-f0b8d5a3a593', CAST(N'2013-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (26, N'Acetaminophen (Chewable)', 1125315, N'Acetaminophen', N'5c0dbae2-328b-42b6-a8b6-55009f3c78e5', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (27, N'Acetaminophen (Oral Disintegrating)', 1125315, N'Acetaminophen', N'1bd01140-0ba7-4e22-be3b-664186aaddb9', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (28, N'Acetaminophen (Oral Liquid)', 1125315, N'Acetaminophen', N'3d866a79-481f-4a63-84ba-f049ce83da8d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (29, N'Acetaminophen (Oral Pill)', 1125315, N'Acetaminophen', N'05234545-b1c1-4bd2-bd83-34860b6f5691', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (30, N'Acetaminophen (Rectal)', 1125315, N'Acetaminophen', N'daaad04e-4fe8-40ce-9022-1115e9f3a42a', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (31, N'Acetaminophen/Aspirin (Oral Pill)', 1125315, N'Acetaminophen', N'4b77be54-e962-4e6b-a244-e3d53a8fecd9', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (32, N'Acetaminophen/Aspirin (Oral Powder)', 1125315, N'Acetaminophen', N'055d0288-61d4-48bc-b91f-6ecc1969beb8', CAST(N'2013-11-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (33, N'Acetaminophen/Aspirin/Caffeine (Oral Pill)', 1125315, N'Acetaminophen', N'f49d3755-bb1b-4b79-baa5-52ad16b2ea64', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (34, N'Acetaminophen/Aspirin/Caffeine (Oral Powder)', 1125315, N'Acetaminophen', N'16d774cc-4247-4bf8-9b5a-c338ffebda3d', CAST(N'2013-11-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (35, N'Acetaminophen/Aspirin/Caffeine/Salicylamide (Oral Pill)', 1125315, N'Acetaminophen', N'9fe82229-cc3e-4d79-a448-014fe3d0055b', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (36, N'Acetaminophen/Aspirin/DiphenhydrAMINE (Oral Pill)', 1125315, N'Acetaminophen', N'b3812d27-40af-40d7-864a-dfa4ae34cb9e', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (37, N'Acetaminophen/Butalbital (Oral Pill)', 1125315, N'Acetaminophen', N'2cddfd28-6ce7-4708-8f11-6d4dc33fae5b', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (38, N'Acetaminophen/Butalbital/Caffeine (Oral Liquid)', 1125315, N'Acetaminophen', N'bc990056-c75f-4b0b-87f8-4fb9bdcd533c', CAST(N'2015-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (39, N'Acetaminophen/Butalbital/Caffeine (Oral Pill)', 1125315, N'Acetaminophen', N'ea5b9ffe-3cda-405e-8f75-3fd4a64c9a35', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (40, N'Acetaminophen/Butalbital/Caffeine/Codeine (Oral Pill)', 1125315, N'Acetaminophen', N'7fd761e6-64fe-44cc-8b74-10ce31ccfd66', CAST(N'2014-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (41, N'Acetaminophen/Caffeine (Oral Pill)', 1125315, N'Acetaminophen', N'cc17ee50-1401-4b31-8c01-e153b4291c7a', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (42, N'Acetaminophen/Caffeine/Dihydrocodeine (Oral Pill)', 1125315, N'Acetaminophen', N'3ad82b67-f041-46df-8518-10debc35a5ed', CAST(N'2007-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (43, N'Acetaminophen/Caffeine/Isometheptene (Oral Pill)', 1125315, N'Acetaminophen', N'1d157217-d307-423c-8f50-965b23881330', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (44, N'Acetaminophen/Caffeine/Pyrilamine (Oral Pill)', 1125315, N'Acetaminophen', N'c9395f86-dfb8-43bb-9f6a-9b948810b265', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (45, N'Acetaminophen/Chlophedianol/Pyrilamine (Oral Liquid)', 1125315, N'Acetaminophen', N'7c7dbac3-dd9e-d03a-1303-3d2a207c751b', CAST(N'2014-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (46, N'Acetaminophen/Chlorpheniramine (Oral Pill)', 1125315, N'Acetaminophen', N'763a5334-a741-4678-9947-603776622450', CAST(N'2015-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (47, N'Acetaminophen/Chlorpheniramine/Dextromethorphan (Oral Liquid)', 1125315, N'Acetaminophen', N'b0ee7a0e-e2eb-4382-8fde-d002a6ac883a', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (48, N'Acetaminophen/Chlorpheniramine/Dextromethorphan (Oral Pill)', 1125315, N'Acetaminophen', N'127e7e43-32dd-4311-817c-57b3988ba1da', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (49, N'Acetaminophen/Chlorpheniramine/Dextromethorphan/Phenylephrine (Effervescent)', 1125315, N'Acetaminophen', N'c7e71ace-c911-46cd-8c92-01385c2f7122', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (50, N'Acetaminophen/Chlorpheniramine/Dextromethorphan/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'a45c4953-b9be-4e04-b82a-f3419d27c129', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (51, N'Acetaminophen/Chlorpheniramine/Dextromethorphan/Pseudoephedrine (Oral Pill)', 1125315, N'Acetaminophen', N'58a7668f-4702-42a1-a1ca-443c979ea0db', CAST(N'2013-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (52, N'Acetaminophen/Chlorpheniramine/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'ab384d3d-fb33-4aec-9393-822b199e58b6', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (53, N'Acetaminophen/Chlorpheniramine/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'f466c660-69eb-4581-81ff-1499fa421d8b', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (54, N'Acetaminophen/Chlorpheniramine/Pseudoephedrine (Oral Pill)', 1125315, N'Acetaminophen', N'0a4ace8c-562e-43af-9efb-d323ee4c22ab', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (55, N'Acetaminophen/Codeine (Oral Liquid)', 1125315, N'Acetaminophen', N'95ac6875-6b14-4cde-8efb-80704e39b8d8', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (56, N'Acetaminophen/Codeine (Oral Pill)', 1125315, N'Acetaminophen', N'61f11bc0-02e7-47ea-a05b-39c590844bf9', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (57, N'Acetaminophen/Dexbrompheniramine (Oral Pill)', 1125315, N'Acetaminophen', N'1bd74da3-9c5b-46e9-b599-999cd6eac1d8', CAST(N'2014-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (58, N'Acetaminophen/Dextromethorphan (Oral Liquid)', 1125315, N'Acetaminophen', N'9469104e-f06c-481c-a4b7-2fd16cd0db01', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (59, N'Acetaminophen/Dextromethorphan/Doxylamine (Oral Liquid)', 1125315, N'Acetaminophen', N'f985b585-fb62-4a0e-8531-47090c9f8138', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (60, N'Acetaminophen/Dextromethorphan/Doxylamine (Oral Pill)', 1125315, N'Acetaminophen', N'f2b43b3f-c272-49c7-a601-954e2e4865d6', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (61, N'Acetaminophen/Dextromethorphan/Doxylamine/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'8b9211a6-5e8a-48e9-b3fb-ad69dbc758d6', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (62, N'Acetaminophen/Dextromethorphan/guaiFENesin/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'd4bcfabb-a054-4f53-8dc9-d361a03558b8', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (63, N'Acetaminophen/Dextromethorphan/guaiFENesin/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'f4d1cd98-3b1f-452d-9f11-2a8d4c5b83d5', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (64, N'Acetaminophen/Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Liquid)', 1125315, N'Acetaminophen', N'e71c1e5b-9783-4481-b163-0a9877a5031b', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (65, N'Acetaminophen/Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Pill)', 1125315, N'Acetaminophen', N'f38a784b-cfc3-4238-9cd3-56c1dba94e6f', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (66, N'Acetaminophen/Dextromethorphan/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'ce1b51d0-25b3-43d9-924d-293b3b5eaeb2', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (67, N'Acetaminophen/Dextromethorphan/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'90bdcea8-c896-49ba-894c-31b1281a512d', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (68, N'Acetaminophen/Dichloralphenazone/Isometheptene (Oral Pill)', 1125315, N'Acetaminophen', N'08442901-bb74-4516-9574-86b3dfeeabb1', CAST(N'2015-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (69, N'Acetaminophen/DiphenhydrAMINE (Oral Liquid)', 1125315, N'Acetaminophen', N'5b0a3df3-2e9f-4b84-8f37-ed6051e96569', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (70, N'Acetaminophen/DiphenhydrAMINE (Oral Pill)', 1125315, N'Acetaminophen', N'2e51c2ef-80d3-4ad0-9ab6-5f70e8d48d67', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (71, N'Acetaminophen/DiphenhydrAMINE (Oral Powder)', 1125315, N'Acetaminophen', N'db5d6c2b-688e-4e88-a42d-0fa2b0d8140b', CAST(N'2013-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (72, N'Acetaminophen/DiphenhydrAMINE/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'e96d19bc-5786-4bc1-b25e-2c9f4f385d6d', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (73, N'Acetaminophen/DiphenhydrAMINE/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'ae33d924-9262-41f6-964f-d8b567b3d903', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (74, N'Acetaminophen/Doxylamine/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'119ee51b-6a7f-451b-bf69-ecb92c6a352b', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (75, N'Acetaminophen/guaiFENesin/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'04c6bb6a-d2f8-4322-afba-e240e8090176', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (76, N'Acetaminophen/guaiFENesin/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'1b4e87f8-3f9e-4865-9128-527d2d621593', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (77, N'Acetaminophen/guaiFENesin/Pseudoephedrine (Oral Pill)', 1125315, N'Acetaminophen', N'd9ce633a-6850-4c24-923f-ded745356e43', CAST(N'2011-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (78, N'Acetaminophen/HYDROcodone (Oral Liquid)', 1125315, N'Acetaminophen', N'00ff75bc-aebe-4c55-adea-1c49cf1addb3', CAST(N'2014-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (79, N'Acetaminophen/HYDROcodone (Oral Pill)', 1125315, N'Acetaminophen', N'ab6b4c39-b2d4-4c63-8821-b0560f781287', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (80, N'Acetaminophen/Magnesium Salicylate (Oral Pill)', 1125315, N'Acetaminophen', N'b0a91a7f-bef4-47c8-9813-66279997b173', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (81, N'Acetaminophen/Magnesium Salicylate/Pamabrom (Oral Pill)', 1125315, N'Acetaminophen', N'5f2e9d2a-4c7b-4339-8be7-3711a73fdbe9', CAST(N'2012-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (82, N'Acetaminophen/oxyCODONE (Oral Liquid)', 1125315, N'Acetaminophen', N'8f0eccce-728f-4039-959b-4887ae32325f', CAST(N'2015-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (83, N'Acetaminophen/oxyCODONE (Oral Pill)', 1125315, N'Acetaminophen', N'94679f29-d63a-41a5-bdda-3aa3fc2db531', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (84, N'Acetaminophen/Pamabrom (Oral Pill)', 1125315, N'Acetaminophen', N'43949fe7-3764-4d74-959f-8d3ca06fa06e', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (85, N'Acetaminophen/Pamabrom/Pyrilamine (Oral Pill)', 1125315, N'Acetaminophen', N'a7424b9f-f2c0-4289-962d-99c2354c5a60', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (86, N'Acetaminophen/Pentazocine (Oral Pill)', 1125315, N'Acetaminophen', N'62a055f3-a58b-446d-9476-af6d36956eaf', CAST(N'2011-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (87, N'Acetaminophen/Pheniramine/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'4c9a91d9-c8fa-4845-ab06-e3f760acc798', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (88, N'Acetaminophen/Phenylephrine (Oral Liquid)', 1125315, N'Acetaminophen', N'7310f8f2-aaba-45c0-8add-d59b8fb7edda', CAST(N'2011-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (89, N'Acetaminophen/Phenylephrine (Oral Pill)', 1125315, N'Acetaminophen', N'cee0a134-3dc3-4d2f-a8e5-2916c3e3d7e0', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (90, N'Acetaminophen/Phenyltoloxamine (Oral Liquid)', 1125315, N'Acetaminophen', N'738e7767-42de-4076-acf2-9152484c2007', CAST(N'2012-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (91, N'Acetaminophen/Phenyltoloxamine (Oral Pill)', 1125315, N'Acetaminophen', N'8f1bb6e5-3de5-48b4-bf44-d4e881be5ab0', CAST(N'2012-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (92, N'Acetaminophen/Propoxyphene (Oral Pill)', 1125315, N'Acetaminophen', N'f2bc3c76-fd41-4a79-aa5d-3eb45133c1ee', CAST(N'2011-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (93, N'Acetaminophen/Propoxyphene XR (Oral Pill)', 1125315, N'Acetaminophen', N'4cf33260-5a78-4207-b113-a9d6771811a3', CAST(N'2008-11-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (94, N'Acetaminophen/Pseudoephedrine (Oral Pill)', 1125315, N'Acetaminophen', N'31e9e3b6-1680-41c1-bbe7-d6dd966b5886', CAST(N'2012-08-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (95, N'Acetaminophen/Pyrilamine (Oral Pill)', 1125315, N'Acetaminophen', N'b811e4f6-7cd0-403c-a44c-7c6c6787c15d', CAST(N'2014-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (96, N'Acetaminophen/traMADol (Oral Pill)', 1125315, N'Acetaminophen', N'ed529b7d-bda9-8333-9801-39a16ea61745', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (97, N'acetaZOLAMIDE (Injectable)', 929435, N'Acetazolamide', N'60f656ff-97b1-4a89-99af-8100483c2bac', CAST(N'2014-12-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (98, N'acetaZOLAMIDE (Oral Pill)', 929435, N'Acetazolamide', N'ceb5cac3-bbfb-42fa-8b29-c0ef5ed0913c', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (99, N'Acetic Acid (Irrigation)', 929549, N'Acetic Acid', N'41bc12af-fac5-4ac1-b907-dcb3e35a054c', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (100, N'Acetic Acid (Otic)', 929549, N'Acetic Acid', N'a8c12387-4b2b-49c2-b9c5-112ffb133950', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (101, N'Acetic Acid/Hydrocortisone (Otic)', 929549, N'Acetic Acid', N'ffd1edc1-2f40-4b0a-a53a-9fb53b8d3184', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (102, N'Acetic Acid/Oxyquinoline (Vaginal)', 929549, N'Acetic Acid', N'77237c50-aeb5-44a0-a1e6-ce1551b49f75', CAST(N'2013-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (103, N'Acetylcholine (Injectable)', 19037624, N'Acetylcholine', N'e701ef07-9499-4b56-931f-f4eb3eedbe24', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (104, N'Acetylcysteine (Inhalant)', 1139042, N'Acetylcysteine', N'75b48fab-cef6-465c-a1e0-d085b3988bc4', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (105, N'Acetylcysteine (Injectable)', 1139042, N'Acetylcysteine', N'472f158a-5ab9-4308-8e49-1116e6ea3d39', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (106, N'ACID GONE (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'3d353a92-92f1-4304-8895-31d39dccd88c', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (107, N'ACIPHEX (Oral Pill)', 911735, N'rabeprazole', N'001dd372-2692-4d6f-a71c-95e7056349a9', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (108, N'Acitretin (Oral Pill)', 929638, N'Acitretin', N'fb979cda-6a34-496e-b4bc-b17782b67821', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (109, N'ACLOVATE (Topical)', 905151, N'Alclometasone', N'23536d6f-6f74-6820-4372-696d696e616c', CAST(N'2011-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (110, N'ACNEVIR (Soap)', 964407, N'Salicylic Acid', N'c82e9b1b-f9f3-417c-b547-95c9b4c19df8', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (111, N'Acrivastine/Pseudoephedrine (Oral Pill)', 1140123, N'acrivastine', N'd86c6a13-9e5f-43c2-92f5-c7ed7bfcedfc', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (112, N'ACT FLUORIDE RINSE (Mouthwash)', 19069022, N'Sodium Fluoride', N'e3494d8a-2aad-4212-89ce-18dddcbe059e', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (113, N'ACTHAR (Injectable)', 1541079, N'Corticotropin', N'7b48ddec-e815-45f4-9ca0-5c0daaf56f30', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (114, N'ACTHIB (Injectable)', 529118, N'Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine', N'8143d01c-4911-40db-95b2-47f3ebea2a7d', CAST(N'2014-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (115, N'ACTICLATE (Oral Pill)', 1738521, N'Doxycycline', N'115f1010-882f-11e3-baa7-0800200c9a66', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (116, N'ACTIDOSE (Oral Liquid)', 1701928, N'Activated Charcoal', N'61801c3a-caf2-4bb7-a56a-dc2ee007eccb', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (117, N'ACTIGALL (Oral Pill)', 988095, N'Ursodeoxycholate', N'aeb6c8c8-4dec-4574-8f26-b6b701b04b25', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (118, N'ACTIMMUNE (Injectable)', 1380191, N'Interferon gamma-1b', N'498b2231-65e8-4b27-947b-8d1f6f91289c', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (119, N'ACTIQ (Oral Lozenge)', 1154029, N'Fentanyl', N'90b94524-f913-48b3-3771-7b2fcffd888a', CAST(N'2012-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (120, N'ACTIVASE (Injectable)', 1347450, N'Alteplase', N'c669f77c-fa48-478b-a14b-80b20a0139c2', CAST(N'2015-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (121, N'Activated Charcoal (Oral Liquid)', 1701928, N'Activated Charcoal', N'df1226cb-f2a8-4e91-b265-a08765f7683f', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (122, N'ACTIVON ARTHRITIS (Topical)', 19069019, N'Histamine', N'd123deae-d9ef-45ce-81ed-2d79384b1298', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (123, N'ACTONEL (Oral Pill)', 1516800, N'Risedronate', N'4423d70a-b120-4653-bcf3-0c5ea8b97b0e', CAST(N'2010-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (124, N'ACTOPLUS MET (Oral Pill)', 1503297, N'Metformin', N'f5c534e8-656c-406d-b3dc-b562576ba4eb', CAST(N'2011-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (125, N'ACTOS (Oral Pill)', 1525215, N'pioglitazone', N'd2ddc491-88a9-4063-9150-443b4fa4330c', CAST(N'2013-04-02 00:00:00.000' AS DateTime), 296, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (126, N'ACULAR (Ophthalmic)', 1136980, N'Ketorolac', N'5ba45168-ad5d-4ea9-bd85-fc2fa2b13dad', CAST(N'2012-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (127, N'Acyclovir (Buccal)', 1703687, N'Acyclovir', N'00f7425a-6236-47ff-a087-f28f8cdb1aec', CAST(N'2014-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (128, N'Acyclovir (Injectable)', 1703687, N'Acyclovir', N'badf347b-eeee-4239-9c74-966f262925aa', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (129, N'Acyclovir (Oral Liquid)', 1703687, N'Acyclovir', N'62bdcf22-51f3-4c81-9bd4-a2dc48bec580', CAST(N'2014-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (130, N'Acyclovir (Oral Pill)', 1703687, N'Acyclovir', N'ad26cb5f-123f-4438-ae8d-4c2a40966a38', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (131, N'Acyclovir (Topical)', 1703687, N'Acyclovir', N'ce3d5e8b-9401-40be-8ce7-4ea42113f4ab', CAST(N'2015-06-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (132, N'Acyclovir/Hydrocortisone (Topical)', 1703687, N'Acyclovir', N'3b6ac164-0f1e-4f36-94a1-1fdb07d710f5', CAST(N'2014-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (133, N'ADAGEN (Injectable)', 581480, N'pegademase bovine', N'9880b900-ea23-11dc-ad56-0002a5d5c51b', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (134, N'Adapalene (Topical)', 981774, N'adapalene', N'cabba2c1-cf07-46aa-a2c3-1b815517b16b', CAST(N'2015-02-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (135, N'Adapalene/Benzoyl Peroxide (Topical)', 981774, N'adapalene', N'67002593-3bd3-4e91-a48f-9f7483e579a0', CAST(N'2012-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (136, N'ADDERALL (Oral Pill)', 714785, N'Amphetamine', N'f22635fe-821d-4cde-aa12-419f8b53db81', CAST(N'2015-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (137, N'Adefovir (Oral Pill)', 1729323, N'adefovir', N'e047f3b2-feae-4c5e-9d07-1fefb4c0ec25', CAST(N'2013-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (138, N'Adenovirus Type 4 Vaccine Live (Oral Pill)', 40237613, N'Adenovirus Type 4 Vaccine Live', N'c7d0b43c-7250-4809-8a05-fcde5862f076', CAST(N'2014-06-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (139, N'Adenovirus Type 7 Vaccine Live (Oral Pill)', 40237617, N'Adenovirus Type 7 Vaccine Live', N'c7d0b43c-7250-4809-8a05-fcde5862f076', CAST(N'2014-06-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (140, N'ADIPEX-P (Oral Pill)', 735340, N'Phentermine', N'b335e637-dca3-45c8-ad12-7eb03be2caaa', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (141, N'ADOXA (Oral Pill)', 1738521, N'Doxycycline', N'0cecc43f-cc40-4c48-9e43-ae8d77af4e49', CAST(N'2013-05-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (142, N'ADRENALIN (Injectable)', 1343916, N'Epinephrine', N'3b7a4364-668d-4eb2-a20c-04adc35aabe4', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (143, N'ADVATE (Injectable)', 1352213, N'Factor VIII', N'80fa03d2-cd4c-4155-9b57-1396c4fa42da', CAST(N'2015-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (144, N'ADVIL (Chewable)', 1177480, N'Ibuprofen', N'07d4c400-b182-92f7-7574-9e0e94c39cce', CAST(N'2014-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (145, N'ADVIL (Oral Liquid)', 1177480, N'Ibuprofen', N'3079d932-afb2-94fe-f4ba-a3d8b5198fce', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (146, N'ADVIL (Oral Pill)', 1177480, N'Ibuprofen', N'e4a6219d-4ad4-0119-4cf8-7fc39b4b5979', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (147, N'ADVIL CHILDREN''S COLD (Oral Liquid)', 1177480, N'Ibuprofen', N'f63d1eb1-b51d-de3f-faea-6c4d4b0069c3', CAST(N'2010-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (148, N'ADVIL COLD AND SINUS (Oral Pill)', 1177480, N'Ibuprofen', N'fac22a47-f0de-4505-fd8a-768430cda0c1', CAST(N'2012-03-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (149, N'ADVIL CONGESTION RELIEF (Oral Pill)', 1177480, N'Ibuprofen', N'd0002708-271d-98a6-44ca-50906ea18e10', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (150, N'ADVIL PM (Oral Pill)', 1129625, N'Diphenhydramine', N'b876bb40-a38b-445a-bc8a-466b3bfe166d', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (151, N'Afatinib (Oral Pill)', 43533090, N'Afatinib', N'fd638e5e-8032-e7ca-0179-95e96ab5d387', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (152, N'AFREZZA (Inhalant)', 1596977, N'Regular Insulin, Human', N'76fb46f1-82db-40da-ba19-b3a7b0bd78ff', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (153, N'AFRIN (Nasal)', 925636, N'Oxymetazoline', N'89c165ba-3ad5-49b5-a5bb-423dc8e15bad', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (154, N'AGGRASTAT (Injectable)', 19017067, N'tirofiban', N'fe0ced75-ccbf-4d2e-bd0d-b57e60ab913f', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (155, N'AGGRENOX (Oral Pill)', 1112807, N'Aspirin', N'e729d829-4bd0-4074-85ea-e0f9f5d7cdb5', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (156, N'AK-CON (Ophthalmic)', 914533, N'Naphazoline', N'297f0888-729c-4ce6-8779-6b239abf3c93', CAST(N'2014-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (157, N'ALA-HIST AC (Oral Liquid)', 1201620, N'Codeine', N'ac3d3783-0889-4aab-9d2e-fab799a25f20', CAST(N'2012-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (158, N'ALA-HIST IR (Oral Pill)', 1188052, N'dexbrompheniramine', N'0d203b5c-8b10-428b-8703-17be6b4ce6eb', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (159, N'ALA-QUIN (Topical)', 980867, N'Clioquinol', N'd2ae30c6-ad64-47ed-b371-778eaebeeddf', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (160, N'Alatrofloxacin (Injectable)', 19018154, N'alatrofloxacin', N'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', CAST(N'2006-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (161, N'ALAWAY (Ophthalmic)', 986117, N'Ketotifen', N'e4c310b5-1dba-4ddc-bc90-b27ebc765871', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (162, N'Albendazole (Chewable)', 1753745, N'Albendazole', N'e8941166-b77d-45aa-a6e8-04f1c0afd845', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (163, N'Albendazole (Oral Pill)', 1753745, N'Albendazole', N'e8941166-b77d-45aa-a6e8-04f1c0afd845', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (164, N'ALBENZA (Oral Pill)', 1753745, N'Albendazole', N'e8941166-b77d-45aa-a6e8-04f1c0afd845', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (165, N'ALBUKED (Injectable)', 1344143, N'Albumin Human, USP', N'0df480bb-be5e-0e7f-1331-fd4de81d33a6', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (166, N'Albumin Human, USP (Injectable)', 1344143, N'Albumin Human, USP', N'2eeb6b69-2013-c0a2-5e2f-0365114d41b4', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (167, N'ALBUMINAR-20 (Injectable)', 1344143, N'Albumin Human, USP', N'a901aa63-3347-4a12-8c74-e7cdd6edbddc', CAST(N'2013-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (168, N'ALBURX (Injectable)', 1344143, N'Albumin Human, USP', N'ad74b7f5-b380-47ab-b19d-eef92c8eb7a4', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (169, N'Albuterol (Inhalant)', 1154343, N'Albuterol', N'f5c2fe10-c61f-4cbe-bc45-7ab14baa691c', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (170, N'Albuterol (Oral Liquid)', 1154343, N'Albuterol', N'8d215fe3-1cf6-4bb3-b005-75f1a9d62235', CAST(N'2015-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (171, N'Albuterol (Oral Pill)', 1154343, N'Albuterol', N'87b8cd3c-2849-4b50-b63e-9ea379165c07', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (172, N'Albuterol/Ipratropium (Inhalant)', 1154343, N'Albuterol', N'afcf38bf-b183-4569-b43f-25deb97f6693', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (173, N'Alcaftadine (Ophthalmic)', 40224159, N'alcaftadine', N'17d37e8d-7825-424b-b6ca-0a85d0bf4694', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (174, N'ALCAINE (Ophthalmic)', 929504, N'proparacaine', N'0c0fa0bf-977d-4539-b8dc-54c187c5b094', CAST(N'2011-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (175, N'Alclometasone (Topical)', 905151, N'Alclometasone', N'0c2fb9a0-5586-4428-b705-5fa179a73e08', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (176, N'ALCORTIN (Topical)', 975125, N'Hydrocortisone', N'995ae132-8e37-4fda-b353-ce79ab9d0bf4', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (177, N'ALCORTIN A (Topical)', 958994, N'Aloe Polysaccharide', N'3f2abee4-2841-4725-8c11-aafb35ba6bee', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (178, N'ALDARA (Topical)', 981691, N'imiquimod', N'0c3aed27-7b3f-442e-9f60-f2f5c672c85d', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (179, N'Alemtuzumab (Injectable)', 1312706, N'alemtuzumab', N'4f5f7255-7abc-4328-bd1a-ceaf139ef3e0', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (180, N'Alendronate (Oral Liquid)', 1557272, N'Alendronate', N'307a2b03-72c1-4765-acab-c3d3d60b2b78', CAST(N'2013-05-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (181, N'Alendronate (Oral Pill)', 1557272, N'Alendronate', N'8751ca1c-1d4d-449a-8021-4106e6a08703', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (182, N'Alendronate/Cholecalciferol (Oral Pill)', 1557272, N'Alendronate', N'd4a71df1-7488-46a2-8ded-dd0db56de618', CAST(N'2011-12-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (183, N'ALEVAZOL (Topical)', 1000632, N'Clotrimazole', N'edd8da89-0b83-4de6-a166-7451d0084169', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (184, N'ALEVE (Oral Pill)', 1115008, N'Naproxen', N'f753a557-6a26-4b5b-bb1e-d9f2b621b846', CAST(N'2014-09-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (185, N'ALEVE PM (Oral Pill)', 1129625, N'Diphenhydramine', N'82891458-ab0d-459a-8602-dcebd22c3010', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (186, N'ALFENTA (Injectable)', 19059528, N'Alfentanil', N'bb56df52-5abf-47dc-ab8d-902cfe19ccb2', CAST(N'2008-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (187, N'Alfentanil (Injectable)', 19059528, N'Alfentanil', N'bb56df52-5abf-47dc-ab8d-902cfe19ccb2', CAST(N'2014-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (188, N'Alglucosidase alfa (Injectable)', 19088328, N'alglucosidase alfa', N'd6bfbc45-2d34-439e-8aad-59ee2d53d4df', CAST(N'2015-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (189, N'ALICLEN (Shampoo)', 964407, N'Salicylic Acid', N'729fba61-cc44-4110-85bd-4743161dc6c0', CAST(N'2012-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (190, N'ALINIA (Oral Liquid)', 1715315, N'nitazoxanide', N'56b1575a-dff4-4c5a-a159-2f858e7a0cb8', CAST(N'2013-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (191, N'ALINIA (Oral Pill)', 1715315, N'nitazoxanide', N'56b1575a-dff4-4c5a-a159-2f858e7a0cb8', CAST(N'2013-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (192, N'Aliskiren (Oral Pill)', 1317967, N'aliskiren', N'4c222831-90af-4336-8bf6-5628ddf24326', CAST(N'2012-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (193, N'Aliskiren/Hydrochlorothiazide (Oral Pill)', 1317967, N'aliskiren', N'40d12d97-152d-4fea-bc59-b69e5c29fde2', CAST(N'2010-11-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (194, N'Alitretinoin (Topical)', 941052, N'alitretinoin', N'9cf04dad-e312-4b8f-a297-1e002d43e151', CAST(N'2006-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (195, N'ALKA-SELTZER (Effervescent)', 1112807, N'Aspirin', N'73e85be6-1236-453b-b41c-37381a054773', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (196, N'ALKA-SELTZER FRUIT CHEWS (Chewable)', 19035704, N'Calcium Carbonate', N'e09648f2-4b46-4461-8554-9c4866650f90', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (197, N'ALKA-SELTZER HEARTBURN RELIEF (Effervescent)', 950435, N'Citric Acid', N'672106ae-9e27-4173-b7b7-1f5494643673', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (198, N'ALKA-SELTZER PLUS ALLERGY (Oral Pill)', 1129625, N'Diphenhydramine', N'3e8446cc-5cd9-44e6-8bcd-125a61cd5a41', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (199, N'ALKA-SELTZER PLUS MUCUS AND CONGESTION (Oral Pill)', 1119510, N'Dextromethorphan', N'7b6c90cc-91a8-4fbc-832b-c9eb38a4ffc8', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (200, N'ALKERAN (Injectable)', 1301267, N'Melphalan', N'9706e9a1-96ab-46b8-8846-32ee9d756b1d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (201, N'ALKERAN (Oral Pill)', 1301267, N'Melphalan', N'ff913271-0090-4832-a0fe-5154fe8f97b9', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (202, N'ALKUMS (Chewable)', 19035704, N'Calcium Carbonate', N'7451cd9f-1723-46d0-837e-8dc48bfb6bba', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (203, N'Allantoin (Topical)', 966376, N'Allantoin', N'5e767dda-b24e-49f4-8323-d429e70e2f6f', CAST(N'2015-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (204, N'Allantoin/DiphenhydrAMINE (Topical)', 966376, N'Allantoin', N'5375b99c-ad91-409f-850d-9ea0003b32d3', CAST(N'2013-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (205, N'Allantoin/Lidocaine/Petrolatum (Transdermal)', 966376, N'Allantoin', N'26911234-231b-4867-8fa6-3458a352a774', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (206, N'ALLEGRA (Oral Disintegrating)', 1153428, N'fexofenadine', N'06115cea-5a44-409d-85ed-bb71743491c1', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (207, N'ALLEGRA (Oral Liquid)', 1153428, N'fexofenadine', N'7c25b695-bbed-4ad1-aa47-de47091bc808', CAST(N'2012-05-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (208, N'ALLEGRA (Oral Pill)', 1153428, N'fexofenadine', N'b82d993a-16ff-4037-a182-7010de8e1cdd', CAST(N'2015-04-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (209, N'ALLEGRA COOLING RELIEF ANTI-ITCH (Topical)', 966376, N'Allantoin', N'5375b99c-ad91-409f-850d-9ea0003b32d3', CAST(N'2013-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (210, N'ALLER-CHLOR (Oral Liquid)', 1192710, N'Chlorpheniramine', N'3065bc51-c210-483b-876d-14a4d060bdec', CAST(N'2011-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (211, N'ALLER-CHLOR (Oral Pill)', 1192710, N'Chlorpheniramine', N'04ca3806-72be-47d4-9fea-5b0dee087683', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (212, N'ALLERHIST-1 (Oral Pill)', 1197677, N'Clemastine', N'02201bdb-58b9-4662-a2c0-5ff3efa4a1fc', CAST(N'2010-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (213, N'ALLER-TEC (Oral Liquid)', 1149196, N'Cetirizine', N'9a571e0c-480a-454d-bd2d-33b6a6df6c32', CAST(N'2012-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (214, N'ALLFEN DM REFORMULATED JUL 2008 (Oral Pill)', 1119510, N'Dextromethorphan', N'17e44510-a6d3-479c-9ebc-20302dcb04cd', CAST(N'2011-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (215, N'ALLI (Oral Pill)', 741530, N'orlistat', N'a2d3bd73-f3af-4ea5-a57c-66b0004cfe4f', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (216, N'Allopurinol (Injectable)', 1167322, N'Allopurinol', N'10cc918f-aa44-415b-932d-2404695ac449', CAST(N'2014-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (217, N'Allopurinol (Oral Pill)', 1167322, N'Allopurinol', N'4ed35cc1-2648-4659-baa6-b8f5879bcad9', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (218, N'Allscale pollen extract (Injectable)', 40171580, N'Allscale pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (219, N'ALMACONE (Chewable)', 985247, N'Aluminum Hydroxide', N'5035a3c0-d7e0-4c77-8b26-7058b6f88029', CAST(N'2015-06-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (220, N'Almotriptan (Oral Pill)', 1103552, N'almotriptan', N'9129bb95-7846-4ed7-bd03-0c17d8963447', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (221, N'ALOCRIL (Ophthalmic)', 1114620, N'Nedocromil', N'2fe8d7ad-2158-4169-94b0-719ad20242b7', CAST(N'2013-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (222, N'Aloe Polysaccharide/Hydrocortisone/Iodoquinol (Topical)', 958994, N'Aloe Polysaccharide', N'0a1a6d71-2295-4f83-a597-c477cafc56f7', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (223, N'Aloe Polysaccharide/Iodoquinol (Topical)', 958994, N'Aloe Polysaccharide', N'179b8b28-c76b-4686-a04c-6b2f90056de9', CAST(N'2010-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (224, N'Aloe vera preparation (Topical)', 1315376, N'Aloe vera preparation', N'20d1606d-fdb5-5ce8-e054-00144ff8d46c', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (225, N'ALOE VESTA ANTIFUNGAL (Topical)', 907879, N'Miconazole', N'c664e6c6-2a64-409c-9cb6-969d36fe6763', CAST(N'2013-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (226, N'ALOE VESTA DAILY MOISTURIZER (Topical)', 916662, N'dimethicone', N'8d8d9ac8-00b3-4aa1-86b6-9902b4b5369c', CAST(N'2013-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (227, N'ALOE VESTA PROTECTIVE BARRIER (Topical)', 19033354, N'Petrolatum', N'10341c96-b4ba-4892-ab68-2ac66f29da96', CAST(N'2011-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (228, N'Alogliptin (Oral Pill)', 43013884, N'alogliptin', N'a3768c7e-aa4c-44d3-bc53-43bb7346c0b0', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (229, N'Alogliptin/metFORMIN (Oral Pill)', 43013884, N'alogliptin', N'83cb7914-a683-47bb-a713-f2bc6a596bd2', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (230, N'Alogliptin/Pioglitazone (Oral Pill)', 43013884, N'alogliptin', N'4c619ed9-fe3e-4158-9938-80c6c3493d55', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (231, N'ALOMIDE (Ophthalmic)', 967496, N'Lodoxamide', N'1b97597f-f2e7-4574-81a8-f35b769c957a', CAST(N'2011-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (232, N'ALOPRIM (Injectable)', 1167322, N'Allopurinol', N'10cc918f-aa44-415b-932d-2404695ac449', CAST(N'2014-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (233, N'ALOQUIN (Topical)', 958994, N'Aloe Polysaccharide', N'179b8b28-c76b-4686-a04c-6b2f90056de9', CAST(N'2010-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (234, N'Alosetron (Oral Pill)', 948555, N'alosetron', N'e91c4a69-2ad5-4e21-a279-9e1302b1a3d3', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (235, N'ALOXI (Oral Pill)', 911354, N'palonosetron', N'bd06f321-bb42-4748-92f3-d59626b540e0', CAST(N'2014-11-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (236, N'alpha-Hydroxyprogesterone (Injectable)', 19077143, N'Hydroxyprogesterone', N'a1998c1d-8337-4f00-8dcb-af3b54d39b77', CAST(N'2015-04-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (237, N'ALPHAQUIN HP (Topical)', 976778, N'hydroquinone', N'f40d8124-60e1-4dd4-a7d5-887db54195cb', CAST(N'2012-11-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (238, N'ALPRAZolam (Oral Disintegrating)', 781039, N'Alprazolam', N'd956367b-fd7d-46fc-9533-38a6e02b0b59', CAST(N'2013-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (239, N'ALPRAZolam (Oral Liquid)', 781039, N'Alprazolam', N'b945ac6f-796e-41ef-85e9-61007e4a4e9a', CAST(N'2014-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (240, N'ALPRAZolam (Oral Pill)', 781039, N'Alprazolam', N'd7a54ceb-2d80-4879-950f-cad362324086', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (241, N'Alprostadil (Injectable)', 1381504, N'Alprostadil', N'dea460fa-d05e-4191-8461-f185a711ad89', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (242, N'ALREX (Ophthalmic)', 967562, N'loteprednol etabonate', N'cf290d54-26a1-4d22-8cb8-852bdc7b5280', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (243, N'ALTABAX (Topical)', 991003, N'retapamulin', N'9fae06b5-bbd5-400a-a7a6-3a4e238361f8', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (244, N'ALTACAINE (Ophthalmic)', 1036884, N'Tetracaine', N'fd57efaa-9129-47e0-8d47-191e0adb620e', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (245, N'Alteplase (Injectable)', 1347450, N'Alteplase', N'c669f77c-fa48-478b-a14b-80b20a0139c2', CAST(N'2015-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (246, N'Altretamine (Oral Pill)', 1368823, N'Altretamine', N'90a5e59a-bee8-404a-ad69-fabddeaf27f9', CAST(N'2007-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (247, N'Aluminum acetate (Topical)', 930604, N'aluminum acetate', N'99d84555-fd44-4115-99b3-54f67266b24c', CAST(N'2014-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (248, N'Aluminum chloride (Mucosal)', 957393, N'aluminum chloride', N'6223c9d2-5944-4ca1-bf6f-24047a51a5f5', CAST(N'2015-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (249, N'Aluminum chloride (Topical)', 957393, N'aluminum chloride', N'd09ae142-6fd5-45e4-a9c4-44428885ccaf', CAST(N'2014-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (250, N'Aluminum Hydroxide (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'af9b799f-69c5-401c-9c43-a97b23384cc2', CAST(N'2013-08-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (251, N'Aluminum Hydroxide (Topical)', 985247, N'Aluminum Hydroxide', N'dcf0aa6c-5fe7-46e3-a418-c79ecaca074c', CAST(N'2013-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (252, N'Aluminum Hydroxide/Magnesium carbonate (Chewable)', 985247, N'Aluminum Hydroxide', N'82402593-d5a8-4cdd-b166-8247c1ea058b', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (253, N'Aluminum Hydroxide/Magnesium carbonate (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'2d74e5bc-1f10-4fb6-9258-cd906e360013', CAST(N'2014-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (254, N'Aluminum Hydroxide/Magnesium Hydroxide (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'5bf7d414-2bea-4b8d-8dd4-a72d7d20f273', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (255, N'Aluminum Hydroxide/Magnesium Hydroxide/Simethicone (Chewable)', 985247, N'Aluminum Hydroxide', N'5035a3c0-d7e0-4c77-8b26-7058b6f88029', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (256, N'Aluminum Hydroxide/Magnesium Hydroxide/Simethicone (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'd28d6220-2702-450b-8ec4-32956edb2131', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (257, N'Aluminum Hydroxide/Magnesium trisilicate (Chewable)', 985247, N'Aluminum Hydroxide', N'7f367927-c366-465c-a059-e2cfb337d562', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (258, N'Aluminum sulfate/Calcium acetate (Topical)', 19030692, N'aluminum sulfate', N'6ebed2f4-6a06-47a3-bde4-c47b32cd81cb', CAST(N'2015-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (259, N'ALUVEA (Topical)', 906914, N'Urea', N'e878410d-6c1c-4580-a9f4-4d6df2c93de3', CAST(N'2011-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (260, N'Alvimopan (Oral Pill)', 19059654, N'alvimopan', N'77a67dc6-35d3-48ff-9d18-292d4d442f70', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (261, N'Amantadine (Oral Liquid)', 19087090, N'Amantadine', N'2b6e5b07-b3ba-4717-9ccd-029c0b08cc7f', CAST(N'2015-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (262, N'Amantadine (Oral Pill)', 19087090, N'Amantadine', N'63d9d4aa-5f92-45b0-98d0-d6ec38b727cb', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (263, N'AMBIEN (Oral Pill)', 744740, N'zolpidem', N'38512baf-6bf6-4ffa-807c-02b0140c217c', CAST(N'2013-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (264, N'AMBIEN XR (Oral Pill)', 744740, N'zolpidem', N'5a3ad211-f0a5-4238-8a03-1154fac34c86', CAST(N'2013-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (265, N'AMBISOME (Injectable)', 19056402, N'amphotericin B liposomal', N'f7be6506-4d20-401e-a0ff-02ad7c33158a', CAST(N'2012-11-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (266, N'Amcinonide (Topical)', 930747, N'amcinonide', N'8aefa477-ac2c-41c8-a807-d24522aed8f0', CAST(N'2013-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (267, N'AMERICAINE HEMORRHOIDAL (Topical)', 917006, N'Benzocaine', N'd13c022f-2f91-40b4-bd66-0cfc0e147a5f', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (268, N'American elm pollen extract (Injectable)', 40161030, N'American elm pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (269, N'American elm pollen extract/Siberian elm pollen extract (Injectable)', 40161030, N'American elm pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (270, N'American house dust mite extract/European house dust mite extract (Injectable)', 40241606, N'American house dust mite extract', N'3b3cb12c-65d3-46ab-9bac-82c569a76220', CAST(N'2009-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (271, N'AMICAR (Oral Liquid)', 1369939, N'6-Aminocaproic Acid', N'2238c70f-b0b5-4755-896b-45b28777b217', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (272, N'AMICAR (Oral Pill)', 1369939, N'6-Aminocaproic Acid', N'2238c70f-b0b5-4755-896b-45b28777b217', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (273, N'Amifostine (Injectable)', 1350040, N'Amifostine', N'4cd49351-6dde-4c85-be33-9a20bde785db', CAST(N'2013-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (274, N'Amikacin (Injectable)', 1790868, N'Amikacin', N'a43188fa-f228-4acd-8a5d-9a3462034f4b', CAST(N'2014-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (275, N'aMILoride (Oral Pill)', 991382, N'Amiloride', N'875f3f5a-ed45-4646-8537-21f054302d6f', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (276, N'aMILoride/Hydrochlorothiazide (Oral Pill)', 991382, N'Amiloride', N'71f5c703-94d4-49b0-9c2d-374b9cbcab85', CAST(N'2010-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (277, N'Aminocaproic Acid (Oral Liquid)', 1369939, N'6-Aminocaproic Acid', N'2238c70f-b0b5-4755-896b-45b28777b217', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (278, N'Aminocaproic Acid (Oral Pill)', 1369939, N'6-Aminocaproic Acid', N'2238c70f-b0b5-4755-896b-45b28777b217', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (279, N'Aminolevulinate (Topical)', 924120, N'Aminolevulinate', N'e45cc371-9ebc-4904-12bc-65cb4e2817ad', CAST(N'2012-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (280, N'Aminophylline (Injectable)', 1105775, N'Aminophylline', N'754e8580-c710-4a60-8c4e-184be3cf1f41', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (281, N'Aminophylline (Oral Liquid)', 1105775, N'Aminophylline', N'a7c01224-b32b-40ef-935b-164893a93b22', CAST(N'2007-05-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (282, N'Aminosalicylic acid (Oral Granules)', 1726228, N'aminosalicylic acid', N'6f2753dc-5f0c-4f49-9335-e519afb69ba6', CAST(N'2010-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (283, N'Amiodarone (Oral Pill)', 1309944, N'Amiodarone', N'080d74e0-a5c0-49b6-83e4-4ee9e81c345f', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (284, N'AMITIZA (Oral Pill)', 987366, N'lubiprostone', N'ca79dddc-3911-472b-bda7-a23351be09af', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (285, N'Amitriptyline (Oral Pill)', 710062, N'Amitriptyline', N'c7f4d8a8-de3f-447f-8874-c77e6c6fa8f3', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (286, N'Amitriptyline/chlordiazePOXIDE (Oral Pill)', 710062, N'Amitriptyline', N'22d710ec-302a-4756-95e3-8ee7957586e4', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (287, N'Amitriptyline/Perphenazine (Oral Pill)', 710062, N'Amitriptyline', N'ca5598e4-4226-45ab-abd1-e961707ae457', CAST(N'2011-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (288, N'amLODIPine (Oral Pill)', 1332418, N'Amlodipine', N'82507337-cd5e-48f4-891b-dda1512bcb9f', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (289, N'amLODIPine/Atorvastatin (Oral Pill)', 1332418, N'Amlodipine', N'd2d28679-a01b-4e63-90e2-d5c23b393c94', CAST(N'2015-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (290, N'amLODIPine/Benazepril (Oral Pill)', 1332418, N'Amlodipine', N'4da56a43-99aa-46df-aafc-ea193c46e442', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (291, N'amLODIPine/Hydrochlorothiazide/Valsartan (Oral Pill)', 1332418, N'Amlodipine', N'680209f4-ad4c-4f97-8b6b-04f648bfb97c', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (292, N'amLODIPine/Olmesartan (Oral Pill)', 1332418, N'Amlodipine', N'd6f37813-40bb-4fe8-99e2-ad2339b8e04a', CAST(N'2012-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (293, N'amLODIPine/Telmisartan (Oral Pill)', 1332418, N'Amlodipine', N'ca60a4d5-ace7-4889-94ee-e2265fd63811', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (294, N'amLODIPine/Valsartan (Oral Pill)', 1332418, N'Amlodipine', N'e05dd72c-7475-422e-bf8e-73148929450e', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (295, N'Ammonia (Nasal)', 42800417, N'Ammonia', N'e25cfc22-29ba-473f-88c4-3c88e9f6863b', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (296, N'AMMONUL (Injectable)', 711452, N'Benzoate', N'e00521d3-84f1-4586-b4a8-9dc17ffffcb1', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (297, N'AMNESTEEM (Oral Pill)', 984232, N'Isotretinoin', N'b2cb63c9-f825-4991-9a2c-6260f1bbcc2c', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (298, N'Amobarbital (Injectable)', 712757, N'Amobarbital', N'a2523317-e071-4e04-9d9f-9053286e0ce2', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (299, N'Amoxapine (Oral Pill)', 713109, N'Amoxapine', N'261006c8-3fd0-491b-b322-42beff6f9880', CAST(N'2011-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (300, N'Amoxicillin (Chewable)', 1713332, N'Amoxicillin', N'e91786c4-f928-4419-bd57-eca11498a6e6', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (301, N'Amoxicillin (Oral Liquid)', 1713332, N'Amoxicillin', N'83d18b18-1447-443c-8b9c-34b44922ac6a', CAST(N'2015-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (302, N'Amoxicillin (Oral Pill)', 1713332, N'Amoxicillin', N'c2f6b402-27cd-48d4-95ae-6a3f530b0452', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (303, N'Amoxicillin XR (Oral Pill)', 1713332, N'Amoxicillin', N'4057faf7-6d45-4d9e-90e9-72a546214d04', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (304, N'Amoxicillin/Clavulanate (Chewable)', 1713332, N'Amoxicillin', N'7383df90-6980-4e3b-bcbe-0675c1d26565', CAST(N'2013-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (305, N'Amoxicillin/Clavulanate (Oral Liquid)', 1713332, N'Amoxicillin', N'd13d3912-49e2-4a08-a62e-239730b15cd9', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (306, N'Amoxicillin/Clavulanate (Oral Pill)', 1713332, N'Amoxicillin', N'e340b67b-332e-4e0c-aebf-ad4872dc5ed4', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (307, N'Amphetamine/Dextroamphetamine (Oral Pill)', 714785, N'Amphetamine', N'd63a086a-32e2-49e2-949e-64e4c922775a', CAST(N'2015-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (308, N'Amphotericin B liposomal (Injectable)', 19056402, N'amphotericin B liposomal', N'f7be6506-4d20-401e-a0ff-02ad7c33158a', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (309, N'Ampicillin (Injectable)', 1717327, N'Ampicillin', N'8c8b7706-0a2d-4648-91c3-f75808827a0e', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (310, N'Ampicillin (Oral Liquid)', 1717327, N'Ampicillin', N'1422ac93-067c-489b-9b95-17cd00303f4c', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (311, N'Ampicillin (Oral Pill)', 1717327, N'Ampicillin', N'be35570c-239f-4320-bbcd-58971810943f', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (312, N'Ampicillin/Sulbactam (Injectable)', 1717327, N'Ampicillin', N'2709e9fc-2341-4382-af72-c2e3201bd77a', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (313, N'Amyl Nitrite (Nasal)', 1319051, N'Amyl Nitrite', N'c1b6e536-df5f-4f76-8e3c-6dc2f1e9975e', CAST(N'2011-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (314, N'Amylases/Endopeptidases/Lipase (Oral Pill)', 919204, N'Amylases', N'45b9a46b-3294-4604-8aea-60624d663020', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (315, N'AMYTAL SODIUM (Injectable)', 712757, N'Amobarbital', N'a2523317-e071-4e04-9d9f-9053286e0ce2', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (316, N'ANADROL-50 (Oral Pill)', 1525741, N'Oxymetholone', N'4b9c6c34-9cb2-4d70-b70e-c7ce2fda4212', CAST(N'2012-10-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (317, N'Anagrelide (Oral Pill)', 1381253, N'anagrelide', N'5e6cf1e5-94e4-4124-b7bf-e74647532246', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (318, N'ANA-LEX (Rectal)', 975125, N'Hydrocortisone', N'5b472e48-8f7f-4985-8832-7fdceff76e37', CAST(N'2014-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (319, N'ANALPRAM HC (Rectal)', 975125, N'Hydrocortisone', N'27b3c751-d972-4cb9-9235-55e29953bf8d', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (320, N'ANALPRAM HC (Topical)', 975125, N'Hydrocortisone', N'1469733e-1723-4b8c-be33-ed8dfafd65e2', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (321, N'ANASPAZ (Oral Disintegrating)', 923672, N'Hyoscyamine', N'e5fd8476-418a-4149-a688-205ea943b30c', CAST(N'2012-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (322, N'Anastrozole (Oral Pill)', 1348265, N'anastrozole', N'f881ec1a-d330-41d8-b633-143875c06ea4', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (323, N'ANBESOL (Mucosal)', 917006, N'Benzocaine', N'924a4421-cd8b-8e5c-d7e6-d022fabb694f', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (324, N'ANBESOL (Oral Gel)', 917006, N'Benzocaine', N'930ffc21-37d4-5b82-708a-e02d8251a86d', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (325, N'ANCOBON (Oral Pill)', 1755112, N'Flucytosine', N'aea0df00-a88c-4a16-abcf-750f3ff2004e', CAST(N'2013-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (326, N'ANDROXY (Oral Pill)', 1555887, N'Fluoxymesterone', N'5328c194-5650-4d1f-9e28-8cea038cce81', CAST(N'2014-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (327, N'ANECREAM (Topical)', 989878, N'Lidocaine', N'2d7706e2-7363-4047-96cb-85b718277e8c', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (328, N'ANGIOMAX (Injectable)', 19084670, N'bivalirudin', N'799d3b00-809b-4abc-989c-05faccec49f8', CAST(N'2011-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (329, N'Annual bluegrass pollen extract (Injectable)', 40171977, N'annual bluegrass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (330, N'ANTABUSE (Oral Pill)', 735850, N'Disulfiram', N'f0ca0e1f-9641-48d5-9367-e5d1069e8680', CAST(N'2014-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (331, N'ANTARA (Oral Pill)', 1551803, N'Fenofibrate', N'acca05ab-185b-41a6-9ce2-783fc3c3cf96', CAST(N'2008-02-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (332, N'Anthralin (Shampoo)', 952538, N'Anthralin', N'253fdee7-5060-4b49-ad26-257eb54cccfa', CAST(N'2014-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (333, N'Anthralin (Topical)', 952538, N'Anthralin', N'45bad116-0351-442f-8e49-f11089a955fd', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (334, N'Antipyrine/Benzocaine (Otic)', 1036059, N'Antipyrine', N'57b8ea08-c5b1-4d8b-bbff-ad83234e054d', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (335, N'Antipyrine/Benzocaine/Zinc Acetate (Otic)', 1036059, N'Antipyrine', N'cd77f88e-8714-45ca-a385-1ca75b8c94bb', CAST(N'2011-05-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (336, N'ANTIVERT (Oral Pill)', 994341, N'Meclizine', N'305a537b-db97-4c5b-824a-0b97dd4c6dc0', CAST(N'2013-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (337, N'ANUCORT-HC (Rectal)', 975125, N'Hydrocortisone', N'f0f5a107-1236-8e1a-815d-dec8007c2bc9', CAST(N'2014-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (338, N'APEXICON (Topical)', 960988, N'Diflorasone', N'af4c413b-c228-48f0-9ad0-6434d1f921b9', CAST(N'2013-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (339, N'Apixaban (Oral Pill)', 43013024, N'apixaban', N'a454cd24-0c6d-46e8-b1e4-197388606175', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (340, N'Apraclonidine (Ophthalmic)', 919986, N'apraclonidine', N'de798d0d-a93c-40fb-95ea-10a4e6b287b7', CAST(N'2011-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (341, N'Aprepitant (Oral Pill)', 936748, N'aprepitant', N'ec44482e-6194-4829-a3f7-ebe8d48a41a5', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (342, N'Aprotinin (Injectable)', 19000729, N'Aprotinin', N'8a5982c6-825f-4d05-90f5-1519a7291d15', CAST(N'2007-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (343, N'APTIOM (Oral Pill)', 44507780, N'eslicarbazepine', N'3d0c9554-eaeb-4694-8089-00133fcadce3', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (344, N'AQUAFRESH (Toothpaste)', 19068715, N'monofluorophosphate', N'22d07313-d22d-4d1c-9c7b-9f1486ac72a5', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (345, N'AQUAFRESH SENSITIVE (Toothpaste)', 927322, N'potassium nitrate', N'76adbccb-0812-4407-a6fc-a57e6f144fbb', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (346, N'AQUAPHOR (Topical)', 19033354, N'Petrolatum', N'0a17bf6f-6114-4647-a509-65999255c37b', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (347, N'ARBINOXA (Oral Liquid)', 1141018, N'carbinoxamine', N'040d6792-21fe-44cc-a441-b9693178b3b5', CAST(N'2012-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (348, N'ARBINOXA (Oral Pill)', 1141018, N'carbinoxamine', N'3f4f633c-5c5d-4d52-abb8-dfa2896b40d2', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (349, N'ARCALYST (Injectable)', 19023450, N'rilonacept', N'282f4099-e848-432a-bac1-e041c192a5ba', CAST(N'2015-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (350, N'ARESTIN (Oral Powder)', 1708880, N'Minocycline', N'8515df41-1936-4f3b-86ba-d2bb2a8441fb', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (351, N'Argatroban (Injectable)', 1322207, N'argatroban', N'35db0a86-76af-4f5e-a5c6-0a664f53f6da', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (352, N'Arginine (Injectable)', 19006410, N'Arginine', N'6accf33f-9841-4327-8923-93c42020ef12', CAST(N'2014-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (353, N'ARICEPT (Oral Pill)', 715997, N'donepezil', N'98e451e1-e4d7-4439-a675-c5457ba20975', CAST(N'2015-07-01 00:00:00.000' AS DateTime), 294, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (354, N'ARIMIDEX (Oral Pill)', 1348265, N'anastrozole', N'4fee8d4c-bb21-4773-b622-87f9a4ff333a', CAST(N'2012-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (355, N'ARIPiprazole (Oral Liquid)', 757688, N'aripiprazole', N'e7292c4c-e332-4ed4-9086-f130d223b6ae', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (356, N'ARIPiprazole (Oral Pill)', 757688, N'aripiprazole', N'd8275c2d-f42d-4f32-aa9f-03a202c8e99f', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (357, N'Armodafinil (Oral Pill)', 19090984, N'armodafinil', N'e7bfb636-4b0a-440c-a4d3-d26393a14ac5', CAST(N'2013-05-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (358, N'ARMOUR THYROID (Oral Pill)', 1501309, N'thyroid (USP)', N'c815faa3-1d02-4680-96ef-5fad1645e99b', CAST(N'2013-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (359, N'AROMASIN (Oral Pill)', 1398399, N'exemestane', N'f0b31daa-0792-43d5-af08-8b6a864dc90a', CAST(N'2010-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (360, N'Arsenic trioxide (Injectable)', 1333379, N'arsenic trioxide', N'dec51fab-3784-deb7-752f-2d4d5692a20f', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (361, N'ARTHRITEN INFLAMMATORY PAIN (Oral Pill)', 1125315, N'Acetaminophen', N'c280ca89-4fb5-4050-90ee-d706a550a1ef', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (362, N'ARTHROTEC (Oral Pill)', 1124300, N'Diclofenac', N'bdf17a90-9444-4dba-aff6-df27e07f23d5', CAST(N'2012-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (363, N'ARTICADENT (Injectable)', 19080512, N'Articaine', N'9ca8fb43-4f34-47c0-8b79-3b5bd1eaee00', CAST(N'2014-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (364, N'ARTISS (Topical)', 19036781, N'Calcium Chloride', N'38a6412e-9557-45ad-a917-da15109657ec', CAST(N'2012-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (365, N'ASACOL (Oral Pill)', 968426, N'mesalamine', N'a97c3815-a0d5-4763-8c3f-9caa5dd9b01b', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (366, N'ASCOMP (Oral Pill)', 1112807, N'Aspirin', N'243a6aea-0f48-42a9-a85e-ff247ab94336', CAST(N'2009-11-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (367, N'Ascorbic Acid (Injectable)', 19011773, N'Ascorbic Acid', N'af67a2f3-65b7-4a6e-9a51-315a280f976b', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (368, N'Ascorbic Acid/Cholecalciferol/Sodium Fluoride/Vitamin A (Oral Liquid)', 19011773, N'Ascorbic Acid', N'c64addb4-13cf-4857-8192-eb82903999b7', CAST(N'2014-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (369, N'Ascorbic Acid/Docusate/Folic Acid/Iron Carbonyl/Vitamin B 12 (Oral Pill)', 19011773, N'Ascorbic Acid', N'2c9fd33d-4b38-42be-ad36-b1521ded47e1', CAST(N'2011-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (370, N'Ascorbic Acid/Ferrous fumarate/Folic Acid/Liver stomach concentrate/Vitamin B 12 (Oral Pill)', 19011773, N'Ascorbic Acid', N'd891ab47-4a05-4b5b-b372-7ddf91699c29', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (371, N'Ascorbic Acid/Ferrous fumarate/Folic Acid/Vitamin B 12 (Oral Pill)', 19011773, N'Ascorbic Acid', N'898d31a9-5864-4bf4-94cb-cb50736c4fbb', CAST(N'2013-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (372, N'Ascorbic Acid/Ferrous sulfate/Folic Acid XR (Oral Pill)', 19011773, N'Ascorbic Acid', N'be17e959-b6d8-4cda-b064-2d28842d1e5b', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (373, N'Ascorbic Acid/Iron Carbonyl (Oral Pill)', 19011773, N'Ascorbic Acid', N'c81325e0-c2db-4412-89a9-236a6733f229', CAST(N'2014-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (374, N'ASCRIPTIN (Oral Pill)', 1112807, N'Aspirin', N'4f676dc2-71de-431a-82ef-53c6bb9a6e01', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (375, N'Asenapine (Sublingual)', 40164052, N'Asenapine', N'03c696e9-0e6b-4e5c-be0a-41416f8019be', CAST(N'2011-02-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (376, N'Aspergillus fumigatus extract (Injectable)', 40161048, N'Aspergillus fumigatus extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (377, N'Aspirin (Chewable)', 1112807, N'Aspirin', N'6c7db6a8-f017-4a15-a4a8-4fba82ff658d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (378, N'Aspirin (Oral Disintegrating)', 1112807, N'Aspirin', N'73859ea9-01a0-4c3d-97d4-17b9d3378899', CAST(N'2010-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (379, N'Aspirin (Oral Pill)', 1112807, N'Aspirin', N'5e1484d3-5be1-40da-a3bf-fb19f7d27d45', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (380, N'Aspirin (Rectal)', 1112807, N'Aspirin', N'cce244aa-cd79-49c8-b68e-267f2bd0ef67', CAST(N'2014-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (381, N'Aspirin/Butalbital/Caffeine (Oral Pill)', 1112807, N'Aspirin', N'5cd45280-2b8c-4ba8-bde9-db687d96847f', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (382, N'Aspirin/Butalbital/Caffeine/Codeine (Oral Pill)', 1112807, N'Aspirin', N'243a6aea-0f48-42a9-a85e-ff247ab94336', CAST(N'2014-09-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (383, N'Aspirin/Caffeine (Oral Pill)', 1112807, N'Aspirin', N'f43685f0-d7f4-40b9-9de4-1ee272e7b085', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (384, N'Aspirin/Caffeine (Oral Powder)', 1112807, N'Aspirin', N'0908e63c-9700-4647-856c-6b02b03f62a1', CAST(N'2015-01-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (385, N'Aspirin/Caffeine/Dihydrocodeine (Oral Pill)', 1112807, N'Aspirin', N'3e863ce5-936c-4145-b14b-76670e21bdad', CAST(N'2013-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (386, N'Aspirin/Caffeine/Orphenadrine (Oral Pill)', 1112807, N'Aspirin', N'8e41b33e-f71f-4a5e-b88f-cdfefb2bee20', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (387, N'Aspirin/Carisoprodol/Codeine (Oral Pill)', 1112807, N'Aspirin', N'dcae7a8a-9d9e-4f7f-954c-39e371f30f75', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (388, N'Aspirin/Chlorpheniramine/Dextromethorphan/Phenylephrine (Effervescent)', 1112807, N'Aspirin', N'78537dcf-b157-4b67-a8b2-5cb144815166', CAST(N'2014-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (389, N'Aspirin/Chlorpheniramine/Phenylephrine (Effervescent)', 1112807, N'Aspirin', N'd443a030-d3d6-40e0-8fe0-329de6bc494f', CAST(N'2015-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (390, N'Aspirin/Citric Acid/Sodium Bicarbonate (Effervescent)', 1112807, N'Aspirin', N'528da9d9-2a52-4c16-b7b2-61b3eee1abea', CAST(N'2015-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (391, N'Aspirin/Dextromethorphan/Doxylamine/Phenylephrine (Effervescent)', 1112807, N'Aspirin', N'0c397cf2-5b2c-0eca-e054-00144ff8d46c', CAST(N'2015-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (392, N'Aspirin/DiphenhydrAMINE (Oral Pill)', 1112807, N'Aspirin', N'0c79f57f-7fc9-39a5-e054-00144ff88e88', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (393, N'Aspirin/Dipyridamole (Oral Pill)', 1112807, N'Aspirin', N'f07c8535-f9fb-4697-9b63-1ab22210efc9', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (394, N'Aspirin/Meprobamate (Oral Pill)', 1112807, N'Aspirin', N'941e1ec2-1f14-4153-a5ea-cf7669d5efd1', CAST(N'2008-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (395, N'Aspirin/oxyCODONE (Oral Pill)', 1112807, N'Aspirin', N'23a60947-6058-4bf7-a3ee-ae396e55d939', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (396, N'ASPIR-LOW (Oral Pill)', 1112807, N'Aspirin', N'50c157d7-ea12-4a55-82ba-4190bd1fd4c5', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (397, N'ASTHMANEFRIN (Inhalant)', 1300153, N'Racepinephrine', N'80480838-832c-4fdd-9f8e-f6f877ae3549', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (398, N'ASTRAMORPH (Injectable)', 1110410, N'Morphine', N'ca44184d-4d3b-4fda-c288-8c32527ea6ca', CAST(N'2008-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (399, N'ATACAND (Oral Pill)', 1351557, N'candesartan', N'd0c94743-cb17-4581-962e-7add11ae52e7', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (400, N'ATACAND HCT (Oral Pill)', 1351557, N'candesartan', N'8e50e65d-b79b-46b4-a147-796cb19f1407', CAST(N'2012-02-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (401, N'ATARAX (Oral Liquid)', 777221, N'Hydroxyzine', N'7eaf5043-5c73-47af-904b-8e1fae02af2e', CAST(N'2006-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (402, N'ATARAX (Oral Pill)', 777221, N'Hydroxyzine', N'7eaf5043-5c73-47af-904b-8e1fae02af2e', CAST(N'2006-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (403, N'Atazanavir (Oral Pill)', 1727223, N'Atazanavir', N'025876b6-f031-43ea-967a-b1d95b4685a6', CAST(N'2012-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (404, N'Atenolol (Injectable)', 1314002, N'Atenolol', N'4f266bf9-05ba-45bd-f683-d156c06d9acc', CAST(N'2006-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (405, N'Atenolol (Oral Pill)', 1314002, N'Atenolol', N'31f260a1-28e5-4693-95bf-36c5152d81df', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (406, N'Atenolol/Chlorthalidone (Oral Pill)', 1314002, N'Atenolol', N'84e9de8f-27c3-4177-827a-6992495511ac', CAST(N'2014-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (407, N'ATGAM (Injectable)', 19061406, N'Lymphocyte immune globulin', N'bd545ba1-2366-4df1-bd67-10dfd7632b54', CAST(N'2015-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (408, N'ATIVAN (Injectable)', 791967, N'Lorazepam', N'5fc0e987-61c9-40c4-b0d5-fcea07c8733e', CAST(N'2012-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (409, N'ATIVAN (Oral Pill)', 791967, N'Lorazepam', N'89057c93-8155-4040-acec-64e877bd2b4c', CAST(N'2013-05-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (410, N'Atomoxetine (Oral Pill)', 742185, N'atomoxetine', N'6a7584b5-524d-4726-86a2-1b08e422f60e', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (411, N'Atorvastatin (Oral Pill)', 1545958, N'atorvastatin', N'8f71bea6-2fd0-44ae-afd9-727d365293a0', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (412, N'Atorvastatin/Ezetimibe (Oral Pill)', 1545958, N'atorvastatin', N'c387354c-607b-474d-b2e5-d35c789ce09b', CAST(N'2013-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (413, N'Atovaquone/Proguanil (Oral Pill)', 1781733, N'Atovaquone', N'c50d51ab-23c2-45cb-8f68-08f3454fb59b', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (414, N'Atracurium (Injectable)', 19014341, N'Atracurium', N'ca9e266c-8264-46f4-9df3-8d86a9d8437f', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (415, N'ATRALIN (Topical)', 903643, N'Tretinoin', N'b6b45969-a64a-4ce3-b3b6-157d2568a301', CAST(N'2015-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (416, N'ATRIDOX (Oral Gel)', 1738521, N'Doxycycline', N'2c718fc7-2921-4d02-b273-784e513f8299', CAST(N'2012-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (417, N'ATRIPLA (Oral Pill)', 1738135, N'efavirenz', N'5c6c7ba4-6d42-4e07-a127-b3cf72c866ad', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (418, N'Atropine (Injectable)', 914335, N'Atropine', N'baf1529e-737d-4cbc-9111-6e5d89525051', CAST(N'2013-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (419, N'Atropine (Ophthalmic)', 914335, N'Atropine', N'c0a56d60-0914-42b1-af59-c56afe93d18c', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (420, N'Atropine/Diphenoxylate (Oral Liquid)', 914335, N'Atropine', N'88ed4ccf-9e35-4142-a5eb-d2b5edd36956', CAST(N'2012-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (421, N'Atropine/Diphenoxylate (Oral Pill)', 914335, N'Atropine', N'6f76c6d2-7a30-43cd-8c2b-d6a12f8fc867', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (422, N'Atropine/Edrophonium (Injectable)', 914335, N'Atropine', N'358336e5-3628-49ec-9134-6ec8c4ea733a', CAST(N'2013-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (423, N'Atropine/Hyoscyamine/PHENobarbital/Scopolamine (Oral Liquid)', 914335, N'Atropine', N'ddff0982-3502-4db6-ae73-c77a0250dea8', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (424, N'Atropine/Hyoscyamine/PHENobarbital/Scopolamine (Oral Pill)', 914335, N'Atropine', N'1cc18146-d9be-4975-89ba-e99a85f71c76', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (425, N'Atropine/Hyoscyamine/PHENobarbital/Scopolamine XR (Oral Pill)', 914335, N'Atropine', N'2064014b-6f8e-4232-88c2-d1870042abc7', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (426, N'AUGMENTIN (Oral Liquid)', 1713332, N'Amoxicillin', N'55aefa88-46fc-2b73-0819-0c2f88274852', CAST(N'2013-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (427, N'AUGMENTIN (Oral Pill)', 1713332, N'Amoxicillin', N'174cc098-fe49-4f1a-87e2-601c7573f0db', CAST(N'2013-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (428, N'Auranofin (Oral Pill)', 1114771, N'Auranofin', N'05c34ddf-a0f7-4267-83f5-d02be3defc37', CAST(N'2011-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (429, N'AURO EAR (Otic)', 958999, N'carbamide peroxide', N'924e613b-4952-4861-aac7-b8534ea0f305', CAST(N'2011-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (430, N'AURODEX (Otic)', 1036059, N'Antipyrine', N'fa67ddca-a12e-4798-b170-843cd8e7afeb', CAST(N'2012-12-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (431, N'Aurothiomalate (Injectable)', 1152134, N'Aurothiomalate', N'a29045b5-ba4f-407a-a0fd-3ef7e1ce64ee', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (432, N'Austrian pine pollen extract (Injectable)', 40171641, N'Austrian pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (433, N'AVAGE (Topical)', 947416, N'tazarotene', N'cd8a3be3-8f83-42cf-8752-6fd16da65150', CAST(N'2012-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (434, N'AVALIDE (Oral Pill)', 974166, N'Hydrochlorothiazide', N'716ab835-584e-4bdc-ac7c-f685d88b4dad', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (435, N'AVANDAMET (Oral Pill)', 1503297, N'Metformin', N'e77a8504-b49f-4343-beaf-6e4c2c59ab45', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (436, N'AVANDIA (Oral Pill)', 1547504, N'rosiglitazone', N'ec682aec-e98f-41a1-9d21-eb7580ea3a8a', CAST(N'2015-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (437, N'AVAPRO (Oral Pill)', 1347384, N'irbesartan', N'c6f1e307-9107-431b-9a49-38049e429494', CAST(N'2015-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (438, N'AVAR (Soap)', 1036252, N'Sulfacetamide', N'1947cbbf-da90-1520-e054-00144ff88e88', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (439, N'AVAR (Topical)', 1036252, N'Sulfacetamide', N'a57968d2-8012-46a8-9f77-e16ad4e86335', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (440, N'AVEENO ACTIVE NATURALS (Topical)', 986261, N'Colloidal oatmeal', N'b6de08f0-3cdb-4ac1-a958-c94c9f0e9a2a', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (441, N'AVEENO ACTIVE NATURALS NOURISH PLUS DANDRUFF CONTROL (Shampoo)', 944360, N'zinc pyrithione', N'2481d840-45c3-46ac-8368-e4835d685669', CAST(N'2012-10-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (442, N'AVEENO ACTIVE NATURALS SKIN RELIEF (Topical)', 916662, N'dimethicone', N'bfbf4bf8-7dad-46d7-baeb-66a691652702', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (443, N'AVEENO ANTI-ITCH REFORMULATED JUN 2007 (Topical)', 902616, N'Calamine', N'a042095e-a139-4c5d-8ffb-39e37da2a93a', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (444, N'AVEENO BABY (Topical)', 916662, N'dimethicone', N'1267319e-9e40-403f-a259-834b4423b567', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (445, N'AVEENO BABY DIAPER RASH CREAM (Topical)', 911064, N'Zinc Oxide', N'1267319e-9e40-403f-a259-834b4423b567', CAST(N'2013-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (446, N'AVEENO HEALING OINTMENT (Topical)', 19033354, N'Petrolatum', N'6d798970-c36e-4ee3-9ef8-d1d6245b5f6c', CAST(N'2012-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (447, N'AVELOX (Oral Pill)', 1716903, N'moxifloxacin', N'ebe94683-8fd8-4d99-aa13-46ce14dbcd62', CAST(N'2013-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (448, N'AVITA (Topical)', 903643, N'Tretinoin', N'96c39a66-20b0-4c39-a665-c54a2531f096', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (449, N'AVODART (Oral Pill)', 989482, N'Dutasteride', N'813507ec-1fc1-420f-ac5c-5c794b1059cd', CAST(N'2011-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (450, N'AVONEX (Injectable)', 722424, N'Interferon beta-1a', N'0de49d64-3e18-494c-bf14-bc152247c798', CAST(N'2012-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (451, N'AXERT (Oral Pill)', 1103552, N'almotriptan', N'886c13fa-4547-4411-88aa-8e23a7a698f6', CAST(N'2012-10-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (452, N'AXID AR (Oral Pill)', 950696, N'Nizatidine', N'5c371d53-b93d-565e-bae6-1354c99d9035', CAST(N'2009-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (453, N'Axitinib (Oral Pill)', 42709322, N'axitinib', N'84137882-e000-47da-bd5b-fa76ab3c76f9', CAST(N'2014-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (454, N'azaCITIDine (Injectable)', 1314865, N'Azacitidine', N'e437efe0-9c6a-4f87-b3b4-de90443b095f', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (455, N'AZASITE (Ophthalmic)', 1734104, N'Azithromycin', N'14ae4c07-b042-452a-b069-2b41bc646e04', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (456, N'azaTHIOprine (Oral Pill)', 19014878, N'Azathioprine', N'e385894f-212b-4582-a63a-a0767fd97645', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (457, N'Azelastine (Ophthalmic)', 934075, N'azelastine', N'f2f72f86-c1c8-11df-851a-0800200c9a66', CAST(N'2014-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (458, N'Azelate (Topical)', 986790, N'Azelate', N'b086c825-401e-48e7-a6dd-2ad7423e86a0', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (459, N'Azelate/Cupric oxide/Folic Acid/Niacinamide/Pyridoxine/Zinc Oxide (Oral Pill)', 986790, N'Azelate', N'1482d448-0f34-4aa6-b461-cb145404f6bc', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (460, N'AZELEX (Topical)', 986790, N'Azelate', N'0d5269d5-6555-4d2c-bc3b-df862b014275', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (461, N'Azficel-T (Injectable)', 40241205, N'azficel-T', N'4a41354f-c689-4216-82cc-bfc572f16374', CAST(N'2012-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (462, N'AZILECT (Oral Pill)', 715710, N'rasagiline', N'a40d0e73-3f9f-4b01-979d-402c9cdaeb60', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (463, N'Azilsartan (Oral Pill)', 40235485, N'azilsartan', N'52b27c75-9f5a-4816-bafd-dace9d7d2063', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (464, N'Azilsartan/Chlorthalidone (Oral Pill)', 40235485, N'azilsartan', N'e60f795b-fce3-4361-aa03-f143451689d1', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (465, N'Azithromycin (Ophthalmic)', 1734104, N'Azithromycin', N'14ae4c07-b042-452a-b069-2b41bc646e04', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (466, N'Azithromycin (Oral Liquid)', 1734104, N'Azithromycin', N'035ce971-cf46-40c0-9b2f-ae52ab4e3468', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (467, N'Azithromycin (Oral Pill)', 1734104, N'Azithromycin', N'7e7c2f49-449c-4ba2-98ae-0ff0c040614c', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (468, N'AZO URINARY PAIN RELIEF (Oral Pill)', 933724, N'Phenazopyridine', N'b2c6bb64-bb81-413c-8a6b-0420d2573ab6', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (469, N'AZO-GESIC (Oral Pill)', 933724, N'Phenazopyridine', N'b10d0f4e-4f52-4fec-9d49-289fb9c84cd8', CAST(N'2014-10-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (470, N'AZOPT (Ophthalmic)', 938044, N'brinzolamide', N'e9ea2ae7-1b98-4034-9fba-8ce2225e0145', CAST(N'2012-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (471, N'AZOR (Oral Pill)', 1332418, N'Amlodipine', N'd6f37813-40bb-4fe8-99e2-ad2339b8e04a', CAST(N'2012-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (472, N'BABY ANTI MONKEY BUTT DIAPER RASH CREAM (Topical)', 902616, N'Calamine', N'd95eeedb-393e-0859-19ef-72bb421e3046', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (473, N'BABY ANTI MONKEY BUTT DIAPER RASH POWDER (Topical)', 902616, N'Calamine', N'd9d6ea6f-0793-3c9d-f92c-a9e2f0bee20b', CAST(N'2012-07-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (474, N'BABYBIG (Injectable)', 19072699, N'Botulism Immune Globulin IV Human', N'9ec59262-35c1-4d8e-8451-a7cfbacb0675', CAST(N'2014-11-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (475, N'Bacitracin (Injectable)', 915175, N'Bacitracin', N'a3d2f60c-d3e8-4ce8-92eb-d3044783e5dd', CAST(N'2013-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (476, N'Bacitracin (Ophthalmic)', 915175, N'Bacitracin', N'b2983ec7-5f63-4909-891b-92214d3a637f', CAST(N'2013-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (477, N'Bacitracin (Topical)', 915175, N'Bacitracin', N'c4b90624-4713-401f-90c8-77df632409f9', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (478, N'Bacitracin/Dimethicone/Zinc Oxide (Topical)', 915175, N'Bacitracin', N'f439fb97-0722-42ee-bc90-67daf0497aa8', CAST(N'2011-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (479, N'Bacitracin/Hydrocortisone/Neomycin/Polymyxin B (Ophthalmic)', 915175, N'Bacitracin', N'ce7ded34-66ab-4b6d-a9d7-fcf0c8d86eaa', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (480, N'Bacitracin/Hydrocortisone/Neomycin/Polymyxin B (Topical)', 915175, N'Bacitracin', N'097a7a8d-04d4-4736-c8b7-0796117457bf', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (481, N'Bacitracin/Lidocaine/Neomycin/Polymyxin B (Topical)', 915175, N'Bacitracin', N'd7d8b557-93a1-436b-a67a-5333e749c9c9', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (482, N'Bacitracin/Neomycin/Polymyxin B (Ophthalmic)', 915175, N'Bacitracin', N'e58d6e45-36bc-4ffc-8860-3befe2ed2396', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (483, N'Bacitracin/Neomycin/Polymyxin B (Topical)', 915175, N'Bacitracin', N'58ff1e78-5690-48ac-93ee-774604bbf73d', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (484, N'Bacitracin/Neomycin/Polymyxin B/Pramoxine (Topical)', 915175, N'Bacitracin', N'fe7c7e73-168f-4af3-ad50-6318b91f4d9c', CAST(N'2015-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (485, N'Bacitracin/Polymyxin B (Ophthalmic)', 915175, N'Bacitracin', N'c6c69fa4-d7be-4c09-b7fa-53c40fad78a7', CAST(N'2013-10-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (486, N'Bacitracin/Polymyxin B (Topical)', 915175, N'Bacitracin', N'dd7aceb6-0666-4059-b2a9-8e7fe5f3f0ac', CAST(N'2013-11-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (487, N'BACKAID IPF (Oral Pill)', 1125315, N'Acetaminophen', N'b1dc7b4d-ef8d-4d00-90f1-107eb34e4fc5', CAST(N'2012-10-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (488, N'Baclofen (Oral Disintegrating)', 715233, N'Baclofen', N'f133fe04-1550-4fa4-9dc4-652c27936bf2', CAST(N'2006-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (489, N'Baclofen (Oral Pill)', 715233, N'Baclofen', N'07730b69-3b5b-492d-b10e-5826013f8997', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (490, N'BACTINE (Topical)', 916460, N'Benzalkonium', N'60476e61-e2b8-47bd-b391-533ec510658e', CAST(N'2013-07-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (491, N'BACTRIM (Oral Pill)', 1836430, N'Sulfamethoxazole', N'f59d0c04-9c66-4d53-a0e1-cb55570deb62', CAST(N'2015-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (492, N'BACTROBAN (Nasal)', 951511, N'Mupirocin', N'c142ab8f-fa5c-471a-a49a-058ab8ec023b', CAST(N'2013-03-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (493, N'BACTROBAN (Topical)', 951511, N'Mupirocin', N'76bdab9d-9153-4db6-9b9a-ff376374a8ea', CAST(N'2013-12-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (494, N'BAL IN OIL (Injectable)', 1728903, N'Dimercaprol', N'2ed1fc15-ca74-400e-bfdb-64483b2c590b', CAST(N'2012-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (495, N'BALMEX (Topical)', 911064, N'Zinc Oxide', N'b877ec82-e5bb-cd18-a295-bbd4fc29fd17', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (496, N'BALMEX OINTMENT (Topical)', 19033354, N'Petrolatum', N'a9e48059-1319-4cd4-9be5-5376eaf8bbf3', CAST(N'2014-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (497, N'Balsalazide (Oral Pill)', 934262, N'balsalazide', N'509b83b6-cde6-393b-8560-557793b6a529', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (498, N'BANALG (Topical)', 901656, N'Menthol', N'5b4c09e6-4228-47d5-b8f2-5959f8aede38', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (499, N'BANOPHEN (Oral Liquid)', 1129625, N'Diphenhydramine', N'9f40ea06-bd0b-4db8-91d6-774f65a7f345', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (500, N'BANOPHEN (Oral Pill)', 1129625, N'Diphenhydramine', N'cb498f07-75fe-47d5-9620-f87405d168af', CAST(N'2015-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (501, N'BANOPHEN CREAM (Topical)', 1129625, N'Diphenhydramine', N'e79cf602-dc91-4fb9-844d-efed58e728d9', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (502, N'Barley smut extract (Injectable)', 40175802, N'barley smut extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (503, N'BAYCADRON (Oral Liquid)', 1518254, N'Dexamethasone', N'e59d3b87-af2e-4262-b89d-e95aa79f11b7', CAST(N'2009-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (504, N'BAYER ASPIRIN (Chewable)', 1112807, N'Aspirin', N'070d5713-e018-2913-e054-00144ff8d46c', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (505, N'BAYER ASPIRIN (Oral Pill)', 1112807, N'Aspirin', N'751e8cde-0dd8-483f-8e81-61f86203db1c', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (506, N'BAYER ASPIRIN PM REFORMULATED NOV 2011 (Oral Pill)', 1112807, N'Aspirin', N'0c79f57f-7fc9-39a5-e054-00144ff88e88', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (507, N'BAZA CLEANSE AND PROTECT (Topical)', 916662, N'dimethicone', N'ca5fa4ae-c18d-4457-b520-4a9318ea821f', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (508, N'BAZA CLEAR (Topical)', 19033354, N'Petrolatum', N'69d9f456-1a35-4146-8366-c0285648a172', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (509, N'BAZA-PROTECT (Topical)', 916662, N'dimethicone', N'ed63df26-3879-46df-8e09-10be569b25be', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (510, N'Bazedoxifene/Estrogens, Conjugated (USP) (Oral Pill)', 44506794, N'bazedoxifene', N'e1b75458-2e5b-46b9-92c6-fa6daba3770f', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (511, N'BC ORIGINAL FORMULA (Oral Powder)', 1112807, N'Aspirin', N'0908e63c-9700-4647-856c-6b02b03f62a1', CAST(N'2015-01-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (512, N'BCG, Live, Connaught Strain (Topical)', 19023835, N'BCG, Live, Connaught Strain', N'8e456333-5a25-4484-84bf-53ece67c000a', CAST(N'2013-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (513, N'BEBULIN (Injectable)', 1351935, N'factor IX', N'b375a2fb-7bd4-486c-87f6-72237713d528', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (514, N'Becaplermin (Topical)', 912476, N'Becaplermin', N'fd2c7d21-7b07-4ab3-8983-816ab3223771', CAST(N'2015-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (515, N'BEDSIDE-CARE (Topical)', 916802, N'Benzethonium', N'3e8a37f0-3b44-4bba-8987-2717b54419f1', CAST(N'2013-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (516, N'Beech pollen extract (Injectable)', 40161542, N'beech pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (517, N'Belatacept (Injectable)', 40239665, N'belatacept', N'c16ac648-d5d2-9f7d-8637-e2328572754e', CAST(N'2014-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (518, N'BELEODAQ (Injectable)', 45776670, N'belinostat', N'84b2e16e-f0d1-4757-8da8-79dfa83aab79', CAST(N'2014-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (519, N'Belinostat (Injectable)', 45776670, N'belinostat', N'84b2e16e-f0d1-4757-8da8-79dfa83aab79', CAST(N'2014-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (520, N'Belladonna Alkaloids/Opium (Rectal)', 1116109, N'Belladonna Alkaloids', N'8301e76b-134a-43d2-a7dc-c600ccf2695c', CAST(N'2012-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (521, N'BELSOMRA (Oral Pill)', 45775760, N'Suvorexant', N'e5b72731-1acb-45b7-9c13-290ad12d3951', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (522, N'BENADRYL (Oral Liquid)', 1129625, N'Diphenhydramine', N'fc9181b9-c92d-493e-8d7c-4a4239c6c092', CAST(N'2011-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (523, N'BENADRYL (Oral Pill)', 1129625, N'Diphenhydramine', N'53de0882-12ad-4c5c-bdb8-85d40d1da5e6', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (524, N'BENADRYL (Topical)', 1129625, N'Diphenhydramine', N'f230079e-41f3-40f2-93f0-4052e5d84095', CAST(N'2014-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (525, N'BENADRYL CHILDREN''S ANTI-ITCH (Topical)', 938205, N'Camphor', N'36edeed8-894b-4f49-bb9a-9b43181b4906', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (526, N'BENADRYL ITCH STOPPING (Topical)', 1129625, N'Diphenhydramine', N'3ef170f8-f60c-48ea-b21f-742e84484a4c', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (527, N'BENADRYL-D ALLERGY AND SINUS (Oral Liquid)', 1129625, N'Diphenhydramine', N'b8b75904-3806-4258-89c1-d6ff486ed41c', CAST(N'2014-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (528, N'Benazepril (Oral Pill)', 1335471, N'benazepril', N'47394912-aca4-4b62-8c7e-791eae1d69be', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (529, N'Benazepril/Hydrochlorothiazide (Oral Pill)', 1335471, N'benazepril', N'1ea9c4d0-a5ce-5961-e054-00144ff88e88', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (530, N'Bendroflumethiazide/Nadolol (Oral Pill)', 1316354, N'Bendroflumethiazide', N'd2d226ea-1624-47ee-82bf-e9660b75029f', CAST(N'2013-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (531, N'BENGAY (Topical)', 901656, N'Menthol', N'bc34dc2a-fb50-4a58-8cdb-7d56426c6b37', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (532, N'BENGAY (Transdermal)', 901656, N'Menthol', N'f6ae09c0-5915-468c-8aec-16857c47df6b', CAST(N'2012-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (533, N'BENGAY ORIGINAL (Topical)', 901656, N'Menthol', N'8aede1af-1547-47c7-9317-528be697677f', CAST(N'2014-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (534, N'BENICAR (Oral Pill)', 40226742, N'olmesartan', N'b2d10788-e0e4-4ee8-8c47-d7f7ed44e3d9', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (535, N'BENICAR HCT (Oral Pill)', 974166, N'Hydrochlorothiazide', N'9b91af80-14ff-4ece-8647-4265b7fa6240', CAST(N'2014-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (536, N'BENOXYL (Soap)', 918172, N'Benzoyl Peroxide', N'06b7b534-9749-4f3d-ba4f-0787eb2e52e3', CAST(N'2014-08-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (537, N'BENSAL (Topical)', 964407, N'Salicylic Acid', N'4b8ccee9-0f26-416d-a6e5-1261408df899', CAST(N'2014-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (538, N'Bentoquatam (Topical)', 915518, N'bentoquatam', N'd3b3f56d-d1d5-4435-8ac7-a2118f108a9b', CAST(N'2012-05-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (539, N'BENZACLIN (Topical)', 918172, N'Benzoyl Peroxide', N'4c6b2aca-d940-42af-a068-418f015d277a', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (540, N'Benzalkonium (Topical)', 916460, N'Benzalkonium', N'20cafd74-691f-45a0-b3e8-ca15a0f735ce', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (541, N'Benzalkonium/Benzocaine (Topical)', 916460, N'Benzalkonium', N'2f685c77-86d2-4558-80e0-550846598e76', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (542, N'Benzalkonium/Benzocaine (Vaginal)', 916460, N'Benzalkonium', N'4ff50f17-7679-4a7a-994a-bda6cd23cb90', CAST(N'2013-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (543, N'Benzalkonium/Benzocaine/Zinc chloride (Oral Gel)', 916460, N'Benzalkonium', N'77f84651-7706-4042-acdd-dc68ba97771d', CAST(N'2013-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (544, N'Benzalkonium/Camphor (Topical)', 916460, N'Benzalkonium', N'70afbecc-f39b-48d7-9839-907a786a8c29', CAST(N'2013-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (545, N'Benzalkonium/Lidocaine (Topical)', 916460, N'Benzalkonium', N'0af5dc2e-09ce-4bc9-911f-ec2fd8f1e426', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (546, N'Benzalkonium/Pramoxine (Topical)', 916460, N'Benzalkonium', N'a092b2ff-18fb-481a-a17d-984a91cbaec7', CAST(N'2013-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (547, N'BENZAMYCIN (Topical)', 918172, N'Benzoyl Peroxide', N'67823063-91a6-4867-a855-7ce0a4a09bd6', CAST(N'2014-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (548, N'BENZEDREX (Nasal)', 954036, N'propylhexedrine', N'03a8ef3c-a808-6208-e054-00144ff8d46c', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (549, N'BENZEFOAM (Topical)', 918172, N'Benzoyl Peroxide', N'11c49c9d-0164-4e91-881f-34e02987a45d', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (550, N'BENZEPRO (Topical)', 918172, N'Benzoyl Peroxide', N'890ed265-1217-4fa6-b7f1-a7246dbe137e', CAST(N'2012-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (551, N'Benzethonium (Soap)', 916802, N'Benzethonium', N'd18f0132-fef2-4de5-a4ff-c6e0df9d7f11', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (552, N'Benzethonium (Topical)', 916802, N'Benzethonium', N'a2b08b63-decd-4f2b-98ab-8703d9a55f93', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (553, N'Benzethonium/Benzocaine (Topical)', 916802, N'Benzethonium', N'4b965cd3-bfe4-4aad-a52c-b747696baa1c', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (554, N'Benzethonium/Benzocaine/Menthol (Topical)', 916802, N'Benzethonium', N'b780da38-8568-43e1-ab4a-5b69e4f55b19', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (555, N'Benzethonium/Dyclonine (Topical)', 916802, N'Benzethonium', N'37a75879-accb-4a6a-b8dd-558b94450fc4', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (556, N'Benzethonium/Lidocaine (Topical)', 916802, N'Benzethonium', N'09b1372c-a5a3-4d89-9b8e-4523f6a0341f', CAST(N'2014-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (557, N'Benzoate/Hyoscyamine/Methenamine/Methylene blue/Phenyl salicylate (Oral Pill)', 711452, N'Benzoate', N'694d83e1-7ec0-42af-b906-bdf9ac521cd8', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (558, N'Benzoate/Phenylacetate (Injectable)', 711452, N'Benzoate', N'd564f2b1-9fc7-4201-8066-d745ac3a671f', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (559, N'Benzocaine (Mucosal)', 917006, N'Benzocaine', N'4fa350ce-720e-4949-8376-e90f0a0f2d66', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (560, N'Benzocaine (Oral Cream)', 917006, N'Benzocaine', N'628eda31-8142-4cf3-b24b-f19b81068c82', CAST(N'2014-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (561, N'Benzocaine (Oral Disintegrating)', 917006, N'Benzocaine', N'a0e52795-e4ec-4205-8862-a51a2b2a7ae1', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (562, N'Benzocaine (Oral Gel)', 917006, N'Benzocaine', N'982e6c46-37ab-419b-acea-521b3c356a7c', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (563, N'Benzocaine (Oral Lozenge)', 917006, N'Benzocaine', N'7c161a17-cf82-4de3-8348-888c040df0f9', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (564, N'Benzocaine (Oral Ointment)', 917006, N'Benzocaine', N'58739ad0-8c8e-48cf-bec2-4336a67207ca', CAST(N'2013-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (565, N'Benzocaine (Oral Paste)', 917006, N'Benzocaine', N'387f52e1-157a-4b9e-8f98-9001c6880786', CAST(N'2013-08-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (566, N'Benzocaine (Topical)', 917006, N'Benzocaine', N'48aeca34-2cd5-41aa-98ba-606bda1f9ce3', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (567, N'Benzocaine/Butamben/Tetracaine (Topical)', 917006, N'Benzocaine', N'af1773c5-5d5b-4278-b551-30ad2df6d5b5', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (568, N'Benzocaine/Cetylpyridinium/Menthol (Mucosal)', 917006, N'Benzocaine', N'ed70911b-9da8-4e1d-97fa-66b18d28516a', CAST(N'2012-04-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (569, N'Benzocaine/Cetylpyridinium/Menthol/Zinc chloride (Mucosal)', 917006, N'Benzocaine', N'31690548-0a55-4d72-8733-591ba3a9be92', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (570, N'Benzocaine/Chloroxylenol (Topical)', 917006, N'Benzocaine', N'e2eca808-e97b-43e0-aa51-7025cc61c7a8', CAST(N'2013-03-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (571, N'Benzocaine/Compound benzoin tincture (USP) (Mucosal)', 917006, N'Benzocaine', N'fe1e32e8-ec36-4d1f-b3e4-913dbc852138', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (572, N'Benzocaine/Dextromethorphan (Oral Lozenge)', 917006, N'Benzocaine', N'c0cc32db-90f0-4106-8538-89821083ece1', CAST(N'2014-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (573, N'Benzocaine/Dextromethorphan/Menthol (Oral Lozenge)', 917006, N'Benzocaine', N'34e4234c-ed61-4795-99fe-d281cdb0af88', CAST(N'2010-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (574, N'Benzocaine/Docusate (Rectal)', 917006, N'Benzocaine', N'061acc74-eb3e-6887-e054-00144ff8d46c', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (575, N'Benzocaine/Glycerin (Mucosal)', 917006, N'Benzocaine', N'45561e94-2b54-4c19-be3e-b1949e1a5bbc', CAST(N'2012-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (576, N'Benzocaine/Isopropyl Alcohol (Topical)', 917006, N'Benzocaine', N'07f10ebb-103d-475f-b89e-bf7ff9f59568', CAST(N'2013-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (577, N'Benzocaine/Menthol (Oral Gel)', 917006, N'Benzocaine', N'c7936cbc-b132-4025-8439-8227b928c2fd', CAST(N'2013-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (578, N'Benzocaine/Menthol (Oral Lozenge)', 917006, N'Benzocaine', N'21fd7f46-3e46-4344-895f-9e6a67f006aa', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (579, N'Benzocaine/Menthol (Topical)', 917006, N'Benzocaine', N'0648c46c-a3db-4b82-971b-50a46098ac7e', CAST(N'2014-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (580, N'Benzocaine/Resorcinol (Vaginal)', 917006, N'Benzocaine', N'0286fcff-4172-4fb5-ba5d-139fc8efcf37', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (581, N'Benzocaine/Tetracaine (Oral Gel)', 917006, N'Benzocaine', N'324146a5-e473-4a54-8543-38ee567e815e', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (582, N'Benzocaine/Triclosan (Topical)', 917006, N'Benzocaine', N'cd738a0a-8058-465c-bdbd-76dc70aec005', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (583, N'Benzocaine/Zinc chloride (Mucosal)', 917006, N'Benzocaine', N'3bb651d9-d1c4-4c25-bcfc-cd13e2f0d3bf', CAST(N'2014-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (584, N'Benzoin (Topical)', 19011438, N'Benzoin', N'b33b5896-673b-498c-8a58-76ece8552f7a', CAST(N'2013-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (585, N'BENZO-JEL (Oral Gel)', 917006, N'Benzocaine', N'e735d183-609e-53d6-6640-293356e0a8f0', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (586, N'Benzonatate (Oral Pill)', 1136601, N'benzonatate', N'057214bd-9892-4e4f-bd93-4c123c30c8ba', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (587, N'BENZ-O-STHETIC (Mucosal)', 917006, N'Benzocaine', N'92f1bddd-71af-427a-bce6-727adca90999', CAST(N'2012-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (588, N'Benzoyl Peroxide (Soap)', 918172, N'Benzoyl Peroxide', N'3d8a20f7-0c4c-4c89-bddf-200194612b7a', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (589, N'Benzoyl Peroxide (Topical)', 918172, N'Benzoyl Peroxide', N'5a3f8bbf-22be-427b-83a9-f5573232ed5f', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (590, N'Benzoyl Peroxide/Clindamycin (Topical)', 918172, N'Benzoyl Peroxide', N'4c6b2aca-d940-42af-a068-418f015d277a', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (591, N'Benzoyl Peroxide/Erythromycin (Topical)', 918172, N'Benzoyl Peroxide', N'80397ecd-6069-43dc-b8ae-8703f4b66308', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (592, N'Benzoyl Peroxide/Hydrocortisone (Topical)', 918172, N'Benzoyl Peroxide', N'1f0edbd9-103e-4a49-b7a8-6552ef172c13', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (593, N'Benzphetamine (Oral Pill)', 719128, N'Benzphetamine', N'76c76f8e-d8e8-429a-ba67-c270e5ac6c83', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (594, N'Benztropine (Injectable)', 719174, N'Benztropine', N'd61eae0d-a29d-45ef-bd41-07123e0c21f9', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (595, N'Benztropine (Oral Pill)', 719174, N'Benztropine', N'9b93035b-34d6-4084-ba73-5dea72f9d124', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (596, N'Benzyl Alcohol (Oral Gel)', 919681, N'Benzyl Alcohol', N'0910d0d8-dc69-43bb-967d-08cab8ae917b', CAST(N'2014-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (597, N'Benzyl Alcohol (Topical)', 919681, N'Benzyl Alcohol', N'aeba2488-1ac3-4c02-833c-78a36859f029', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (598, N'Benzyl Alcohol/Calamine/DiphenhydrAMINE (Topical)', 919681, N'Benzyl Alcohol', N'6f68cbbb-6269-4bb3-8cc9-50b146703b42', CAST(N'2012-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (599, N'Benzyl Alcohol/Camphor/Menthol (Topical)', 919681, N'Benzyl Alcohol', N'4792a667-2378-4b3d-968d-9efb1866792f', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (600, N'Benzyl Alcohol/Pramoxine (Topical)', 919681, N'Benzyl Alcohol', N'03f85dbb-a13a-3126-e054-00144ff8d46c', CAST(N'2014-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (601, N'Benzyl benzoate (Topical)', 19036946, N'benzyl benzoate', N'ba27041b-0253-43a3-a1d6-4fb0ddee5ecb', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (602, N'Bepotastine (Ophthalmic)', 40166571, N'bepotastine', N'68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (603, N'BEPREVE (Ophthalmic)', 40166571, N'bepotastine', N'68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (604, N'Bermuda grass pollen extract (Injectable)', 40161082, N'Bermuda grass pollen extract', N'1974e1c0-c5d2-2630-e054-00144ff88e88', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (605, N'Bermuda grass smut extract (Injectable)', 40227684, N'Bermuda grass smut extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (606, N'Bermuda grass smut extract/Johnson grass smut extract (Injectable)', 40227684, N'Bermuda grass smut extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (607, N'BERRI-FREEZ (Topical)', 901656, N'Menthol', N'3e7d643b-33a3-416b-b289-9e4b58c797e1', CAST(N'2013-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (608, N'Besifloxacin (Ophthalmic)', 40161662, N'besifloxacin', N'a3e6d688-7e5e-4ca3-b27e-79756c322a32', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (609, N'BESIVANCE (Ophthalmic)', 40161662, N'besifloxacin', N'a3e6d688-7e5e-4ca3-b27e-79756c322a32', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (610, N'BETADINE (Ophthalmic)', 1750087, N'Povidone-Iodine', N'b026de1b-9949-4557-ac49-c7b0038c24cd', CAST(N'2011-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (611, N'BETADINE (Topical)', 1750087, N'Povidone-Iodine', N'2f07daa4-86ee-4a2d-ae3a-c3a7b574ed10', CAST(N'2014-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (612, N'Betaine (Oral Liquid)', 1520218, N'Betaine', N'05964dae-8b84-467c-af97-c82706a3cad2', CAST(N'2007-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (613, N'Betamethasone (Injectable)', 920458, N'Betamethasone', N'9a6a3871-4e02-47f9-a20e-a256b3f3c498', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (614, N'Betamethasone (Topical)', 920458, N'Betamethasone', N'ab332791-461b-4396-9b46-7f00bc04c087', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (615, N'Betamethasone/Calcipotriene (Topical)', 920458, N'Betamethasone', N'6c2ed55a-c7f2-42be-a194-bd498707ce3f', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (616, N'Betamethasone/Clotrimazole (Topical)', 920458, N'Betamethasone', N'1c18e5fc-bf82-47bc-bfd9-8d3e503569ba', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (617, N'Betamethasone/Clotrimazole/Gentamicin Sulfate (USP) (Otic)', 920458, N'Betamethasone', N'ff110754-cbc9-413d-a920-8bb3c455f8ae', CAST(N'2014-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (618, N'Betamethasone/Gentamicin Sulfate (USP) (Topical)', 920458, N'Betamethasone', N'a36457c1-6ace-456f-9438-228a6daf2542', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (619, N'BETAPACE (Oral Pill)', 1370109, N'Sotalol', N'21aea811-f47d-4a44-a552-dfc46d2773bf', CAST(N'2012-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (620, N'BETASEPT (Soap)', 1790812, N'Chlorhexidine', N'7e64e7bf-e88f-4056-c9e1-b49a277daa6c', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (621, N'BETASERON (Injectable)', 713196, N'interferon beta-1b', N'261fde67-efb2-4bd7-947e-4f68a56e76ff', CAST(N'2013-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (622, N'Betaxolol (Ophthalmic)', 1322081, N'Betaxolol', N'1fc0a413-4e6b-4ed7-9957-ace4c8cfab55', CAST(N'2014-09-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (623, N'Betaxolol (Oral Pill)', 1322081, N'Betaxolol', N'9a58c45d-4b14-44d7-86ed-2997ac6942dd', CAST(N'2014-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (624, N'Bethanechol (Oral Pill)', 937439, N'Bethanechol', N'138ed3d0-57db-4df1-8124-06033ecc76f0', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (625, N'BETHKIS (Inhalant)', 902722, N'Tobramycin', N'1cd3d47b-025f-4705-9daf-cf07725ec223', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (626, N'BETIMOL (Ophthalmic)', 902427, N'Timolol', N'3d7acd55-33b1-4a24-99ae-01f87b0dca1f', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (627, N'BETOPTIC (Ophthalmic)', 1322081, N'Betaxolol', N'31b9b263-11fd-4495-83dd-ababf0d70e9e', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (628, N'BETOPTIC S (Ophthalmic)', 1322081, N'Betaxolol', N'71659a34-efad-4147-81c7-da10985e9224', CAST(N'2011-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (629, N'Bexarotene (Oral Pill)', 1389888, N'bexarotene', N'2d1eb4bd-51f9-4c9b-9fb1-0be5e30a3dc5', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (630, N'Bexarotene (Topical)', 1389888, N'bexarotene', N'e415c4c8-3144-4172-94a0-f4f3243130ae', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (631, N'BEXTRA (Oral Pill)', 1103374, N'valdecoxib', N'caf64301-262c-45ca-acd1-a9d6696c584e', CAST(N'2007-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (632, N'BIAXIN (Oral Liquid)', 1750500, N'Clarithromycin', N'2e899f4a-a2e9-445c-a0ed-6ad811e997e6', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (633, N'BIAXIN (Oral Pill)', 1750500, N'Clarithromycin', N'7c3d8c2c-ece6-4aba-8b5a-3865402cffcf', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (634, N'Bicalutamide (Oral Pill)', 1344381, N'bicalutamide', N'427a872b-1b0b-41cf-aca2-49ce0163c7e6', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (635, N'BICLORA (Oral Liquid)', 1150886, N'chlophedianol', N'c588736a-250b-4fc6-b221-b4b51052b032', CAST(N'2013-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (636, N'BICNU (Injectable)', 1350066, N'Carmustine', N'd6cbb63c-e0b1-43ee-ad6f-408da0772079', CAST(N'2013-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (637, N'BIDEX (Oral Pill)', 1163944, N'Guaifenesin', N'41e795d8-755a-41d0-b1ce-804334559e09', CAST(N'2013-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (638, N'BIDIL (Oral Pill)', 1373928, N'Hydralazine', N'c21325a9-cd57-4e39-98f2-0727ed8abb2d', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (639, N'BIFERARX (Oral Pill)', 19111620, N'Folic Acid', N'a7c1400a-d230-45db-afff-d5f70b091ee9', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (640, N'BILTRICIDE (Oral Pill)', 1750461, N'Praziquantel', N'34ce1cdd-648e-4f1e-8512-bf3d4cc22eb9', CAST(N'2015-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (641, N'Bimatoprost (Ophthalmic)', 904525, N'bimatoprost', N'ec9097e7-4be4-4e62-99c3-24b48244c9f2', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (642, N'BIOFLEXOR (Topical)', 901656, N'Menthol', N'455353d1-74dc-4b54-9da8-9ab5b81d14be', CAST(N'2014-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (643, N'BIOFREEZE (Topical)', 901656, N'Menthol', N'a8d59d45-0e85-43d1-affd-bbe922c4acb1', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (644, N'BIOTENE DRY MOUTH (Toothpaste)', 19068715, N'monofluorophosphate', N'a47a6502-efb2-4072-9562-cbe293531c2b', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (645, N'BISAC-EVAC (Rectal)', 924939, N'Bisacodyl', N'fc6dc813-717e-5e5c-4b72-9e46e40e9c40', CAST(N'2012-09-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (646, N'Bisacodyl (Oral Pill)', 924939, N'Bisacodyl', N'2caa9488-eacb-4c0f-81f5-5d25397a4fb4', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (647, N'Bisacodyl (Rectal)', 924939, N'Bisacodyl', N'2ce32d23-a0e3-4dc3-a03c-0aeddf6e2ab4', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (648, N'BISCO-LAX (Rectal)', 924939, N'Bisacodyl', N'2a1b271e-ae17-4284-bfa1-4d0e3c75fcc3', CAST(N'2011-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (649, N'Bismuth subsalicylate (Chewable)', 937791, N'bismuth subsalicylate', N'ee478df8-8dda-4d43-bcdf-5b950a348627', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (650, N'Bismuth subsalicylate (Oral Liquid)', 937791, N'bismuth subsalicylate', N'ae8b3196-6f4e-4760-af6a-d28cf234078b', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (651, N'Bismuth subsalicylate (Oral Pill)', 937791, N'bismuth subsalicylate', N'0f02f1a4-3ea4-43de-bfdb-b9cb7626f92a', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (652, N'Bisoprolol (Oral Pill)', 1338005, N'Bisoprolol', N'd82243b9-3e56-4a2b-8750-cb95ec106885', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (653, N'Bisoprolol/Hydrochlorothiazide (Oral Pill)', 1338005, N'Bisoprolol', N'b9ee689a-ea12-435d-b01c-70d45891e62f', CAST(N'2015-02-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (654, N'Bitter dock pollen extract (Injectable)', 40228117, N'bitter dock pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (655, N'Bitternut hickory pollen extract (Injectable)', 40171925, N'bitternut hickory pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (656, N'Bivalirudin (Injectable)', 19084670, N'bivalirudin', N'ce56f806-7845-429d-a1ce-c2dbf79b22eb', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (657, N'Black walnut pollen extract (Injectable)', 40161692, N'black walnut pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (658, N'Bleomycin (Injectable)', 1329241, N'Bleomycin', N'b5806c40-12ce-48e3-8abd-9f8997ef4428', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (659, N'BLEPHAMIDE (Ophthalmic)', 1550557, N'prednisolone', N'e88d861a-77dd-4e4c-a0c8-d9863cd16322', CAST(N'2014-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (660, N'BLINK TEARS (Ophthalmic)', 948490, N'Polyethylene Glycol 400', N'6f7e06c3-204d-459a-af8f-c46be9ad0e8d', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (661, N'BLISTEX COLD & ALLERGY LIP SOOTHER (Topical)', 916662, N'dimethicone', N'5db6db29-f6eb-498f-8d80-76e9c36b8874', CAST(N'2011-12-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (662, N'BLISTEX KANKA (Mucosal)', 917006, N'Benzocaine', N'eebc03ba-f849-4e70-a653-834f383b6aa4', CAST(N'2013-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (663, N'BLISTEX MEDICATED LIP (Topical)', 938205, N'Camphor', N'63300820-80ca-432f-b86d-ef15d878671b', CAST(N'2012-11-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (664, N'BLOXIVERZ (Injectable)', 717136, N'Neostigmine', N'79ee2111-d65c-11e1-9b23-0800200c9a66', CAST(N'2014-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (665, N'Blue beech pollen extract (Injectable)', 40171961, N'blue beech pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (666, N'Blue spruce pollen extract (Injectable)', 40171965, N'blue spruce pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (667, N'BONINE (Chewable)', 994341, N'Meclizine', N'0b4b55cd-063e-4d0e-911c-8e03886e15d3', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (668, N'BOROFAIR (Otic)', 929549, N'Acetic Acid', N'040850b0-68c0-4160-b3a8-271e7ec4cde9', CAST(N'2009-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (669, N'BOROLEUM (Topical)', 938205, N'Camphor', N'00bd405f-c1c2-402d-bc2e-fa25c8ffaa25', CAST(N'2013-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (670, N'BOSULIF (Oral Pill)', 42900401, N'bosutinib', N'adc84ad5-a04d-4fee-9ba8-91f7abd928e3', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (671, N'Bosutinib (Oral Pill)', 42900401, N'bosutinib', N'adc84ad5-a04d-4fee-9ba8-91f7abd928e3', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (672, N'Botrytis cinerea extract (Injectable)', 40161103, N'Botrytis cinerea extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (673, N'Botulism Immune Globulin IV Human (Injectable)', 19072699, N'Botulism Immune Globulin IV Human', N'9ec59262-35c1-4d8e-8451-a7cfbacb0675', CAST(N'2014-11-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (674, N'Box elder maple pollen extract (Injectable)', 40161593, N'box elder maple pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (675, N'BRAVELLE (Injectable)', 1515417, N'Urofollitropin', N'46f7740f-c879-4a77-9a16-2821fd772641', CAST(N'2006-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (676, N'Bread mold fungus extract (Injectable)', 40175794, N'bread mold fungus extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (677, N'BREVIBLOC (Injectable)', 19063575, N'esmolol', N'595cc3d5-1306-4828-aefa-5595219ffd62', CAST(N'2015-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (678, N'BREVITAL (Injectable)', 19005015, N'Methohexital', N'468a7188-2e77-480f-8c68-6e2e9b6b47fd', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (679, N'Brimonidine (Ophthalmic)', 915542, N'brimonidine', N'bc1785c5-1448-4791-9868-2fbbc8703b3b', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (680, N'Brimonidine/Timolol (Ophthalmic)', 915542, N'brimonidine', N'feaf1480-a4b8-4486-992a-96be3a596243', CAST(N'2013-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (681, N'BRINTELLIX (Oral Pill)', 44507700, N'vortioxetine', N'4b0700c9-b417-4c3a-b36f-de461e125bd3', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (682, N'Brinzolamide (Ophthalmic)', 938044, N'brinzolamide', N'e9ea2ae7-1b98-4034-9fba-8ce2225e0145', CAST(N'2012-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (683, N'BRISDELLE (Oral Pill)', 722031, N'Paroxetine', N'bf208751-e6d8-11e1-aff1-0800200c9a66', CAST(N'2014-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (684, N'Broadleaf cattail pollen extract (Injectable)', 42709317, N'broadleaf cattail pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (685, N'BROMDAY (Ophthalmic)', 1139179, N'bromfenac', N'234a2447-90a7-4b8a-a344-7eef1e5daa6a', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (686, N'BROMFED DM (Oral Liquid)', 1130863, N'Brompheniramine', N'ccdf22f3-171f-4c19-8273-fefa140d1969', CAST(N'2014-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (687, N'Bromfenac (Ophthalmic)', 1139179, N'bromfenac', N'3296f72b-62ba-d417-132b-30c4a6166609', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (688, N'Bromocriptine (Oral Pill)', 730548, N'Bromocriptine', N'f85296ab-a104-496f-a23d-e0a88cf91ec7', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (689, N'Brompheniramine (Oral Liquid)', 1130863, N'Brompheniramine', N'4a03c41d-4a89-4e74-b287-ce166058458a', CAST(N'2011-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (690, N'Brompheniramine/Codeine/Phenylephrine (Oral Liquid)', 1130863, N'Brompheniramine', N'41c354cd-5e98-47ac-a81b-9c3915924c93', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (691, N'Brompheniramine/Codeine/Pseudoephedrine (Oral Liquid)', 1130863, N'Brompheniramine', N'f07920ad-7f4b-48d6-8c86-d5a257ff91c6', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (692, N'Brompheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', 1130863, N'Brompheniramine', N'bd86d5e2-f4e9-4c15-9a5c-15f91f10d743', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (693, N'Brompheniramine/Dextromethorphan/Pseudoephedrine (Oral Liquid)', 1130863, N'Brompheniramine', N'0654b093-2067-492f-a0bc-647dac430bde', CAST(N'2014-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (694, N'Brompheniramine/Dihydrocodeine/Phenylephrine (Oral Liquid)', 1130863, N'Brompheniramine', N'315a70bc-bfd8-471d-9379-d2746823537d', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (695, N'Brompheniramine/Dihydrocodeine/Pseudoephedrine (Oral Liquid)', 1130863, N'Brompheniramine', N'4de68448-1f01-4ca1-b002-15589999de0f', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (696, N'Brompheniramine/Phenylephrine (Chewable)', 1130863, N'Brompheniramine', N'655b4796-6ffc-c27f-b66e-d2ae0c7ad053', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (697, N'Brompheniramine/Phenylephrine (Oral Liquid)', 1130863, N'Brompheniramine', N'1ee8e5fb-cd12-4f37-a0c7-dbf386313ab8', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (698, N'Brompheniramine/Phenylephrine (Oral Pill)', 1130863, N'Brompheniramine', N'9aeaffc0-be85-4ca7-ae67-d439ccfe6511', CAST(N'2012-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (699, N'Brompheniramine/Pseudoephedrine (Oral Liquid)', 1130863, N'Brompheniramine', N'4eba1542-8062-434a-a364-490a85ccc680', CAST(N'2013-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (700, N'Brompheniramine/Pseudoephedrine (Oral Pill)', 1130863, N'Brompheniramine', N'4ae74ab3-c1f7-4347-9833-16553cf9969d', CAST(N'2012-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (701, N'BRONCOTRON (Oral Liquid)', 1119510, N'Dextromethorphan', N'6cbf83f6-cbf4-4e5b-a383-6d71124547bc', CAST(N'2011-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (702, N'BRONKAID (Oral Pill)', 1143374, N'Ephedrine', N'699e7629-5e8a-4dac-b494-fe42698ee460', CAST(N'2015-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (703, N'BROVEX PEB (Oral Liquid)', 1130863, N'Brompheniramine', N'ceb99dea-44ca-40c8-b479-da97707c513f', CAST(N'2011-04-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (704, N'Budesonide (Inhalant)', 939259, N'Budesonide', N'4f339e84-33be-44d1-bbae-e0579da12c7f', CAST(N'2015-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (705, N'Budesonide (Oral Pill)', 939259, N'Budesonide', N'7633c9b3-dfb5-446f-a260-e44b6e48afa2', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (706, N'BUFFERIN (Oral Pill)', 1112807, N'Aspirin', N'802c81ff-e2ff-4d91-8589-55b1d1859b42', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (707, N'Bumetanide (Injectable)', 932745, N'Bumetanide', N'00b71dc2-1851-4670-a48e-b4eb89d48d0b', CAST(N'2014-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (708, N'Bumetanide (Oral Pill)', 932745, N'Bumetanide', N'509dba6d-7e53-02ed-8d86-fe83a2126250', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (709, N'BUMINATE (Injectable)', 1344143, N'Albumin Human, USP', N'4efc78ab-6b74-4ce9-bd3e-9411130ea81b', CAST(N'2014-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (710, N'BUNAVAIL (Buccal)', 1133201, N'Buprenorphine', N'12b963dd-f189-11e3-ac10-0800200c9a66', CAST(N'2014-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (711, N'BUPAP (Oral Pill)', 1125315, N'Acetaminophen', N'30e483da-eaf1-4c73-9fed-333337f9ba86', CAST(N'2014-12-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (712, N'BUPHENYL (Oral Pill)', 1539954, N'phenylbutyrate', N'aa638c13-3048-42b2-8a8b-79dae040ea35', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (713, N'BUPHENYL (Oral Powder)', 1539954, N'phenylbutyrate', N'aa638c13-3048-42b2-8a8b-79dae040ea35', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (714, N'Bupivacaine (Injectable)', 732893, N'Bupivacaine', N'5e2f3987-624f-4cbf-9cf1-fad4f181a78f', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (715, N'Bupivacaine liposome (Injectable)', 40244151, N'Bupivacaine liposome', N'bb5a9e59-0f51-11df-8a39-0800200c9a66', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (716, N'Bupivacaine/EPINEPHrine (Injectable)', 732893, N'Bupivacaine', N'6a60cb55-530a-41ee-bc78-971eaf9f0850', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (717, N'Bupivacaine/fentaNYL (Injectable)', 732893, N'Bupivacaine', N'e364b224-8fb5-45cd-8e29-adb09afae80f', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (718, N'BUPRENEX (Injectable)', 1133201, N'Buprenorphine', N'b086772e-d15a-4d13-b1a2-38bfbde1f18c', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (719, N'Buprenorphine (Injectable)', 1133201, N'Buprenorphine', N'6795ade9-e06e-4daa-bb45-821901a055f5', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (720, N'Buprenorphine (Sublingual)', 1133201, N'Buprenorphine', N'5efb3e1f-e908-4ed4-85d1-7961878d7fc5', CAST(N'2015-05-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (721, N'Buprenorphine/Naloxone (Buccal)', 1133201, N'Buprenorphine', N'12b963dd-f189-11e3-ac10-0800200c9a66', CAST(N'2014-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (722, N'Buprenorphine/Naloxone (Oral Strip)', 1133201, N'Buprenorphine', N'8a5edcf9-828c-4f97-b671-268ab13a8ecd', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (723, N'Buprenorphine/Naloxone (Sublingual)', 1133201, N'Buprenorphine', N'6cccf229-9611-4b6f-8f1b-acc8ff1ed3f8', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (724, N'buPROPion (Oral Pill)', 750982, N'Bupropion', N'714bd852-e9b1-4bda-8685-02f16c937222', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (725, N'Bur oak pollen extract (Injectable)', 40172010, N'bur oak pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (726, N'BURN JEL PLUS (Topical)', 989878, N'Lidocaine', N'401023a5-6634-4c04-b6a6-55b78a9c79fe', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (727, N'Burning bush pollen extract (Injectable)', 40161629, N'burning bush pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (728, N'Burweed marshelder pollen extract/Rough marshelder pollen extract (Injectable)', 40161637, N'burweed marshelder pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (729, N'busPIRone (Oral Pill)', 733301, N'Buspirone', N'8ed30856-84d2-dd2b-04d4-b101f6030bc0', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (730, N'Busulfan (Injectable)', 1333357, N'Busulfan', N'03dc50f9-c7bd-4c0c-8bbb-c1216ec90c95', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (731, N'Busulfan (Oral Pill)', 1333357, N'Busulfan', N'bf456fc7-3a79-47f7-8acc-600b5e2f0dc2', CAST(N'2012-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (732, N'BUSULFEX (Injectable)', 1333357, N'Busulfan', N'03dc50f9-c7bd-4c0c-8bbb-c1216ec90c95', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (733, N'Butabarbital (Oral Pill)', 959174, N'butabarbital', N'7883bbc0-0874-11dc-a818-0002a5d5c51b', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (734, N'Butenafine (Topical)', 958396, N'butenafine', N'36f09b0c-454a-4489-92be-8e6902874a74', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (735, N'BUTISOL (Oral Pill)', 959174, N'butabarbital', N'7883bbc0-0874-11dc-a818-0002a5d5c51b', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (736, N'Butorphanol (Injectable)', 1133732, N'Butorphanol', N'75d3fd4e-9dc3-8bbc-140e-0213ef135ab0', CAST(N'2013-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (737, N'Butorphanol (Nasal)', 1133732, N'Butorphanol', N'9c069ce5-ea67-4f42-afe4-30b01b4ce24d', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (738, N'BYSTOLIC (Oral Pill)', 1314577, N'nebivolol', N'673f5ad2-c09b-4a89-9407-efdadd007917', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (739, N'Cabergoline (Oral Pill)', 1558471, N'cabergoline', N'0e2a2cb6-e453-4060-95f4-a8ce4ccecc10', CAST(N'2014-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (740, N'Cabozantinib (Oral Pill)', 43012292, N'cabozantinib', N'1a0c3bea-c87b-4d25-bb44-5f0174da6b34', CAST(N'2012-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (741, N'CADUET (Oral Pill)', 1332418, N'Amlodipine', N'909fad96-a941-443a-a39f-4f93607410fb', CAST(N'2010-03-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (742, N'CAFCIT (Injectable)', 1134439, N'Caffeine', N'fbcd234e-57e1-4da2-a96c-e3f7b7cf6ec0', CAST(N'2014-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (743, N'CAFCIT (Oral Liquid)', 1134439, N'Caffeine', N'fbcd234e-57e1-4da2-a96c-e3f7b7cf6ec0', CAST(N'2014-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (744, N'CAFERGOT (Oral Pill)', 1134439, N'Caffeine', N'1c066197-dea6-4705-9b4a-8703dd564a2a', CAST(N'2011-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (745, N'Caffeine (Injectable)', 1134439, N'Caffeine', N'cc632825-e0a4-4524-8d7d-ce926efab3d6', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (746, N'Caffeine (Oral Liquid)', 1134439, N'Caffeine', N'cc632825-e0a4-4524-8d7d-ce926efab3d6', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (747, N'Caffeine (Oral Pill)', 1134439, N'Caffeine', N'cc55f4e6-5304-4310-b3e5-f0a4e9aa5bf8', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (748, N'Caffeine/Ergotamine (Oral Pill)', 1134439, N'Caffeine', N'6a105e44-b558-45c1-9c91-fe1f3dfc5bd5', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (749, N'Caffeine/Ergotamine (Rectal)', 1134439, N'Caffeine', N'3a31ad0c-7bdd-544b-f5df-a99d04cf541c', CAST(N'2015-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (750, N'Caffeine/Magnesium Salicylate (Oral Pill)', 1134439, N'Caffeine', N'e02a39f9-1c8c-4d38-b394-3f5b7062932c', CAST(N'2012-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (751, N'CAL GEST (Chewable)', 19035704, N'Calcium Carbonate', N'a43184c4-d225-4539-b651-4d96535f208f', CAST(N'2014-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (752, N'CALADRYL CLEAR (Topical)', 927478, N'pramoxine', N'fca6f08b-7fa0-4ae6-bce3-61f3bcae4332', CAST(N'2013-08-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (753, N'Calamine (Topical)', 902616, N'Calamine', N'd9d6ea6f-0793-3c9d-f92c-a9e2f0bee20b', CAST(N'2012-07-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (754, N'Calamine/Menthol/Petrolatum/Zinc Oxide (Paste)', 902616, N'Calamine', N'1295cfcc-5b61-481b-964b-f53ffd0cb58e', CAST(N'2012-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (755, N'Calamine/Menthol/Zinc Oxide (Topical)', 902616, N'Calamine', N'7b52374e-1119-4145-b87b-96b7212fdc3e', CAST(N'2013-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (756, N'Calamine/Phenol/Zinc Oxide (Topical)', 902616, N'Calamine', N'8e68efc4-4c95-41c0-9fed-32297b1b2edc', CAST(N'2014-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (757, N'Calamine/Pramoxine (Topical)', 902616, N'Calamine', N'a042095e-a139-4c5d-8ffb-39e37da2a93a', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (758, N'Calamine/Zinc Oxide (Topical)', 902616, N'Calamine', N'777b0e66-1bce-4483-9dad-c46796fd6f23', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (759, N'CALAZIME SKIN PROTECTANT (Paste)', 902616, N'Calamine', N'1295cfcc-5b61-481b-964b-f53ffd0cb58e', CAST(N'2012-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (760, N'Calcipotriene (Topical)', 908921, N'calcipotriene', N'21378c25-5622-8bf7-1a8c-b05940a846a0', CAST(N'2015-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (761, N'CALCITRENE (Topical)', 908921, N'calcipotriene', N'94d4f46a-f254-4fe2-b4bd-7a533d6324fe', CAST(N'2012-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (762, N'Calcitriol (Injectable)', 19035631, N'Calcitriol', N'406151ad-6c0a-4d66-86fc-e076df9671a3', CAST(N'2013-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (763, N'Calcitriol (Oral Liquid)', 19035631, N'Calcitriol', N'dc293a1c-995d-40fa-ac99-68df12eb6d9e', CAST(N'2012-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (764, N'Calcitriol (Oral Pill)', 19035631, N'Calcitriol', N'bebefb2a-7365-48e2-9681-83ed4b41e26e', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (765, N'Calcitriol (Topical)', 19035631, N'Calcitriol', N'a1567da9-af74-4afd-9ac5-8b53ec5d7cbf', CAST(N'2015-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (766, N'Calcium acetate (Oral Pill)', 951469, N'calcium acetate', N'b02f8473-3220-4651-9c7f-993645f43a82', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (767, N'Calcium Carbonate (Chewable)', 19035704, N'Calcium Carbonate', N'21e9152c-6e83-454d-a782-00c2ced5b3fa', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (768, N'Calcium Carbonate (Oral Liquid)', 19035704, N'Calcium Carbonate', N'594e80a9-b2fa-4a69-ab70-c25e78b1a40d', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (769, N'Calcium Carbonate (Oral Pill)', 19035704, N'Calcium Carbonate', N'1cd621d0-58b9-45f7-80fb-e13ca68596a1', CAST(N'2014-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (770, N'Calcium Carbonate (Oral Powder)', 19035704, N'Calcium Carbonate', N'88cadd90-c6f4-4229-aed4-bf3e4ce6dbf5', CAST(N'2014-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (771, N'Calcium Carbonate/Cholecalciferol (Oral Pill)', 19035704, N'Calcium Carbonate', N'bba98e57-7056-4143-8fcd-95e25539d087', CAST(N'2013-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (772, N'Calcium Carbonate/Famotidine/Magnesium Hydroxide (Chewable)', 19035704, N'Calcium Carbonate', N'cd787644-2809-478c-bf8f-01ab8c306d61', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (773, N'Calcium Carbonate/Folic Acid/Magnesium carbonate (Oral Pill)', 19035704, N'Calcium Carbonate', N'e74e25aa-2f4c-4026-bc2b-7bb21aaf6fc5', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (774, N'Calcium Carbonate/Magnesium carbonate (Oral Pill)', 19035704, N'Calcium Carbonate', N'af124c72-0a35-4305-abd8-2b0ebf84da08', CAST(N'2014-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (775, N'Calcium Carbonate/Magnesium Hydroxide (Chewable)', 19035704, N'Calcium Carbonate', N'8806c912-ab83-4f45-ac78-e826bb3143d4', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (776, N'Calcium Carbonate/Magnesium Hydroxide (Oral Liquid)', 19035704, N'Calcium Carbonate', N'7fbc654b-a0d4-408c-bb5a-eb50b7b54382', CAST(N'2012-08-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (777, N'Calcium Carbonate/Simethicone (Chewable)', 19035704, N'Calcium Carbonate', N'41d17406-3653-4889-81df-6270b7b5d3c7', CAST(N'2014-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (778, N'Calcium Chloride (Injectable)', 19036781, N'Calcium Chloride', N'98de04ad-784f-4816-acbf-2b1ebfaa4005', CAST(N'2013-04-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (779, N'Calcium Chloride/Fibrinogen/Fibrinolysis inhibitor/Thrombin (Topical)', 19036781, N'Calcium Chloride', N'e1aca067-0c96-4025-88bc-bd2345a46a30', CAST(N'2012-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (780, N'Calcium Chloride/Lactate/Potassium Chloride/Sodium Chloride (Injectable)', 19036781, N'Calcium Chloride', N'c64bb1f7-715e-42dd-a8cb-09921cb56f23', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (781, N'Calcium Chloride/Lactate/Potassium Chloride/Sodium Chloride (Irrigation)', 19036781, N'Calcium Chloride', N'f09f80bf-2f8b-4420-865d-aec2d5e5cd4d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (782, N'Calcium Chloride/Potassium Chloride/Sodium Chloride (Injectable)', 19036781, N'Calcium Chloride', N'76140511-686a-42c2-b3c1-32cfb71d24cb', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (783, N'CALCIUM DISODIUM VERSENATE (Injectable)', 43013616, N'Edetate Calcium', N'f960dbfa-b00c-4f3e-ad32-ed6a5deea831', CAST(N'2015-04-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (784, N'Calcium Gluconate (Injectable)', 19037038, N'Calcium Gluconate', N'c069b9bf-a17f-4727-9eb3-a6c69af883f8', CAST(N'2012-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (785, N'Calcium Gluconate (Oral Pill)', 19037038, N'Calcium Gluconate', N'd2239df8-199a-4c70-b56c-6ee78bb78919', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (786, N'Calcium polycarbophil (Oral Pill)', 940426, N'calcium polycarbophil', N'968a8b7d-b9ea-464a-8ff8-8e259f438bc3', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (787, N'CALDECORT (Topical)', 975125, N'Hydrocortisone', N'258723cf-d72e-49ee-8eaf-03fc00fa4a7c', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (788, N'CALDESENE (Topical)', 1036157, N'Starch', N'9f12dee2-7afa-45e9-a729-0fd42bb77715', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (789, N'CALDOLOR (Injectable)', 1177480, N'Ibuprofen', N'1eaa7790-f1a1-4f51-b10a-cbbaf033f684', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (790, N'Calfactant (Inhalant)', 19089891, N'calfactant', N'315c128a-272d-4c57-bfbe-1a8b3402af08', CAST(N'2011-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (791, N'California black walnut pollen extract (Injectable)', 40161146, N'California black walnut pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (792, N'California mugwort pollen extract (Injectable)', 40169509, N'California mugwort pollen extract', N'02de3b96-7daa-4776-8e2e-c21cf282f091', CAST(N'2010-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (793, N'CALMOL (Rectal)', 951112, N'cocoa butter', N'5516f800-d3fa-4b90-a3eb-c0bdf3183b9b', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (794, N'CALMOSEPTINE OINTMENT (Topical)', 901656, N'Menthol', N'0e4d23b8-bb10-4b91-ace5-fe41b914004a', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (795, N'CALPHRON (Oral Pill)', 951469, N'calcium acetate', N'86f2e3d2-dbe3-400b-91cf-a4bf41db1342', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (796, N'CAMBIA (Oral Liquid)', 1124300, N'Diclofenac', N'd7335594-50c9-4ae2-a3e3-b9a375187b62', CAST(N'2012-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (797, N'CAMPATH (Injectable)', 1312706, N'alemtuzumab', N'4f5f7255-7abc-4328-bd1a-ceaf139ef3e0', CAST(N'2014-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (798, N'CAMPHO-PHENIQUE (Topical)', 938205, N'Camphor', N'0f888d89-b241-4a51-e054-00144ff8d46c', CAST(N'2015-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (799, N'Camphor (Inhalant)', 938205, N'Camphor', N'007909d6-7c4b-47f9-bc4c-514bda647651', CAST(N'2014-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (800, N'Camphor (Topical)', 938205, N'Camphor', N'36edeed8-894b-4f49-bb9a-9b43181b4906', CAST(N'2014-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (801, N'Camphor/Dimethicone/Menthol/Phenol (Topical)', 938205, N'Camphor', N'63300820-80ca-432f-b86d-ef15d878671b', CAST(N'2012-11-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (802, N'Camphor/Eucalyptus oil/Menthol (Topical)', 938205, N'Camphor', N'4cd2f751-e072-4f4e-b059-ed1dfcc60c6b', CAST(N'2015-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (803, N'Camphor/Menthol (Topical)', 938205, N'Camphor', N'f406161e-a9c4-47d1-8b21-93b1b7938063', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (804, N'Camphor/Menthol/Methyl salicylate (Topical)', 938205, N'Camphor', N'0005e125-fbf2-4f90-8960-99e00250fc20', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (805, N'Camphor/Menthol/Methyl salicylate (Transdermal)', 938205, N'Camphor', N'47083271-4584-445a-be2d-c80b34503cc0', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (806, N'Camphor/Menthol/Petrolatum (Topical)', 938205, N'Camphor', N'00bd405f-c1c2-402d-bc2e-fa25c8ffaa25', CAST(N'2013-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (807, N'Camphor/Phenol (Topical)', 938205, N'Camphor', N'0d914664-f8d4-2ff7-e054-00144ff88e88', CAST(N'2015-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (808, N'CAMPRAL (Oral Pill)', 19043959, N'acamprosate', N'fe6f754f-62b4-4c86-805d-221332409516', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (809, N'CAMPTOSAR (Injectable)', 1367268, N'irinotecan', N'f2f20b37-8bd4-4e8a-b596-be80b48ca2f1', CAST(N'2015-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (810, N'Canadian bluegrass pollen extract (Injectable)', 40227802, N'Canadian bluegrass pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (811, N'Canagliflozin/metFORMIN (Oral Pill)', 43526465, N'canagliflozin', N'6868666b-c25e-40d1-9d1f-306bbe9390c1', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (812, N'CANASA (Rectal)', 968426, N'mesalamine', N'357e0e6b-cfbd-454c-82d7-cfc460dc0d68', CAST(N'2010-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (813, N'Candesartan (Oral Pill)', 1351557, N'candesartan', N'a67f4f53-76c7-4239-9dd6-fef8e8019e9a', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (814, N'Candesartan/Hydrochlorothiazide (Oral Pill)', 1351557, N'candesartan', N'f3c4f7ed-e667-4528-a675-b032c2a4425d', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (815, N'CAPACET (Oral Pill)', 1125315, N'Acetaminophen', N'f3a37ce1-5082-4ac4-88a2-c8fadbd0b7b3', CAST(N'2013-11-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (816, N'CAPASTAT (Injectable)', 19026710, N'Capreomycin', N'808e4421-2b9c-41e1-a82c-39256b112ae8', CAST(N'2011-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (817, N'Capecitabine (Oral Pill)', 1337620, N'capecitabine', N'2777b481-7d7f-461a-b5e0-c09ce2990c34', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (818, N'CAPEX (Shampoo)', 996541, N'fluocinolone', N'a52763d0-7024-48a8-9cca-3127333dfb01', CAST(N'2010-11-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (819, N'Capreomycin (Injectable)', 19026710, N'Capreomycin', N'808e4421-2b9c-41e1-a82c-39256b112ae8', CAST(N'2011-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (820, N'Capsaicin (Topical)', 939881, N'Capsaicin', N'345c9159-0efe-436b-9068-3b717678936b', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (821, N'Capsaicin (Transdermal)', 939881, N'Capsaicin', N'ef5373aa-9857-4d01-95af-2d7716e54ae4', CAST(N'2014-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (822, N'Capsaicin/Lidocaine/Menthol/Methyl salicylate (Topical)', 939881, N'Capsaicin', N'85066887-44d0-4a4a-adee-670073e4b22c', CAST(N'2014-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (823, N'Capsaicin/Lidocaine/Menthol/Methyl salicylate (Transdermal)', 939881, N'Capsaicin', N'2587a121-2544-4409-92b3-5c4049e53161', CAST(N'2014-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (824, N'Capsaicin/Menthol (Topical)', 939881, N'Capsaicin', N'0096cca7-5671-4717-bc92-12170c1bcf2f', CAST(N'2014-04-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (825, N'Capsaicin/Menthol (Transdermal)', 939881, N'Capsaicin', N'59bd46fa-9460-416d-b4ef-6beeddda96cf', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (826, N'Capsaicin/Menthol/Methyl salicylate (Topical)', 939881, N'Capsaicin', N'fd7e50c9-5ed4-45d3-bc8d-c5583ca436be', CAST(N'2015-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (827, N'Capsaicin/Menthol/Methyl salicylate (Transdermal)', 939881, N'Capsaicin', N'a9343d24-8435-4a51-98a2-b7976cd369ab', CAST(N'2011-12-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (828, N'Captopril (Oral Pill)', 1340128, N'Captopril', N'851ff660-e6a4-48f8-a6d0-4c10dbb01836', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (829, N'Captopril/Hydrochlorothiazide (Oral Pill)', 1340128, N'Captopril', N'd826812e-ede7-49e7-8384-29ec5b142ef3', CAST(N'2014-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (830, N'CAPZASIN QUICK RELIEF (Topical)', 939881, N'Capsaicin', N'd6c313a3-8dc6-4231-95b6-ac9399e1c1be', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (831, N'CAPZASIN-HP (Topical)', 939881, N'Capsaicin', N'345c9159-0efe-436b-9068-3b717678936b', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (832, N'CAPZASIN-P (Topical)', 939881, N'Capsaicin', N'605703e8-b353-40df-9ac4-67a76b866d63', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (833, N'CARAC (Topical)', 955632, N'Fluorouracil', N'8379f1db-4255-4285-abd3-8ecdcaf03372', CAST(N'2014-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (834, N'CARAFATE (Oral Liquid)', 1036228, N'Sucralfate', N'0fb67b1c-b4c0-46f2-8a81-df1510e006aa', CAST(N'2014-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (835, N'Carbachol (Injectable)', 940183, N'Carbachol', N'f28d7a56-e079-4a8b-ad81-9a97c780de67', CAST(N'2011-07-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (836, N'carBAMazepine (Chewable)', 740275, N'Carbamazepine', N'e36ece79-544b-43b2-8cf9-ca9861b071b5', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (837, N'carBAMazepine (Oral Liquid)', 740275, N'Carbamazepine', N'536811ab-308b-4866-9185-9e4149483512', CAST(N'2011-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (838, N'carBAMazepine (Oral Pill)', 740275, N'Carbamazepine', N'ce5aec7a-e161-46bf-8fc0-afb41689e59a', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (839, N'Carbamide peroxide (Mucosal)', 958999, N'carbamide peroxide', N'086a0b82-e947-41c9-89e7-ba06483960c9', CAST(N'2012-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (840, N'Carbamide peroxide (Otic)', 958999, N'carbamide peroxide', N'dfd2a0a4-0cb6-4e19-addc-b9db2488dcbf', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (841, N'CARBASTAT (Injectable)', 940183, N'Carbachol', N'048af9c6-4866-4500-9914-cd7071a19b63', CAST(N'2006-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (842, N'CARBATUSS SYRUP (Oral Liquid)', 1140640, N'carbetapentane', N'8d886ec3-8ccf-4fd0-84d6-de9e858da0fb', CAST(N'2011-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (843, N'Carbenicillin (Oral Pill)', 1740546, N'Carbenicillin', N'02010995-9826-4a67-945b-f3022e6081df', CAST(N'2007-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (844, N'Carbetapentane/guaiFENesin (Oral Liquid)', 1140640, N'carbetapentane', N'c3a1a47a-27ce-4565-9d6a-a2d8314357a6', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (845, N'Carbetapentane/guaiFENesin/Phenylephrine (Oral Liquid)', 1140640, N'carbetapentane', N'8d886ec3-8ccf-4fd0-84d6-de9e858da0fb', CAST(N'2011-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (846, N'Carbidopa (Oral Pill)', 740560, N'Carbidopa', N'ff8e105b-7415-42d4-bbb2-b36cfb8945a5', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (847, N'Carbidopa/Entacapone/Levodopa (Oral Pill)', 740560, N'Carbidopa', N'dabb7f5d-03b3-4d46-951a-e41a1f8d69cc', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (848, N'Carbidopa/Levodopa (Oral Disintegrating)', 740560, N'Carbidopa', N'd26b56fa-d521-461b-a619-40b65862b644', CAST(N'2014-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (849, N'Carbidopa/Levodopa (Oral Pill)', 740560, N'Carbidopa', N'a15f5833-42f0-4890-9596-992eef0846e5', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (850, N'Carbidopa/Levodopa XR (Oral Pill)', 740560, N'Carbidopa', N'043db807-8381-4df8-b3a3-825988d63ef5', CAST(N'2015-05-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (851, N'Carbinoxamine (Oral Liquid)', 1141018, N'carbinoxamine', N'748c233b-6ab9-42d0-89ab-e7ead30f7947', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (852, N'Carbinoxamine (Oral Pill)', 1141018, N'carbinoxamine', N'3f4f633c-5c5d-4d52-abb8-dfa2896b40d2', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (853, N'CARBOCAINE (Injectable)', 702774, N'Mepivacaine', N'f00557a9-ec79-4c54-9d06-c71d2a8aff2c', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (854, N'CARBOCAINE WITH NEOCOBEFRIN (Injectable)', 19015395, N'Levonordefrin', N'f00557a9-ec79-4c54-9d06-c71d2a8aff2c', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (855, N'Carbon Dioxide (Inhalant)', 19046180, N'Carbon Dioxide', N'f4cf5b1b-ca57-4799-ae51-130f6fd5d058', CAST(N'2014-05-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (856, N'CARBOplatin (Injectable)', 1344905, N'Carboplatin', N'806736d3-215a-4df5-8187-97f2161e5a53', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (857, N'Carboxymethylcellulose (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'cd467181-9d56-4b11-9826-15b5357d0689', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (858, N'Carboxymethylcellulose/Glycerin (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'37e99aa8-02d6-4efb-a862-90bc7fcd5ca5', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (859, N'Carboxymethylcellulose/Hypromellose (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'c9dcab71-3ec8-45ff-83f0-132c6c6e63bd', CAST(N'2012-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (860, N'CARDENE (Injectable)', 1318137, N'Nicardipine', N'0d58f812-37bf-439f-b3f2-c31f8eefe22e', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (861, N'CARDIZEM (Oral Pill)', 1328165, N'Diltiazem', N'f3e7ecef-f360-4987-a4f5-933214130ab2', CAST(N'2015-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (862, N'CARIMUNE (Injectable)', 19117912, N'Immunoglobulin G', N'610b905a-50d3-48f0-919a-69cc99aab5a8', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (863, N'Carisoprodol (Oral Pill)', 749910, N'Carisoprodol', N'cfef5764-49ff-4ce2-84fe-5e421e4b0202', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (864, N'Carmustine (Implant)', 1350066, N'Carmustine', N'783ec80b-95d7-44c7-8b90-fa7394f50f67', CAST(N'2010-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (865, N'Carmustine (Injectable)', 1350066, N'Carmustine', N'd6cbb63c-e0b1-43ee-ad6f-408da0772079', CAST(N'2013-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (866, N'CARNITOR (Oral Liquid)', 1553610, N'Levocarnitine', N'b2cbc620-59fd-47b6-9e4b-7e3e31533a1c', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (867, N'CARNITOR (Oral Pill)', 1553610, N'Levocarnitine', N'd2133bc3-9c15-48bd-8b16-b8995a6a14cd', CAST(N'2015-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (868, N'Carteolol (Ophthalmic)', 950370, N'Carteolol', N'571fe550-399d-4296-835c-37aa1ab9b409', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (869, N'CARTERS LITTLE PILLS (Oral Pill)', 924939, N'Bisacodyl', N'4ee15f4b-070e-4f6a-a3ff-dbb5136f8db6', CAST(N'2012-02-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (870, N'Carvedilol (Oral Pill)', 1346823, N'carvedilol', N'c3f7f2f7-7309-4825-b868-13c6ef89fe86', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (871, N'CASTELLANI PAINT (Topical)', 923540, N'phenol', N'bf6845e5-16f3-4828-bfbf-2bc2596a02f3', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (872, N'Castor Oil (Oral Liquid)', 950933, N'Castor Oil', N'5fe0f114-67ae-44c5-906f-60e49a9a8475', CAST(N'2014-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (873, N'Castor Oil/Peruvian balsam (Topical)', 950933, N'Castor Oil', N'6bf98ba3-d9f6-4872-8220-a1b403226223', CAST(N'2012-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (874, N'Cat Hair Extract (Injectable)', 19095690, N'Cat Hair Extract', N'6f9e5a38-738c-470f-b9cf-4fcef6bc7f01', CAST(N'2012-01-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (875, N'Cat skin extract (Injectable)', 40161698, N'cat skin extract', N'01a914b7-51b5-4aab-952f-2eae56d25e9c', CAST(N'2009-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (876, N'CATAFLAM (Oral Pill)', 1124300, N'Diclofenac', N'1582c050-925a-4af8-a44f-948017946ae6', CAST(N'2011-03-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (877, N'CATAPRES (Oral Pill)', 1398937, N'Clonidine', N'd7f569dc-6bed-42dc-9bec-940a9e6b090d', CAST(N'2012-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (878, N'CAVERJECT (Injectable)', 1381504, N'Alprostadil', N'a295fc1e-d82c-4f44-bc2d-a552bf594c98', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (879, N'CAVILON DURABLE BARRIER CREAM (Topical)', 916662, N'dimethicone', N'4cc117f2-65be-4c7b-b182-0417acd5dc41', CAST(N'2012-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (880, N'CAVIRINSE (Mouthwash)', 19069022, N'Sodium Fluoride', N'e061e50c-cea2-4aea-b59c-3916829b253a', CAST(N'2010-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (881, N'CEDAX (Oral Liquid)', 1749083, N'ceftibuten', N'2dd58c88-142f-41ad-bc31-0a4fff074970', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (882, N'CEDAX (Oral Pill)', 1749083, N'ceftibuten', N'2dd58c88-142f-41ad-bc31-0a4fff074970', CAST(N'2010-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (883, N'CEENU (Oral Pill)', 1391846, N'Lomustine', N'17893de9-7d54-448c-9fca-d10642046d14', CAST(N'2012-12-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (884, N'Cefaclor (Oral Liquid)', 1768849, N'Cefaclor', N'9f919252-7a87-4386-a64c-5d8213f7e881', CAST(N'2012-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (885, N'Cefaclor (Oral Pill)', 1768849, N'Cefaclor', N'b093ec49-da83-40e3-8e1c-8a64b7f45d27', CAST(N'2013-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (886, N'Cefadroxil (Oral Liquid)', 1769535, N'Cefadroxil', N'30bb3686-87b4-4676-9ff5-e20deb8bff9d', CAST(N'2014-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (887, N'Cefadroxil (Oral Pill)', 1769535, N'Cefadroxil', N'bda86975-8c2f-4c4e-9a4c-a1a959f9336a', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (888, N'ceFAZolin (Injectable)', 1771162, N'Cefazolin', N'd3fe1e18-9e3e-4797-9fb4-275900fa9ff3', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (889, N'Cefdinir (Oral Liquid)', 1796458, N'cefdinir', N'542fb9ea-f289-43c3-81fa-555a632e6a45', CAST(N'2015-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (890, N'Cefdinir (Oral Pill)', 1796458, N'cefdinir', N'77e061e8-d3e2-4955-9f65-59510b5afc70', CAST(N'2015-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (891, N'Cefditoren (Oral Pill)', 1747005, N'cefditoren', N'd5050d0e-81d1-4707-a38a-e80de2aebf09', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (892, N'Cefixime (Chewable)', 1796435, N'Cefixime', N'5007152e-a679-4e85-ac3f-c46087812774', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (893, N'Cefixime (Oral Liquid)', 1796435, N'Cefixime', N'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (894, N'Cefixime (Oral Pill)', 1796435, N'Cefixime', N'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (895, N'CEFIZOX (Injectable)', 1777254, N'Ceftizoxime', N'0013824b-6aee-4da4-affd-35bc6bf19d91', CAST(N'2007-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (896, N'CEFOTAN (Injectable)', 1774932, N'Cefotetan', N'56912a83-4cba-4461-d983-3a0656515458', CAST(N'2007-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (897, N'Cefotaxime (Injectable)', 1774470, N'Cefotaxime', N'ef1a6dc6-bc3d-4f09-8f92-7ff328f56561', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (898, N'cefoTEtan (Injectable)', 1774932, N'Cefotetan', N'c6b8667e-8bb6-ea58-a969-2f74458bc611', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (899, N'cefOXitin (Injectable)', 1775741, N'Cefoxitin', N'6a4a2afa-4f00-41d4-bd6d-baa0a95f6929', CAST(N'2012-03-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (900, N'Cefpodoxime (Oral Liquid)', 1749008, N'cefpodoxime', N'5310de78-22c3-4bee-9956-854e767b6bef', CAST(N'2014-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (901, N'Cefpodoxime (Oral Pill)', 1749008, N'cefpodoxime', N'8b7f7043-5bfb-47a5-80cb-4f3f65358dff', CAST(N'2014-12-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (902, N'Cefprozil (Oral Liquid)', 1738366, N'cefprozil', N'3ec55c0a-1456-412e-972f-352b3135c8f2', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (903, N'Cefprozil (Oral Pill)', 1738366, N'cefprozil', N'75d57e35-ffeb-4d88-8dba-5458e284fd82', CAST(N'2013-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (904, N'cefTAZidime (Injectable)', 1776684, N'Ceftazidime', N'22d6534c-4488-48a1-8d78-e2fb908259de', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (905, N'Ceftibuten (Oral Liquid)', 1749083, N'ceftibuten', N'2dd58c88-142f-41ad-bc31-0a4fff074970', CAST(N'2010-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (906, N'Ceftibuten (Oral Pill)', 1749083, N'ceftibuten', N'2dd58c88-142f-41ad-bc31-0a4fff074970', CAST(N'2010-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (907, N'Ceftizoxime (Injectable)', 1777254, N'Ceftizoxime', N'3574df06-fec5-4888-8080-3b817addfb02', CAST(N'2007-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (908, N'cefTRIAXone (Injectable)', 1777806, N'Ceftriaxone', N'0faaee8c-30f6-4715-a9b6-7978da7c1ec8', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (909, N'Cefuroxime (Injectable)', 1778162, N'Cefuroxime', N'98ea197c-b3ff-47bc-8d0f-fce91b539959', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (910, N'Cefuroxime (Oral Liquid)', 1778162, N'Cefuroxime', N'135e2dfc-eb47-4d04-a903-a081d36c267e', CAST(N'2013-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (911, N'Cefuroxime (Oral Pill)', 1778162, N'Cefuroxime', N'61d3f51b-a8ed-4be5-849c-4bf653538d3e', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (912, N'CeleBREX (Oral Pill)', 1118084, N'celecoxib', N'8d52185d-421f-4e34-8db7-f7676db2a226', CAST(N'2015-05-05 00:00:00.000' AS DateTime), 293, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (913, N'Celecoxib (Oral Pill)', 1118084, N'celecoxib', N'8d52185d-421f-4e34-8db7-f7676db2a226', CAST(N'2015-08-24 00:00:00.000' AS DateTime), 293, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (914, N'CELESTONE SOLUSPAN (Injectable)', 920458, N'Betamethasone', N'2fb9fb11-d4ab-4c19-b5d1-c0177b3d8ef6', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (915, N'CeleXA (Oral Pill)', 797617, N'Citalopram', N'6c96373f-6744-49d4-aec5-3720bc993fab', CAST(N'2010-12-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (916, N'CELLCEPT (Oral Pill)', 19003999, N'mycophenolate mofetil', N'81ca6530-76d1-46f1-9bf8-0ffac79d2523', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (917, N'CENESTIN (Oral Pill)', 1596779, N'synthetic conjugated estrogens, A', N'410f9433-98ed-4c3f-abb1-2386296d2f72', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (918, N'CENOLATE (Injectable)', 19011773, N'Ascorbic Acid', N'af67a2f3-65b7-4a6e-9a51-315a280f976b', CAST(N'2007-11-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (919, N'CENTANY (Topical)', 951511, N'Mupirocin', N'ae3defca-06d5-49ac-8a27-be5c4e9304d1', CAST(N'2011-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (920, N'CENTUSSIN (Oral Liquid)', 1130863, N'Brompheniramine', N'315a70bc-bfd8-471d-9379-d2746823537d', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (921, N'CEO-TWO (Rectal)', 19086788, N'Potassium bitartrate', N'd868de56-ac3b-4e44-8aa5-031661f0ac25', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (922, N'CEPACOL (Oral Disintegrating)', 917006, N'Benzocaine', N'a0e52795-e4ec-4205-8862-a51a2b2a7ae1', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (923, N'CEPACOL (Oral Lozenge)', 917006, N'Benzocaine', N'48ce5553-5275-461b-8fe5-7f2bde197741', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (924, N'CEPACOL ANTIBACTERIAL MOUTHWASH (Mouthwash)', 989301, N'Cetylpyridinium', N'7c19eba6-3ebd-497f-9066-6152b72eafdd', CAST(N'2013-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (925, N'CEPACOL DUAL RELIEF (Mucosal)', 917006, N'Benzocaine', N'45561e94-2b54-4c19-be3e-b1949e1a5bbc', CAST(N'2012-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (926, N'CEPACOL SENSATIONS COOLING (Oral Lozenge)', 917006, N'Benzocaine', N'968f2322-fa9a-4ef8-baab-49576713618c', CAST(N'2015-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (927, N'CEPACOL SORE THROAT FROM POST NASAL DRIP (Oral Lozenge)', 901656, N'Menthol', N'599912f1-f888-4528-a676-78ef9a15b128', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (928, N'CEPACOL SORE THROAT PAIN RELIEF (Oral Lozenge)', 917006, N'Benzocaine', N'17d32d80-520a-4e32-9b45-1e296add9924', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (929, N'CEPACOL SORE THROAT PLUS COATING (Oral Lozenge)', 917006, N'Benzocaine', N'634a8e8a-4a7b-4eed-ba34-b06acb9c6525', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (930, N'CEPACOL SORE THROAT PLUS COUGH (Oral Lozenge)', 917006, N'Benzocaine', N'd25f736d-07ee-40cf-bc16-0f2c231eecd1', CAST(N'2014-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (931, N'CEPASTAT (Oral Lozenge)', 923540, N'phenol', N'6f4402aa-3f6e-4469-b512-868dba734d2b', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (932, N'Cephalexin (Oral Liquid)', 1786621, N'Cephalexin', N'c408de52-a15e-49ec-8bcd-eede240e5225', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (933, N'Cephalexin (Oral Pill)', 1786621, N'Cephalexin', N'937d6426-aed3-445b-9e9d-f30fa2f27a29', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (934, N'CEPROTIN (Injectable)', 42801108, N'Protein C', N'926914a9-78b2-40ea-b37d-2a55c09bf275', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (935, N'CERDELGA (Oral Pill)', 45775782, N'eliglustat', N'819f828a-b888-4e46-83fc-94d774a28a83', CAST(N'2014-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (936, N'CEREZYME (Injectable)', 1348407, N'imiglucerase', N'df60f030-866b-4374-a31f-8ae3f6b45c38', CAST(N'2012-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (937, N'CERISA WASH (Soap)', 1036252, N'Sulfacetamide', N'00278dd5-328f-4f4c-992c-a02ecde24e51', CAST(N'2010-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (938, N'CERVIDIL (Implant)', 1329415, N'Dinoprostone', N'f1391c7c-233e-44d8-8838-36cc12f01044', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (939, N'CESAMET (Oral Pill)', 913440, N'nabilone', N'bb582d64-0f51-11df-8a39-0800200c9a66', CAST(N'2015-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (940, N'CETACAINE (Topical)', 917006, N'Benzocaine', N'af1773c5-5d5b-4278-b551-30ad2df6d5b5', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (941, N'CETAFEN (Oral Pill)', 1125315, N'Acetaminophen', N'207cf327-b35c-405c-979e-af25183e6ae5', CAST(N'2012-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (942, N'CETAMIDE (Ophthalmic)', 1036252, N'Sulfacetamide', N'5a5d8fee-b42a-4f0c-a508-75c7c71bedb4', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (943, N'Cetirizine (Chewable)', 1149196, N'Cetirizine', N'dcc69bbe-e24c-4acf-8746-559ac1600dda', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (944, N'Cetirizine (Oral Liquid)', 1149196, N'Cetirizine', N'b088ac07-3246-434b-98cb-8759e9109fb0', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (945, N'Cetirizine (Oral Pill)', 1149196, N'Cetirizine', N'91fe3ab8-c155-4482-9f06-f029d3563aad', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (946, N'CETRAXAL (Otic)', 1797513, N'Ciprofloxacin', N'213b339a-75e0-4b1d-9052-8ee82a65d713', CAST(N'2009-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (947, N'Cetrorelix (Injectable)', 1503983, N'cetrorelix', N'aca7768e-28a7-4027-b1d8-e66247665f79', CAST(N'2014-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (948, N'CETROTIDE (Injectable)', 1503983, N'cetrorelix', N'aca7768e-28a7-4027-b1d8-e66247665f79', CAST(N'2014-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (949, N'Cetylpyridinium (Mouthwash)', 989301, N'Cetylpyridinium', N'5db380e6-f2f2-434d-b2d7-c19fedb6e821', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (950, N'Cetylpyridinium (Mucosal)', 989301, N'Cetylpyridinium', N'48b1f5b8-69b1-4d50-960b-733151beef91', CAST(N'2012-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (951, N'Cevimeline (Oral Pill)', 954819, N'cevimeline', N'0679dd4c-fece-4c6d-b273-2c62237e8973', CAST(N'2015-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (952, N'Chaetomium globosum extract (Injectable)', 40161167, N'Chaetomium globosum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (953, N'CHANTIX (Oral Pill)', 780442, N'varenicline', N'3e689dae-5058-4556-be14-df50e2803208', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (954, N'CHEMET (Oral Pill)', 1728909, N'Succimer', N'62035612-9505-3a3f-1ac8-e2dbd711d24e', CAST(N'2013-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (955, N'CHENODAL (Oral Pill)', 19052447, N'Chenodeoxycholate', N'b8b4539b-31d1-40cb-b284-86cf8b16522a', CAST(N'2010-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (956, N'Chenodeoxycholate (Oral Pill)', 19052447, N'Chenodeoxycholate', N'bbb86251-9423-40e6-9117-9511ab5fbf63', CAST(N'2010-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (957, N'CHERATUSSIN (Oral Liquid)', 1201620, N'Codeine', N'532d83c7-7e01-4777-927c-cf01db6847e5', CAST(N'2013-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (958, N'Chesnut oak pollen extract (Injectable)', 40172048, N'chesnut oak pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (959, N'CHILDREN''S NYQUIL COLD AND COUGH (Oral Liquid)', 1192710, N'Chlorpheniramine', N'e67ae132-d9c7-4a56-b6f7-562a2bd4747f', CAST(N'2014-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (960, N'CHIRHOSTIM (Injectable)', 19084212, N'Human Secretin', N'b4dfe70f-0a86-4488-9ba1-dcd8f86cbfcd', CAST(N'2007-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (961, N'Chlophedianol/Chlorcyclizine (Oral Liquid)', 1150886, N'chlophedianol', N'c588736a-250b-4fc6-b221-b4b51052b032', CAST(N'2013-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (962, N'Chlophedianol/Chlorpheniramine/Phenylephrine (Oral Liquid)', 1150886, N'chlophedianol', N'c032041e-fa67-4ef8-aa5a-82d5b0432178', CAST(N'2012-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (963, N'Chlophedianol/Chlorpheniramine/Phenylephrine (Oral Pill)', 1150886, N'chlophedianol', N'7c682422-a719-4b96-a7f4-a5733d655e38', CAST(N'2013-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (964, N'Chlophedianol/Dexbrompheniramine (Oral Liquid)', 1150886, N'chlophedianol', N'd046f4ba-5753-4ed5-a924-0b66fd116781', CAST(N'2014-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (965, N'Chlophedianol/Dexbrompheniramine/Pseudoephedrine (Oral Liquid)', 1150886, N'chlophedianol', N'43610aaa-8b94-40d5-ae09-3d75bd2317c8', CAST(N'2014-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (966, N'Chlophedianol/Dexchlorpheniramine/Pseudoephedrine (Oral Liquid)', 1150886, N'chlophedianol', N'8c34580b-fd41-4710-91dc-bdcbefa63cf0', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (967, N'Chlophedianol/guaiFENesin (Oral Liquid)', 1150886, N'chlophedianol', N'1021efb8-27c6-42f7-b3ae-84b6cb056569', CAST(N'2011-11-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (968, N'Chlophedianol/guaiFENesin/Phenylephrine (Oral Liquid)', 1150886, N'chlophedianol', N'2e4abee4-58dc-45b7-a91c-68dea307c327', CAST(N'2011-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (969, N'Chlophedianol/Phenylephrine/Pyrilamine (Oral Liquid)', 1150886, N'chlophedianol', N'c767a626-a3ce-490c-a511-00749784acab', CAST(N'2012-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (970, N'Chlophedianol/Pseudoephedrine (Oral Liquid)', 1150886, N'chlophedianol', N'cd95ea40-5461-4435-bec1-979a66d62944', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (971, N'Chlophedianol/Pyrilamine (Oral Liquid)', 1150886, N'chlophedianol', N'e2bca40f-9c27-ec8b-2ff0-ef9847ba2037', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (972, N'Chlophedianol/Thonzylamine (Oral Liquid)', 1150886, N'chlophedianol', N'd219ff56-bf03-4a5f-9100-7c6d07c972dd', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (973, N'Chlorambucil (Oral Pill)', 1390051, N'Chlorambucil', N'967ed3ff-d99b-41e8-b768-dfb586d3d9a6', CAST(N'2012-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (974, N'Chloramphenicol (Injectable)', 990069, N'Chloramphenicol', N'08c16a42-1ad4-400f-b1b0-75303eb86713', CAST(N'2010-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (975, N'Chloramphenicol (Ophthalmic)', 990069, N'Chloramphenicol', N'698aaa0a-9fd3-40c2-ec93-0dc2170a75ba', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (976, N'CHLORAPREP ONE-STEP (Topical)', 1790812, N'Chlorhexidine', N'8a4da72e-47bc-454b-b020-f23dcd4bb692', CAST(N'2015-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (977, N'CHLORASEPTIC (Oral Lozenge)', 917006, N'Benzocaine', N'7c161a17-cf82-4de3-8348-888c040df0f9', CAST(N'2013-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (978, N'CHLORASEPTIC MAX SPRAY (Mucosal)', 961145, N'Glycerin', N'882c940c-b3c3-4aa4-8d64-e4260f066ff4', CAST(N'2013-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (979, N'CHLORASEPTIC SORE THROAT (Oral Lozenge)', 917006, N'Benzocaine', N'5815a5e4-9b84-43bc-bbf3-4b85596e43d6', CAST(N'2010-11-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (980, N'CHLORASEPTIC SORE THROAT + COUGH (Oral Lozenge)', 917006, N'Benzocaine', N'6b1a50d0-be54-4fcb-b5e2-b47abf3555c0', CAST(N'2010-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (981, N'CHLORASEPTIC SPRAY (Mucosal)', 923540, N'phenol', N'a197fab2-70ce-4a6c-9add-29d7368a75c5', CAST(N'2013-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (982, N'Chlorcyclizine/Codeine (Oral Liquid)', 990413, N'chlorcyclizine', N'aa5a37d5-1ab7-40a4-a25f-2094bb46bfe3', CAST(N'2012-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (983, N'Chlorcyclizine/Codeine/Pseudoephedrine (Oral Liquid)', 990413, N'chlorcyclizine', N'9d1d42e4-9d69-4360-a057-81f909133880', CAST(N'2012-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (984, N'Chlorcyclizine/Phenylephrine (Chewable)', 990413, N'chlorcyclizine', N'70f9d9c5-6204-4ddc-be82-d6c9e59d70e5', CAST(N'2011-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (985, N'Chlorcyclizine/Phenylephrine (Oral Liquid)', 990413, N'chlorcyclizine', N'5585cf36-d7e7-40ce-982e-e8c6a58e85d1', CAST(N'2013-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (986, N'Chlorcyclizine/Pseudoephedrine (Oral Liquid)', 990413, N'chlorcyclizine', N'4e1bd76c-3fd8-4372-907f-6b799d67cfbb', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (987, N'Chlorcyclizine/Pseudoephedrine (Oral Pill)', 990413, N'chlorcyclizine', N'ccedbc38-2479-4c35-9f86-a9f29bcfab3f', CAST(N'2012-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (988, N'chlordiazePOXIDE (Oral Pill)', 990678, N'Chlordiazepoxide', N'b11a0582-eb80-4d60-914e-dc8e84177869', CAST(N'2015-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (989, N'chlordiazePOXIDE/Clidinium (Oral Pill)', 990678, N'Chlordiazepoxide', N'e8e41a74-6816-4b9a-9905-d072e6e4cfa8', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (990, N'Chlorhexidine (Implant)', 1790812, N'Chlorhexidine', N'c40ab6ac-8987-42d2-a95b-95fbfd3b0162', CAST(N'2010-03-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (991, N'Chlorhexidine (Mouthwash)', 1790812, N'Chlorhexidine', N'8d90c38e-e241-4f73-877d-ff314408a510', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (992, N'Chlorhexidine (Soap)', 1790812, N'Chlorhexidine', N'ef5ed5db-2787-4d4a-90d9-09b9740c882a', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (993, N'Chlorhexidine (Topical)', 1790812, N'Chlorhexidine', N'dfdaa646-0ef5-4433-b8d3-39ec139827b9', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (994, N'Chlorhexidine/Isopropyl Alcohol (Topical)', 1790812, N'Chlorhexidine', N'ea4d9094-1aca-4c0f-a67d-7276a9fd591b', CAST(N'2015-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (995, N'CHLOROMAG (Injectable)', 19092849, N'Magnesium Chloride', N'30f8b0f5-d601-4ed6-8463-20746db78d94', CAST(N'2011-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (996, N'CHLOROMYCETIN (Ophthalmic)', 990069, N'Chloramphenicol', N'698aaa0a-9fd3-40c2-ec93-0dc2170a75ba', CAST(N'2006-11-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (997, N'Chloroprocaine (Injectable)', 19049410, N'chloroprocaine', N'ec4ab877-878f-4b0e-3eb6-106a606479ad', CAST(N'2014-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (998, N'Chloroquine (Oral Pill)', 1792515, N'Chloroquine', N'56f3380c-9411-417a-a3f7-fe4025900c75', CAST(N'2014-03-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (999, N'Chlorothiazide (Injectable)', 992590, N'Chlorothiazide', N'5b5d8a97-1428-4047-8e6c-b778429a26e4', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1000, N'Chloroxylenol (Soap)', 949459, N'chloroxylenol', N'b4493ad6-e1c8-4b2d-8a57-1845589b04f9', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1001, N'Chloroxylenol (Topical)', 949459, N'chloroxylenol', N'9ba4c1a7-e397-44a2-979e-ad2b794bd1fe', CAST(N'2014-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1002, N'Chloroxylenol/Hydrocortisone/Pramoxine (Otic)', 949459, N'chloroxylenol', N'ae998218-7f49-46cf-9898-0920572b6fd1', CAST(N'2011-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1003, N'Chlorpheniramine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'3065bc51-c210-483b-876d-14a4d060bdec', CAST(N'2011-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1004, N'Chlorpheniramine (Oral Pill)', 1192710, N'Chlorpheniramine', N'883a0a71-c9fb-44fd-9f2c-591d7e17c973', CAST(N'2015-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1005, N'Chlorpheniramine/Codeine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'acc21b1e-729c-4004-820f-5edbde869458', CAST(N'2011-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1006, N'Chlorpheniramine/Codeine/Pseudoephedrine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'6ca7c4ff-ba0d-490f-b8b8-9518955424e1', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1007, N'Chlorpheniramine/Dextromethorphan (Oral Liquid)', 1192710, N'Chlorpheniramine', N'becb4025-b63e-f2ea-9d11-d51fdf4e5c13', CAST(N'2014-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1008, N'Chlorpheniramine/Dextromethorphan (Oral Pill)', 1192710, N'Chlorpheniramine', N'de7d5d7e-415f-4ae4-9f53-fa5bef790154', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1009, N'Chlorpheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'12e5b41b-6a30-456c-9242-45fe7e9e45d8', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1010, N'Chlorpheniramine/Dextromethorphan/Pseudoephedrine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'63fdf19e-f467-4873-8cbf-da2e5e2cdc0b', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1011, N'Chlorpheniramine/HYDROcodone (Oral Liquid)', 1192710, N'Chlorpheniramine', N'47dae0e8-065f-4722-a1c1-4763e25e14d4', CAST(N'2015-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1012, N'Chlorpheniramine/HYDROcodone/Pseudoephedrine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'5ab09c98-cb39-43be-b306-5eff3c31b563', CAST(N'2015-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1013, N'Chlorpheniramine/Ibuprofen/Pseudoephedrine (Oral Pill)', 1192710, N'Chlorpheniramine', N'ecd6ea11-8b34-01b4-cbd9-901ba7a8f6e2', CAST(N'2014-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1014, N'Chlorpheniramine/Methscopolamine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'9aca3d25-d042-479b-a00e-63be5b5073fe', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1015, N'Chlorpheniramine/Phenylephrine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'bf5c4a23-9581-4b84-a75b-e17e1d768970', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1016, N'Chlorpheniramine/Phenylephrine (Oral Pill)', 1192710, N'Chlorpheniramine', N'58e7d1e6-080c-4aa3-ad02-e93288db6007', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1017, N'Chlorpheniramine/Phenylephrine/Pyrilamine (Oral Liquid)', 1192710, N'Chlorpheniramine', N'8728160d-6172-4f4e-b512-46f5d9bca733', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1018, N'Chlorpheniramine/Pseudoephedrine (Oral Pill)', 1192710, N'Chlorpheniramine', N'7cd8f7f3-c262-4f7c-bcaf-068be2c952f9', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1019, N'chlorproMAZINE (Oral Pill)', 794852, N'Chlorpromazine', N'd2f1cc4b-eaf7-4a76-819e-f5168f22a5de', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1020, N'chlorproPAMIDE (Oral Pill)', 1594973, N'Chlorpropamide', N'baa54287-8065-da1a-f19e-ce8daf61bd01', CAST(N'2014-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1021, N'Chlorthalidone (Oral Pill)', 1395058, N'Chlorthalidone', N'bb7112ae-3a37-4525-8c7f-c0f4100ffc0a', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1022, N'Chlorthalidone/cloNIDine (Oral Pill)', 1395058, N'Chlorthalidone', N'79a0f78a-bd88-4657-8b51-e24a64a270b6', CAST(N'2015-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1023, N'CHLOR-TRIMETON (Oral Pill)', 1192710, N'Chlorpheniramine', N'883a0a71-c9fb-44fd-9f2c-591d7e17c973', CAST(N'2013-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1024, N'Chlorzoxazone (Oral Pill)', 795113, N'Chlorzoxazone', N'3b91e3ba-1eb6-4297-9d1b-28d87b36a5b3', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1025, N'Cholecalciferol (Oral Pill)', 19095164, N'Cholecalciferol', N'fdec1f4d-8ede-42ff-882d-406154911127', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1026, N'Cholecalciferol/Folic Acid (Oral Pill)', 19095164, N'Cholecalciferol', N'7bc8730c-38cf-4bae-b8f2-da92751a551c', CAST(N'2014-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1027, N'Cholestyramine Resin (Oral Liquid)', 19095309, N'Cholestyramine Resin', N'362ddd91-a63f-4ec6-841a-75785dd208c8', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1028, N'Cholic Acid (Oral Pill)', 44506782, N'Cholic Acid', N'e5b67402-8550-4604-97a0-c7b149fbf753', CAST(N'2015-04-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1029, N'Chondroitin Sulfates/Glucosamine/Methylsulfonylmethane (Oral Pill)', 1395573, N'Chondroitin Sulfates', N'67916a8f-5000-4b2b-bf8c-47d2e014176b', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1030, N'CHOOZ (Chewable)', 19035704, N'Calcium Carbonate', N'b2dd2047-e00b-410f-a7ee-74e9c365d4a8', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1031, N'Chorionic Gonadotropin (Injectable)', 1563600, N'Chorionic Gonadotropin', N'dc604794-6dd6-43a7-85fa-2f04ed325c33', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1032, N'Chromic chloride (Injectable)', 19049877, N'chromic chloride', N'6c6d8d3b-fd30-4cbc-a988-92cc73d0414c', CAST(N'2011-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1033, N'Chromic chloride/Copper Sulfate/Manganese sulfate/Zinc Sulfate (Injectable)', 19049877, N'chromic chloride', N'5ee6a685-3c35-467b-8d4d-79efdd0bfa8e', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1034, N'CIALIS (Oral Pill)', 1336926, N'tadalafil', N'1da40b7c-c96a-45d2-a3f2-fafad429afd6', CAST(N'2014-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1035, N'CICLODAN (Topical)', 950098, N'ciclopirox', N'346422b8-003d-4c4f-8a92-1e9146c13732', CAST(N'2012-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1036, N'Ciclopirox (Shampoo)', 950098, N'ciclopirox', N'b44b190b-8e2a-4937-a6c5-92f37911e7f8', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1037, N'Ciclopirox (Topical)', 950098, N'ciclopirox', N'4439cb3d-6825-4558-a981-122ec15f7b05', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1038, N'Cidofovir (Injectable)', 1745072, N'Cidofovir', N'56541229-8c1a-4550-8951-2415ed08e7e9', CAST(N'2013-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1039, N'Cilastatin/Imipenem (Injectable)', 1797258, N'Cilastatin', N'4b652048-d5e1-48d1-acd4-091c14d9022d', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1040, N'Cilostazol (Oral Pill)', 1350310, N'cilostazol', N'20a05739-46a6-47ca-ae61-4341d028460e', CAST(N'2015-03-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1041, N'CILOXAN (Ophthalmic)', 1797513, N'Ciprofloxacin', N'614af481-f9ef-44ac-9cb8-f421660d9cdd', CAST(N'2011-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1042, N'Cimetidine (Oral Liquid)', 997276, N'Cimetidine', N'f2ec923a-2b88-43c0-ac2a-7ae20c053039', CAST(N'2009-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1043, N'Cimetidine (Oral Pill)', 997276, N'Cimetidine', N'ad3e8f6a-8e35-42c2-a98c-566a2868e923', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1044, N'Cinacalcet (Oral Pill)', 1548111, N'cinacalcet', N'4cb2ad7a-c70d-4647-bc4d-bac9b5d13b92', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1045, N'CIPRO HC (Otic)', 1797513, N'Ciprofloxacin', N'70b19501-34b6-4f95-a8dd-dd3e67d22399', CAST(N'2011-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1046, N'CIPRODEX (Otic)', 1797513, N'Ciprofloxacin', N'1c4db12f-285b-4714-9b1c-26bcdc39cebf', CAST(N'2013-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1047, N'Ciprofloxacin (Ophthalmic)', 1797513, N'Ciprofloxacin', N'11f56251-d913-4986-9dba-c2e4df8a3822', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1048, N'Ciprofloxacin (Oral Liquid)', 1797513, N'Ciprofloxacin', N'f8f4461c-c9fa-451b-ba24-b080c8bfc2d7', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1049, N'Ciprofloxacin (Oral Pill)', 1797513, N'Ciprofloxacin', N'178dc379-e2b8-4b47-9f0c-3fc7fb435c36', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1050, N'Ciprofloxacin (Otic)', 1797513, N'Ciprofloxacin', N'd0125acf-1879-452d-ba29-c0f753653789', CAST(N'2012-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1051, N'Ciprofloxacin/Dexamethasone (Otic)', 1797513, N'Ciprofloxacin', N'0ed518de-4ae1-43d1-84ff-26872d9e6a0f', CAST(N'2013-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1052, N'Ciprofloxacin/Hydrocortisone (Otic)', 1797513, N'Ciprofloxacin', N'598288ca-256a-4b9e-91e0-829f02cb8cd3', CAST(N'2011-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1053, N'Cisatracurium (Injectable)', 19015726, N'Cisatracurium', N'f78a07e2-0d3b-4460-b29e-8c10c90afbda', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1054, N'CISplatin (Injectable)', 1397599, N'Cisplatin', N'64975f5d-0eca-4998-8a72-06eec98285eb', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1055, N'Citalopram (Oral Pill)', 797617, N'Citalopram', N'6c96373f-6744-49d4-aec5-3720bc993fab', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1056, N'Citric Acid/Gluconolactone/Magnesium carbonate (Irrigation)', 950435, N'Citric Acid', N'bdb3cef8-79c4-4322-9a21-c13123abe0cc', CAST(N'2013-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1057, N'Citric Acid/Glucose/Sodium citrate (Injectable)', 950435, N'Citric Acid', N'22805f0d-ba58-41ea-b245-19980abcda22', CAST(N'2013-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1058, N'Citric Acid/Potassium citrate (Oral Liquid)', 950435, N'Citric Acid', N'93cca32a-d173-4d27-b493-9d8cfd1b7978', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1059, N'Citric Acid/Potassium citrate/Sodium citrate (Oral Liquid)', 950435, N'Citric Acid', N'eb0bade0-fc86-4bfa-90cc-f0d5f7b4d3a8', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1060, N'Citric Acid/Sodium Bicarbonate (Effervescent)', 950435, N'Citric Acid', N'672106ae-9e27-4173-b7b7-1f5494643673', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1061, N'Citric Acid/Sodium citrate (Oral Liquid)', 950435, N'Citric Acid', N'5c8b16fa-023a-4e10-a3a2-8ad79a19f24c', CAST(N'2015-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1062, N'CITROMA (Oral Liquid)', 967861, N'magnesium citrate', N'af276471-c5d7-4326-8ba2-cf546ab50f77', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1063, N'CITRUCEL (Oral Liquid)', 905371, N'Methylcellulose', N'9d5f2244-a610-4d45-b6e8-e79bb17a558f', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1064, N'CITRUCEL (Oral Pill)', 905371, N'Methylcellulose', N'd27f6742-2dcc-451e-b803-6ffe183038ec', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1065, N'Cladosporium cladosporioides extract (Injectable)', 40167025, N'Cladosporium cladosporioides extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1066, N'Cladosporium herbarum extract (Injectable)', 40161203, N'Cladosporium herbarum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1067, N'Cladribine (Injectable)', 19054825, N'Cladribine', N'a2592a9b-bca6-4a5a-89c2-855a0634d5fe', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1068, N'CLARAVIS (Oral Pill)', 984232, N'Isotretinoin', N'ee862463-77c0-4694-bba8-97274f13963f', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1069, N'CLARINEX (Oral Pill)', 1103006, N'desloratadine', N'b7b0b1a0-2ab3-4697-bee4-0cd7fd5088b9', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1070, N'CLARIS (Soap)', 1036252, N'Sulfacetamide', N'7045e1e0-de48-4cc4-862d-f5c7a9b693b9', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1071, N'Clarithromycin (Oral Liquid)', 1750500, N'Clarithromycin', N'2e899f4a-a2e9-445c-a0ed-6ad811e997e6', CAST(N'2015-05-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1072, N'Clarithromycin (Oral Pill)', 1750500, N'Clarithromycin', N'185422f8-12f8-4bcf-b5da-57544e6528f0', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1073, N'CLARITIN (Oral Disintegrating)', 1107830, N'Loratadine', N'7dc04b48-f053-4e4b-a493-9e8286d2a791', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1074, N'CLARITIN (Oral Liquid)', 1107830, N'Loratadine', N'1fdeaf8b-6c6b-7033-e054-00144ff8d46c', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1075, N'CLARITIN (Oral Pill)', 1107830, N'Loratadine', N'660ac9df-f1b1-4c89-94dd-9fae0a013f3c', CAST(N'2014-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1076, N'CLARUS (Topical)', 902950, N'Tolnaftate', N'7e8897ff-67d1-4336-866e-cb76a36edddc', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1077, N'CLEAN AND CLEAR ADVANTAGE ACNE CLEANSER (Soap)', 964407, N'Salicylic Acid', N'20a9ba99-1d86-4edb-a0f5-f5df16d142f0', CAST(N'2012-11-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1078, N'CLEAN AND CLEAR ADVANTAGE MARK TREATMENT (Topical)', 964407, N'Salicylic Acid', N'd39c2906-97d7-4b85-bb36-68e5f086935a', CAST(N'2012-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1079, N'CLEAN AND CLEAR ADVANTAGE POPPED PIMPLE RELIEF (Topical)', 964407, N'Salicylic Acid', N'c3852160-2a19-442b-8118-4579edf0afe9', CAST(N'2013-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1080, N'CLEAN AND CLEAR BLACKHEAD ERASER (Topical)', 964407, N'Salicylic Acid', N'c33ac045-a8e4-4171-a6f4-ecb5829ee004', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1081, N'CLEAN AND CLEAR DEEP CLEANING (Topical)', 964407, N'Salicylic Acid', N'd61db0ce-11f2-42f4-b975-b623872c786e', CAST(N'2012-05-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1082, N'CLEAR EYES COMPLETE (Ophthalmic)', 902251, N'hypromellose', N'9a1ce5e2-c3da-424d-b754-cf2de8c655e3', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1083, N'CLEAR EYES COOLING COMFORT (Ophthalmic)', 961145, N'Glycerin', N'a710be3f-fa5b-46a6-87b5-5a4d1f807e1c', CAST(N'2012-04-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1084, N'CLEAR EYES NATURAL TEARS (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'efba3eb0-798d-4635-b19b-4970e45b3cc9', CAST(N'2012-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1085, N'CLEAR EYES REDNESS RELIEF REFORMULATED NOV 2011 (Ophthalmic)', 961145, N'Glycerin', N'a26ef66e-2def-4c98-9959-d40d4cfe3108', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1086, N'CLEARASIL (Topical)', 918172, N'Benzoyl Peroxide', N'6158ced9-cd3a-41b2-809e-9aec2ba90d33', CAST(N'2013-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1087, N'CLEARASIL ACNE CONTROL (Soap)', 964407, N'Salicylic Acid', N'ebe4669e-0387-47b2-9778-eb7c04a1c9f9', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1088, N'CLEARASIL ACNE CONTROL (Topical)', 964407, N'Salicylic Acid', N'c19ea241-9952-4251-bb4d-2db521bead94', CAST(N'2012-11-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1089, N'CLEARCANAL (Otic)', 958999, N'carbamide peroxide', N'0ef2be5b-cc39-48ae-b5c5-e787464dea08', CAST(N'2012-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1090, N'CLEARLAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'ee30489a-8683-4403-8f85-76434242663c', CAST(N'2015-05-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1091, N'Clemastine (Oral Liquid)', 1197677, N'Clemastine', N'3e403ca1-0c23-4af6-bfac-50187d8d4653', CAST(N'2011-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1092, N'Clemastine (Oral Pill)', 1197677, N'Clemastine', N'5243fbe1-e45d-4673-86bf-6f8454d36f39', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1093, N'CLENIA (Topical)', 1036252, N'Sulfacetamide', N'4089ba41-7b16-4fc3-b160-470b426a21ec', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1094, N'CLEOCIN (Injectable)', 997881, N'Clindamycin', N'7741156f-b98f-4975-a7e3-1c7d508a6a14', CAST(N'2012-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1095, N'CLEOCIN (Oral Liquid)', 997881, N'Clindamycin', N'1ef87b6c-9d32-44ac-8c55-8bf01424cc45', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1096, N'CLEOCIN (Vaginal)', 997881, N'Clindamycin', N'c72f21f8-c81a-4e4c-9c98-ed46a57b3343', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1097, N'CLINDACIN (Topical)', 997881, N'Clindamycin', N'288371ef-96b6-4ce3-9be1-1d9d309b400c', CAST(N'2011-02-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1098, N'CLINDAMAX (Topical)', 997881, N'Clindamycin', N'2ceee427-50d3-4bfe-8ccf-9efb11a90fb7', CAST(N'2009-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1099, N'Clindamycin (Injectable)', 997881, N'Clindamycin', N'bd1c1648-4733-4233-8337-469fe11bd0cb', CAST(N'2014-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1100, N'Clindamycin (Oral Liquid)', 997881, N'Clindamycin', N'e1cb8caa-1e49-41e7-bbd8-a2e75bea2fe4', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1101, N'Clindamycin (Oral Pill)', 997881, N'Clindamycin', N'63a0466c-af7d-4696-a950-19b73b55a65a', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1102, N'Clindamycin (Topical)', 997881, N'Clindamycin', N'64c28c73-5a2a-4bb0-bcec-9948463a9c8f', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1103, N'Clindamycin (Vaginal)', 997881, N'Clindamycin', N'706dd0b6-367c-4950-88fe-7a6c0661c2b9', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1104, N'Clindamycin/Tretinoin (Topical)', 997881, N'Clindamycin', N'78c329f9-f0c9-486d-9e54-0123699fb9e1', CAST(N'2014-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1105, N'CLINPRO 5000 (Toothpaste)', 19069022, N'Sodium Fluoride', N'a20d3cf0-2e1f-4191-971e-9e47936b4580', CAST(N'2012-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1106, N'Clioquinol/Hydrocortisone (Topical)', 980867, N'Clioquinol', N'b1f875e9-a95b-47ff-80cc-54a2d7a2c08c', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1107, N'Clobetasol (Shampoo)', 998415, N'Clobetasol', N'a4f82a4c-bc7e-4927-936e-add854812559', CAST(N'2014-06-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1108, N'Clobetasol (Topical)', 998415, N'Clobetasol', N'976d9c90-1800-4dac-9b92-48284b29d2b9', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1109, N'CLOBEX (Topical)', 998415, N'Clobetasol', N'a086ead1-b906-4198-af19-5423957c9e2a', CAST(N'2011-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1110, N'Clocortolone (Topical)', 950882, N'clocortolone', N'1b20b467-1b29-45de-b00e-4228812444f6', CAST(N'2015-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1111, N'CLODAN (Shampoo)', 998415, N'Clobetasol', N'4150d579-eb8b-46cd-b044-352807894e1a', CAST(N'2014-06-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1112, N'CLODERM (Topical)', 950882, N'clocortolone', N'4abc01f2-03d4-43d5-a085-f452443cfca2', CAST(N'2015-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1113, N'Clofarabine (Injectable)', 19054821, N'clofarabine', N'55d3c78b-dca5-436b-97b5-73d166217415', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1114, N'CLOFERA (Oral Liquid)', 1150886, N'chlophedianol', N'cd95ea40-5461-4435-bec1-979a66d62944', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1115, N'CLOLAR (Injectable)', 19054821, N'clofarabine', N'55d3c78b-dca5-436b-97b5-73d166217415', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1116, N'clomiPHENE (Oral Pill)', 1598819, N'Clomiphene', N'53eff40f-37b1-47b1-a9b8-c22360855f18', CAST(N'2014-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1117, N'clomiPRAMINE (Oral Pill)', 798834, N'Clomipramine', N'4c32971e-feb3-4388-9cd6-d1f99f258b0d', CAST(N'2015-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1118, N'clonazePAM (Oral Disintegrating)', 798874, N'Clonazepam', N'26b1d362-e727-49db-9e81-ee80ca97795c', CAST(N'2013-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1119, N'clonazePAM (Oral Pill)', 798874, N'Clonazepam', N'79a3305b-be80-416f-a346-5a907f7b669e', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1120, N'cloNIDine (Injectable)', 1398937, N'Clonidine', N'f6798f73-b5a6-434b-a627-aa102b123dd5', CAST(N'2013-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1121, N'cloNIDine (Oral Pill)', 1398937, N'Clonidine', N'e6583ff5-0e03-470b-a986-35770aa0e80b', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1122, N'Clopidogrel (Oral Pill)', 1322184, N'clopidogrel', N'8b84d00e-9aac-4da2-b9aa-17e5ddf9b922', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1123, N'Clorazepate (Oral Pill)', 790253, N'clorazepate', N'b8fbc985-62a5-4bc2-b9b8-0451926e86de', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1124, N'CLORPACTIN WCS-90 (Topical)', 1719061, N'oxychlorosene', N'6b3b2d67-4142-4a98-9a73-fb107b19a636', CAST(N'2013-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1125, N'CLORPRES (Oral Pill)', 1395058, N'Chlorthalidone', N'79a0f78a-bd88-4657-8b51-e24a64a270b6', CAST(N'2015-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1126, N'Clotrimazole (Oral Lozenge)', 1000632, N'Clotrimazole', N'7464e883-6286-4f04-ae38-b7ddc3fec754', CAST(N'2014-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1127, N'Clotrimazole (Topical)', 1000632, N'Clotrimazole', N'b4d9cde8-bf6d-470b-9b5c-29f8e680157e', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1128, N'Clotrimazole (Vaginal)', 1000632, N'Clotrimazole', N'2970c5f2-282e-4b22-8e24-331c959f0e3e', CAST(N'2015-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1129, N'cloZAPine (Oral Liquid)', 800878, N'Clozapine', N'693cb9d4-39db-4ecf-9eae-b01f06f8d5d1', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1130, N'cloZAPine (Oral Pill)', 800878, N'Clozapine', N'0cf63b13-48b2-4b07-b241-617725b52f6b', CAST(N'2014-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1131, N'CLOZARIL (Oral Pill)', 800878, N'Clozapine', N'0cf63b13-48b2-4b07-b241-617725b52f6b', CAST(N'2014-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1132, N'Coal Tar (Shampoo)', 1000995, N'Coal Tar', N'1c18fde9-d39b-4339-8f62-3f352d450291', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1133, N'Coal Tar (Topical)', 1000995, N'Coal Tar', N'1e32ccda-6760-489b-83ef-f7759d0c044e', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1134, N'Coal Tar/Salicylic Acid (Shampoo)', 1000995, N'Coal Tar', N'd990a3d8-8be8-44e3-8e84-a6d8da21f3b5', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1135, N'Coal Tar/Salicylic Acid/Sulfur (Shampoo)', 1000995, N'Coal Tar', N'ec7873bb-288a-4671-b649-1d5d5ced6476', CAST(N'2011-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1136, N'Coast live oak pollen extract (Injectable)', 40161565, N'coast live oak pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1137, N'Cobicistat (Oral Pill)', 42874220, N'cobicistat', N'3784c35c-e87f-410c-900b-8fd6313c6010', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1138, N'Cobicistat/Elvitegravir/Emtricitabine/Tenofovir disoproxil (Oral Pill)', 42874220, N'cobicistat', N'74ae2a93-b267-444c-8f0f-a2a6522260ee', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1139, N'Cocaine (Topical)', 1001419, N'Cocaine', N'24faa247-fe12-4574-881d-445b078b3e87', CAST(N'2012-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1140, N'Cochliobolus sativus extract (Injectable)', 40161182, N'Cochliobolus sativus extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1141, N'Cocoa butter/Phenylephrine (Rectal)', 951112, N'cocoa butter', N'cfb1d1d9-d45d-4ead-bd73-48456dcff3df', CAST(N'2015-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1142, N'Cocoa butter/Phenylephrine/Shark liver oil (Rectal)', 951112, N'cocoa butter', N'2504b132-20cf-4b7e-8074-407c1adbdb19', CAST(N'2012-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1143, N'Cocoa butter/Zinc Oxide (Rectal)', 951112, N'cocoa butter', N'5516f800-d3fa-4b90-a3eb-c0bdf3183b9b', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1144, N'CODAR AR (Oral Liquid)', 1192710, N'Chlorpheniramine', N'acc21b1e-729c-4004-820f-5edbde869458', CAST(N'2011-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1145, N'CODAR GF (Oral Liquid)', 1201620, N'Codeine', N'6eda2c06-fb11-4a58-98fb-4eafe1d1df5f', CAST(N'2011-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1146, N'Codeine (Oral Liquid)', 1201620, N'Codeine', N'3b04ed3f-1a3d-4e8f-b91b-216c63d40b88', CAST(N'2013-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1147, N'Codeine (Oral Pill)', 1201620, N'Codeine', N'5819bdf7-300e-45b8-8f3a-447b53656293', CAST(N'2014-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1148, N'Codeine/Dexbrompheniramine/Pseudoephedrine (Oral Liquid)', 1201620, N'Codeine', N'9f8fc672-3589-498d-82a7-e243f4e0dec0', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1149, N'Codeine/guaiFENesin (Oral Liquid)', 1201620, N'Codeine', N'fe126254-6ee6-48c3-965c-96e4276a5314', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1150, N'Codeine/guaiFENesin/Pseudoephedrine (Oral Liquid)', 1201620, N'Codeine', N'48a209ca-7f1b-4b66-9e49-943f0e7605a3', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1151, N'Codeine/Phenylephrine (Oral Liquid)', 1201620, N'Codeine', N'e2d73253-1777-4993-b693-323f0450c1c4', CAST(N'2012-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1152, N'Codeine/Phenylephrine/Promethazine (Oral Liquid)', 1201620, N'Codeine', N'c09ba689-4377-4946-b8b0-5f64d5e90d07', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1153, N'Codeine/Promethazine (Oral Liquid)', 1201620, N'Codeine', N'47d4eb4f-6dd4-44b9-aea1-19c4bfc1d425', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1154, N'Codeine/Pseudoephedrine/Pyrilamine (Oral Liquid)', 1201620, N'Codeine', N'f11abf48-ec05-44d6-9057-1c81a433efbd', CAST(N'2011-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1155, N'Codeine/Pseudoephedrine/Triprolidine (Oral Liquid)', 1201620, N'Codeine', N'dd62a5eb-dd5a-4329-8696-07acb555af10', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1156, N'CODRIX (Oral Pill)', 1125315, N'Acetaminophen', N'632c566c-39fb-4321-ac56-aea83780fa02', CAST(N'2008-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1157, N'COLACE (Oral Pill)', 941258, N'Docusate', N'7793fced-e8ee-44e2-b212-dd2a59a5f462', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1158, N'Colchicine (Oral Pill)', 1101554, N'Colchicine', N'cb5f9d85-6b81-49f8-bcd6-17b7bfbc10f2', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1159, N'COLCRYS (Oral Pill)', 1101554, N'Colchicine', N'a0688f33-f00f-4a68-abc3-73ec887a471a', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1160, N'Colesevelam (Oral Liquid)', 1518148, N'colesevelam', N'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', CAST(N'2012-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1161, N'Colesevelam (Oral Pill)', 1518148, N'colesevelam', N'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', CAST(N'2012-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1162, N'COLESTID (Oral Granules)', 1501617, N'Colestipol', N'21b37725-fc0c-4365-a7dc-1a473d42502d', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1163, N'Colestipol (Oral Granules)', 1501617, N'Colestipol', N'21b37725-fc0c-4365-a7dc-1a473d42502d', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1164, N'Colestipol (Oral Pill)', 1501617, N'Colestipol', N'fa6c3e11-84e9-433d-aa74-7cd34336bbed', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1165, N'Colistin (Injectable)', 901845, N'Colistin', N'ab241809-0d2f-44ba-829c-26be67ee623f', CAST(N'2015-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1166, N'Colistin/Hydrocortisone/Neomycin/THONZONIUM (Otic)', 901845, N'Colistin', N'317cc880-73fe-4561-897e-41489108b3ba', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1167, N'COLLAGENASE (Topical)', 980311, N'COLLAGENASE', N'a7bf0341-49ff-4338-a339-679a3f3f953d', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1168, N'Colloidal oatmeal (Topical)', 986261, N'Colloidal oatmeal', N'9f211875-4ffb-493d-a011-40c3a2b86615', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1169, N'COLOCORT (Rectal)', 975125, N'Hydrocortisone', N'a5b47406-b933-4f6b-96dc-db837bcccf77', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1170, N'COLY MYCIN M (Injectable)', 901845, N'Colistin', N'6d6e13e2-dc33-4b7b-84d0-66146a57c552', CAST(N'2013-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1171, N'COLY MYCIN S (Otic)', 901845, N'Colistin', N'317cc880-73fe-4561-897e-41489108b3ba', CAST(N'2010-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1172, N'COMBIGAN (Ophthalmic)', 915542, N'brimonidine', N'feaf1480-a4b8-4486-992a-96be3a596243', CAST(N'2013-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1173, N'COMBIVIR (Oral Pill)', 1704183, N'Lamivudine', N'16da660b-9981-4d24-a14a-94c7744fce4f', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1174, N'COMETRIQ (Oral Pill)', 43012292, N'cabozantinib', N'1a0c3bea-c87b-4d25-bb44-5f0174da6b34', CAST(N'2012-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1175, N'Common sagebrush pollen extract (Injectable)', 40161598, N'common sagebrush pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1176, N'COMPAZINE (Oral Pill)', 752061, N'Prochlorperazine', N'a8c5db51-e8b2-4594-8b05-aaa78ca0682d', CAST(N'2014-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1177, N'COMPAZINE (Rectal)', 752061, N'Prochlorperazine', N'9bdba30b-53b4-427a-af74-7a39b52130b2', CAST(N'2013-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1178, N'COMPLERA (Oral Pill)', 1703069, N'emtricitabine', N'54c8bec2-d565-489c-8d7c-afd3cdf78df5', CAST(N'2013-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1179, N'COMTAN (Oral Pill)', 782211, N'entacapone', N'95976f1d-1b36-4f08-a98f-36d5d7883d7b', CAST(N'2014-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1180, N'CONGESTAC (Oral Pill)', 1163944, N'Guaifenesin', N'03d29b11-deba-3727-e054-00144ff8d46c', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1181, N'CONSTULOSE (Oral Liquid)', 987245, N'Lactulose', N'461ec39f-eeb4-4460-9b5c-62367d47162b', CAST(N'2012-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1182, N'CONTAC COLD AND FLU NON DROWSY MAXIMUM STRENGTH (Oral Pill)', 1125315, N'Acetaminophen', N'8ed2df70-fdb1-11e3-a3ac-0800200c9a66', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1183, N'CONTROL RX (Toothpaste)', 19069022, N'Sodium Fluoride', N'b334c974-055f-458f-bac0-c28372be53c3', CAST(N'2011-02-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1184, N'Cootamundra wattle pollen extract (Injectable)', 40169140, N'Cootamundra wattle pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1185, N'Copper Sulfate (Injectable)', 19057346, N'Copper Sulfate', N'941ad1e2-6052-4df4-8cfe-5af4a99703e4', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1186, N'CORDRAN (Topical)', 956266, N'Flurandrenolide', N'a0949773-c75f-4ef0-a69c-1abd978340d0', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1187, N'COREG (Oral Pill)', 1346823, N'carvedilol', N'fdb12700-116b-4203-8d74-9a94b9401fe6', CAST(N'2010-10-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1188, N'CORGARD (Oral Pill)', 1313200, N'Nadolol', N'c2e709d2-96a2-41ea-b5e9-9ce4ccb91f59', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1189, N'CORICIDIN HBP CHEST CONGESTION (Oral Pill)', 1119510, N'Dextromethorphan', N'e33f2319-2181-46db-a094-3e874b324c0a', CAST(N'2014-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1190, N'CORICIDIN HBP COLD & FLU (Oral Pill)', 1125315, N'Acetaminophen', N'763a5334-a741-4678-9947-603776622450', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1191, N'CORICIDIN HBP COUGH AND COLD (Oral Pill)', 1192710, N'Chlorpheniramine', N'ee666963-e686-4374-b52b-a677f1cd4114', CAST(N'2013-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1192, N'CORMAX (Topical)', 998415, N'Clobetasol', N'29735bf2-e08e-4f60-a640-0e3b9ccca80f', CAST(N'2012-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1193, N'Corn pollen extract (Injectable)', 40161610, N'corn pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1194, N'Cornstarch/Kaolin/Zinc Oxide (Topical)', 40230159, N'cornstarch', N'5654facc-ad51-4501-a505-9c0b2035e653', CAST(N'2011-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1195, N'CORTAID (Topical)', 975125, N'Hydrocortisone', N'f3f31285-4dde-4708-b715-6da36a4f2a14', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1196, N'CORTEF (Oral Pill)', 975125, N'Hydrocortisone', N'9ce19944-dd88-4a7b-84ca-b07f4ec23bad', CAST(N'2014-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1197, N'CORTENEMA (Rectal)', 975125, N'Hydrocortisone', N'a307448a-ccc4-41a8-977a-11f28f0bded9', CAST(N'2013-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1198, N'CORTICOOL (Topical)', 975125, N'Hydrocortisone', N'ad772e39-02c1-4995-bd8e-46fa63be2c5a', CAST(N'2014-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1199, N'Corticotropin (Injectable)', 1541079, N'Corticotropin', N'7b48ddec-e815-45f4-9ca0-5c0daaf56f30', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1200, N'CORTIFOAM (Rectal)', 975125, N'Hydrocortisone', N'36f623df-2ae3-4858-9783-c058097951f4', CAST(N'2015-06-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1201, N'Cortisone (Oral Pill)', 1507705, N'Cortisone', N'5d59b43c-f10d-463f-92df-6171d02b7a45', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1202, N'CORTISPORIN (Topical)', 975125, N'Hydrocortisone', N'e86a5293-312d-4425-bf95-35e4d7149aed', CAST(N'2015-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1203, N'CORTISPORIN OINTMENT (Topical)', 915175, N'Bacitracin', N'097a7a8d-04d4-4736-c8b7-0796117457bf', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1204, N'CORTISPORIN-TC (Otic)', 901845, N'Colistin', N'0869fd8d-6dd7-4dc2-b33c-20d72dc47718', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1205, N'CORTIZONE-10 (Topical)', 975125, N'Hydrocortisone', N'c0dccf64-44fd-4cbf-a9cd-50b3150ee205', CAST(N'2015-04-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1206, N'CORTOMYCIN (Otic)', 975125, N'Hydrocortisone', N'41cfa382-d4ae-43c5-83a5-1ecc635d109b', CAST(N'2009-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1207, N'CORTOMYCIN OINTMENT (Ophthalmic)', 915175, N'Bacitracin', N'7c50e7f2-1208-4f19-9807-4ab0dd314d3b', CAST(N'2010-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1208, N'CORTROSYN (Injectable)', 19008009, N'Cosyntropin', N'746856e9-3930-4f6a-b8e6-a03845d6dd0b', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1209, N'COSOPT (Ophthalmic)', 981709, N'dorzolamide', N'06c062ca-add7-4ddf-ba7c-7b5dd531e9ec', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1210, N'Cosyntropin (Injectable)', 19008009, N'Cosyntropin', N'39af194b-c854-4abf-893a-a47856fe42a1', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1211, N'COUMADIN (Injectable)', 1310149, N'Warfarin', N'c0f238ff-2804-4150-9766-22a5111b4e74', CAST(N'2013-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1212, N'COUMADIN (Oral Pill)', 1310149, N'Warfarin', N'91fa852c-b43d-4a55-983b-74aa6827125d', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1213, N'COZAAR (Oral Pill)', 1367500, N'Losartan', N'9199238d-8b24-4ca8-bd24-c200853416f6', CAST(N'2012-10-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1214, N'CREOMULSION (Oral Liquid)', 1119510, N'Dextromethorphan', N'0e810cf2-fdb9-4d32-be57-8046318fb029', CAST(N'2013-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1215, N'CREON (Oral Pill)', 919204, N'Amylases', N'45b9a46b-3294-4604-8aea-60624d663020', CAST(N'2012-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1216, N'Cresol/Formaldehyde (Irrigation)', 19087223, N'Cresol', N'6989bddc-910e-47e6-aa8f-619a330e81b8', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1217, N'CREST MOUTHWASH (Mouthwash)', 989301, N'Cetylpyridinium', N'41dc2d29-376d-4e8e-84c0-acf0e6ad1205', CAST(N'2012-09-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1218, N'CRESTOR (Oral Pill)', 1510813, N'rosuvastatin', N'4f2f91bb-f119-4e29-8499-f36f436707b3', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1219, N'CRITIC-AID CLEAR (Topical)', 907879, N'Miconazole', N'cbc5d976-850a-476e-b179-b7a5a8675524', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1220, N'CRITIC-AID CLEAR MOISTURE (Topical)', 19033354, N'Petrolatum', N'0b6da97e-519b-4579-9895-f4ede5c48b47', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1221, N'CRITIC-AID SKIN (Paste)', 911064, N'Zinc Oxide', N'caaac1f0-437d-4185-8670-9f11b9cefe63', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1222, N'CRIXIVAN (Oral Pill)', 1711523, N'Indinavir', N'01c5574c-1056-49c6-af20-e950db3f4139', CAST(N'2012-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1223, N'Cromolyn (Inhalant)', 1152631, N'Cromolyn', N'8fe37a7a-edd6-4733-bb7e-e01c1906aeba', CAST(N'2012-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1224, N'Cromolyn (Ophthalmic)', 1152631, N'Cromolyn', N'5d8ed6be-ecc9-4e26-b6c1-4eaef46c0fa7', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1225, N'Cromolyn (Oral Liquid)', 1152631, N'Cromolyn', N'169a439e-aa20-4cdf-bbe0-6b17934e8355', CAST(N'2015-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1226, N'Crotamiton (Topical)', 969276, N'crotamiton', N'56465446-7f78-4ad1-acb3-08a4d60e5715', CAST(N'2015-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1227, N'Cultivated oat pollen extract (Injectable)', 40161642, N'cultivated oat pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1228, N'Cultivated rye grass pollen extract (Injectable)', 40228147, N'cultivated rye grass pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1229, N'Cupric oxide/Folic Acid/Niacinamide/Zinc Oxide (Oral Pill)', 19073229, N'Cupric oxide', N'91d306d7-ef63-4f35-84a4-36e8469eac98', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1230, N'CUPRIMINE (Oral Pill)', 19028050, N'Penicillamine', N'80e736d3-2017-4d68-94b4-38255c3c59c6', CAST(N'2012-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1231, N'CUTIVATE (Topical)', 1149380, N'fluticasone', N'9953df12-a2b4-4d22-b204-746fc29f7a5f', CAST(N'2015-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1232, N'CUVPOSA (Oral Liquid)', 963353, N'Glycopyrrolate', N'd200bd44-9856-4104-a29e-a4cca3db6737', CAST(N'2013-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1233, N'CYANOKIT (Injectable)', 1377023, N'Hydroxocobalamin', N'416c7978-5661-6e63-6546-6f7265766572', CAST(N'2012-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1234, N'Cyclobenzaprine (Oral Pill)', 778711, N'cyclobenzaprine', N'54a6b01c-5a7c-4710-93fa-69fd2c2549e3', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1235, N'Cyclobenzaprine/Magnesium Oxide (Oral Pill)', 778711, N'cyclobenzaprine', N'c2b6213c-3397-42cf-8080-59d6a5c31d0a', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1236, N'CYCLOGYL (Ophthalmic)', 910232, N'Cyclopentolate', N'1d008c76-7210-4ace-90fa-7cd22762e12e', CAST(N'2011-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1237, N'CYCLOMYDRIL (Ophthalmic)', 910232, N'Cyclopentolate', N'8268b70f-3f10-48dd-bb24-baaeb27a1325', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1238, N'Cyclopentolate (Ophthalmic)', 910232, N'Cyclopentolate', N'0504a84a-0ba4-483b-9682-9bf3818410ee', CAST(N'2013-02-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1239, N'Cyclopentolate/Phenylephrine (Ophthalmic)', 910232, N'Cyclopentolate', N'8268b70f-3f10-48dd-bb24-baaeb27a1325', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1240, N'Cyclophosphamide (Injectable)', 1310317, N'Cyclophosphamide', N'591d9955-3d9c-4cdc-a308-2f1288376b9f', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1241, N'Cyclophosphamide (Oral Pill)', 1310317, N'Cyclophosphamide', N'15d30249-4714-4b13-b8ca-5dff38424282', CAST(N'2015-05-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1242, N'cycloSERINE (Oral Pill)', 1710446, N'Cycloserine', N'0071f9f3-a29b-4ba6-9555-69f672501cbc', CAST(N'2013-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1243, N'cycloSPORINE (Oral Pill)', 19010482, N'Cyclosporine', N'a8e29b54-e4ab-4bb9-ab6c-e4414a3f025b', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1244, N'CYMBALTA (Oral Pill)', 715259, N'duloxetine', N'67927928-c20f-4e12-a327-d26561d7810a', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1245, N'Cyproheptadine (Oral Liquid)', 1110727, N'Cyproheptadine', N'54686520-506f-7765-7220-436f736d6963', CAST(N'2013-08-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1246, N'Cyproheptadine (Oral Pill)', 1110727, N'Cyproheptadine', N'f90faaa3-f40f-4653-8fb8-144d61c6b1d4', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1247, N'CYSTADANE (Oral Liquid)', 1520218, N'Betaine', N'05964dae-8b84-467c-af97-c82706a3cad2', CAST(N'2007-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1248, N'Cysteamine (Oral Pill)', 910888, N'Cysteamine', N'b7b6e290-5168-46dc-9e7f-5995420ec1c1', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1249, N'Cysteine (Injectable)', 19010955, N'Cysteine', N'85669228-2bb1-4095-b90e-a467d357b9bb', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1250, N'Cytarabine (Injectable)', 1311078, N'Cytarabine', N'ee6decae-7e1b-45cf-b2d0-c15946d8fa1f', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1251, N'Cytarabine liposome (Injectable)', 40175460, N'Cytarabine liposome', N'9d05d299-b9b0-4bf6-95cf-904dcc4e1f84', CAST(N'2015-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1252, N'CYTOGAM (Injectable)', 586491, N'cytomegalovirus immune globulin', N'd72d56e3-1f27-4ec1-a49d-7c0f8f5bc512', CAST(N'2012-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1253, N'Cytomegalovirus immune globulin (Injectable)', 586491, N'cytomegalovirus immune globulin', N'd72d56e3-1f27-4ec1-a49d-7c0f8f5bc512', CAST(N'2012-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1254, N'CYTOMEL (Oral Pill)', 1505346, N'Triiodothyronine', N'248d01a9-a79a-474a-b244-49b24e5b9873', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1255, N'CYTOTEC (Oral Pill)', 1150871, N'Misoprostol', N'04c42f2b-d049-4892-b003-bdf346cb4ab4', CAST(N'2014-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1256, N'CYTOVENE (Injectable)', 1757803, N'Ganciclovir', N'38e8f819-985c-4d20-aafd-3ba953af26ca', CAST(N'2010-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1257, N'Dabigatran etexilate (Oral Pill)', 40228152, N'dabigatran etexilate', N'5db7f199-8752-4d24-85f7-e34ca8f4d02e', CAST(N'2011-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1258, N'Dabrafenib (Oral Pill)', 43532299, N'dabrafenib', N'803beaaa-33f9-48cc-9a95-c2e887e095b4', CAST(N'2015-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1259, N'Dacarbazine (Injectable)', 1311409, N'Dacarbazine', N'b6b97e41-5f15-498c-abfb-d8443ea4d216', CAST(N'2015-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1260, N'DACOGEN (Injectable)', 19024728, N'decitabine', N'acaf6e50-7cd3-4431-98ef-d1c07e3ed8c2', CAST(N'2014-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1261, N'DALIRESP (Oral Pill)', 40236897, N'Roflumilast', N'c9a1d0a8-581f-4f91-a2b8-f419192d0ebf', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1262, N'DALLERGY DROPS (Oral Liquid)', 1192710, N'Chlorpheniramine', N'd7ef44ce-626d-41b3-8114-98d2ce1ae31a', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1263, N'DALLERGY REFORMULATED MAR 2014 (Oral Liquid)', 990413, N'chlorcyclizine', N'16353978-488f-4248-908a-ad03eee60cbf', CAST(N'2014-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1264, N'DALLERGY REFORMULATED MAR 2014 (Oral Pill)', 990413, N'chlorcyclizine', N'f567b8ff-d476-4e14-838e-8f62467790cf', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1265, N'DALLERGY REFORMULATED NOV 2011 (Chewable)', 990413, N'chlorcyclizine', N'70f9d9c5-6204-4ddc-be82-d6c9e59d70e5', CAST(N'2011-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1266, N'DALLERGY REFORMULATED NOV 2011 (Oral Liquid)', 990413, N'chlorcyclizine', N'5585cf36-d7e7-40ce-982e-e8c6a58e85d1', CAST(N'2013-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1267, N'Dalteparin (Injectable)', 1301065, N'Dalteparin', N'23527b8b-9b28-4e6d-9751-33b143975ac7', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1268, N'DANTRIUM (Injectable)', 711714, N'Dantrolene', N'4df35098-8702-46be-ac67-30cfdf1aa570', CAST(N'2014-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1269, N'DANTRIUM (Oral Pill)', 711714, N'Dantrolene', N'57b4eec1-49e1-432c-95ae-0fe36e32d64b', CAST(N'2012-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1270, N'Dantrolene (Injectable)', 711714, N'Dantrolene', N'8f7b3ac0-604d-4c78-b545-5e0f8ea3d698', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1271, N'Dantrolene (Oral Pill)', 711714, N'Dantrolene', N'57b4eec1-49e1-432c-95ae-0fe36e32d64b', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1272, N'Dapagliflozin (Oral Pill)', 44785829, N'dapagliflozin', N'fc6ae30e-868b-4ac9-b69d-900922503998', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1273, N'Dapsone (Oral Pill)', 1711759, N'Dapsone', N'aec21561-42bd-4706-86e6-ff0e1e915079', CAST(N'2013-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1274, N'DAPTOmycin (Injectable)', 1786617, N'Daptomycin', N'e33053a5-38cd-4a34-8566-208f94f55714', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1275, N'DARAPRIM (Oral Pill)', 1760039, N'Pyrimethamine', N'5368616d-6520-6f6e-2053-686b72656c69', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1276, N'Dark leaved mugwort pollen extract (Injectable)', 40170722, N'dark leaved mugwort pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1277, N'Darunavir (Oral Pill)', 1756831, N'darunavir', N'69b6f72d-fe6b-4347-8801-99ece7e2a29b', CAST(N'2013-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1278, N'DARVON-N (Oral Pill)', 1153664, N'Propoxyphene', N'c6c48eee-240b-4425-8691-35462523652e', CAST(N'2010-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1279, N'Dasatinib (Oral Pill)', 1358436, N'dasatinib', N'0e7f054c-7a27-4192-bd1c-6115d8be858f', CAST(N'2012-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1280, N'Daunorubicin Liposomal (Injectable)', 19051599, N'Daunorubicin Liposomal', N'bf2b4eaf-5227-42d9-af78-88d921e565f6', CAST(N'2012-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1281, N'DAUNOXOME (Injectable)', 19051599, N'Daunorubicin Liposomal', N'bf2b4eaf-5227-42d9-af78-88d921e565f6', CAST(N'2012-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1282, N'DAYHIST-1 (Oral Pill)', 1197677, N'Clemastine', N'1257b2e0-4ae6-4aab-b1f3-c93fd70116c6', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1283, N'DAYPRO (Oral Pill)', 1118045, N'oxaprozin', N'755ca241-0d01-41ba-a735-e37365352a71', CAST(N'2013-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1284, N'DDAVP (Injectable)', 1517070, N'desmopressin', N'651f6fee-a2c7-431b-8d5d-58b156c72244', CAST(N'2015-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1285, N'DDAVP (Nasal)', 1517070, N'desmopressin', N'95e53e87-2d52-4e37-93ea-89f440938f7a', CAST(N'2012-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1286, N'DDAVP (Oral Pill)', 1517070, N'desmopressin', N'1bb9b8d5-eed6-45cb-b1b9-e43d3ee6fecd', CAST(N'2009-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1287, N'DEBACTEROL (Mucosal)', 991706, N'SULFONATED PHENOL', N'15d22ca4-503e-2751-e054-00144ff8d46c', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1288, N'DEBACTEROL (Topical)', 991706, N'SULFONATED PHENOL', N'15d22ca4-503e-2751-e054-00144ff8d46c', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1289, N'DEBROX (Otic)', 958999, N'carbamide peroxide', N'755d3234-2df4-4464-a2c5-b04276065fc5', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1290, N'DECARA (Oral Pill)', 19095164, N'Cholecalciferol', N'3822c324-e22a-4ac4-ac1c-9b63983b516a', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1291, N'DECAVAC (Injectable)', 529303, N'diphtheria toxoid vaccine, inactivated', N'f7faec1c-046f-45c9-b9c0-ef65d377ba87', CAST(N'2011-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1292, N'Decitabine (Injectable)', 19024728, N'decitabine', N'0b9599e8-9018-42ee-b247-e2a944c36510', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1293, N'DECONEX (Oral Pill)', 1163944, N'Guaifenesin', N'51c84f58-f1b9-4fa8-916b-78c6eec61861', CAST(N'2012-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1294, N'Deferiprone (Oral Pill)', 19011091, N'deferiprone', N'dc8cbc3d-026c-0db5-42e8-8e93d374dd23', CAST(N'2015-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1295, N'Deferoxamine (Injectable)', 1711947, N'Deferoxamine', N'a7174843-5965-49fc-b842-f7eff7b48bbc', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1296, N'DELATESTRYL (Injectable)', 1636780, N'Testosterone', N'67e2cc36-a379-11dc-8314-0800200c9a66', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1297, N'Delavirdine (Oral Pill)', 1747157, N'Delavirdine', N'992306f0-c612-41dd-a4df-35d1fd360033', CAST(N'2011-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1298, N'DELSYM COUGH PLUS CHEST CONGESTION DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'8252cdec-b668-4450-b045-e093479ab542', CAST(N'2014-11-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1299, N'DELSYM COUGH RELIEF PLUS SOOTHING ACTION (Oral Lozenge)', 1119510, N'Dextromethorphan', N'cac708a5-af6c-4c60-beb4-32e792f588c5', CAST(N'2012-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1300, N'DELSYM NIGHT TIME COUGH AND COLD REFORMULATED JAN 2012 (Oral Liquid)', 1125315, N'Acetaminophen', N'f8437225-5e77-4dae-82f5-e706f7965c53', CAST(N'2011-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1301, N'DELTASONE (Oral Pill)', 1551099, N'Prednisone', N'18bebd56-4848-32ae-e054-00144ff88e88', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1302, N'DEMADEX (Injectable)', 942350, N'torsemide', N'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', CAST(N'2007-02-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1303, N'DEMADEX (Oral Pill)', 942350, N'torsemide', N'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', CAST(N'2007-02-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1304, N'Demeclocycline (Oral Pill)', 1714527, N'Demeclocycline', N'4ff23e3b-e111-47fd-9776-1d89d6da049b', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1305, N'DEMEROL (Injectable)', 1102527, N'Meperidine', N'53ddfe26-5a7e-4f39-8904-829a03538f63', CAST(N'2011-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1306, N'DEMEROL (Oral Pill)', 1102527, N'Meperidine', N'6c2b41c3-732c-477f-8790-0eecea43b2da', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1307, N'DEMSER (Oral Pill)', 1401581, N'Metyrosine', N'32fb2f2f-34b5-4cd5-9145-c3ab37c5ca92', CAST(N'2011-03-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1308, N'DENAVIR (Topical)', 981654, N'penciclovir', N'8d119057-f299-43ea-b516-e84a09cab890', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1309, N'DENDRACIN NEURODENDRAXCIN (Topical)', 939881, N'Capsaicin', N'05742cd5-ece2-4007-bdf0-46b76d23df74', CAST(N'2015-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1310, N'Denileukin diftitox (Injectable)', 19051642, N'denileukin diftitox', N'42dfffb1-d0f3-42d5-944c-64f092fc436e', CAST(N'2013-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1311, N'DENTA 5000 PLUS (Toothpaste)', 19069022, N'Sodium Fluoride', N'00b09487-043e-4e8c-badd-116dc56eef15', CAST(N'2012-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1312, N'DENTICARE DENTI FOAM (Oral Foam)', 19069022, N'Sodium Fluoride', N'c92bb4ea-e7e0-49ec-8329-2cc215c35ab8', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1313, N'DENTICARE DENTI FREEZE GEL (Oral Gel)', 917006, N'Benzocaine', N'8489b2e8-4647-4838-88b9-817b59ef83b0', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1314, N'DENTICARE DENTI FREEZE OINTMENT (Oral Ointment)', 917006, N'Benzocaine', N'522754bc-5d11-48b1-99fd-1edcf3cd13fc', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1315, N'DENTICARE NEUTRAL (Mouthwash)', 19069022, N'Sodium Fluoride', N'1da64824-9389-4109-bea9-b91600caf023', CAST(N'2010-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1316, N'DENTICARE PRO GEL (Oral Gel)', 19069022, N'Sodium Fluoride', N'b4dbb9f5-4355-4d85-ae8b-a46e4fb2af78', CAST(N'2014-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1317, N'Deoxycorticosterone (Injectable)', 19017895, N'Deoxycorticosterone', N'5e9f71f1-09d4-4313-ad66-5cfffe428ba8', CAST(N'2013-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1318, N'DEPAKOTE (Oral Pill)', 745466, N'Valproate', N'd3f7c414-db83-4a7a-a7aa-745c5606cdba', CAST(N'2013-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1319, N'DEPOCYT (Injectable)', 40175460, N'Cytarabine liposome', N'9d05d299-b9b0-4bf6-95cf-904dcc4e1f84', CAST(N'2015-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1320, N'DEPODUR (Injectable)', 19112635, N'Morphine Liposomal', N'cc8f105c-c8ee-4c57-86ee-ee6bf917cf78', CAST(N'2008-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1321, N'DEPO-ESTRADIOL (Injectable)', 1548195, N'Estradiol', N'9a4229fd-fecd-4ac1-9c4f-6d442533457f', CAST(N'2013-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1322, N'DEPO-MEDROL (Injectable)', 1506270, N'Methylprednisolone', N'823b0010-2b57-4e76-b5ac-4a8c2963438f', CAST(N'2015-05-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1323, N'DEPO-PROVERA (Injectable)', 1500211, N'Medroxyprogesterone', N'2425f944-15d7-4b84-95a0-6538e843f130', CAST(N'2013-10-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1324, N'DEPO-TESTOSTERONE (Injectable)', 1636780, N'Testosterone', N'fe808a56-7542-4d23-97b4-d98a3ef63016', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1325, N'DERMA GRAN (Topical)', 985247, N'Aluminum Hydroxide', N'464bdaf6-e64b-401f-9d14-f6148bb16653', CAST(N'2013-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1326, N'DERMACORT (Topical)', 975125, N'Hydrocortisone', N'a0962a88-8a49-414c-aecf-db94ec033f16', CAST(N'2011-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1327, N'DERMAREST ECZEMA (Topical)', 975125, N'Hydrocortisone', N'0292ab62-5088-45fa-a056-70c2fcc19ef7', CAST(N'2012-05-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1328, N'DERMAREST PSORIASIS (Topical)', 964407, N'Salicylic Acid', N'aa786552-9ed8-41ef-aa20-0ac254555c41', CAST(N'2012-05-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1329, N'DERMA-SMOOTHE FS (Topical)', 996541, N'fluocinolone', N'bc61c619-a71c-46f5-80f1-9e9ee71134aa', CAST(N'2013-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1330, N'DERMASORB AF (Topical)', 980867, N'Clioquinol', N'b1f875e9-a95b-47ff-80cc-54a2d7a2c08c', CAST(N'2013-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1331, N'DERMASORB HC (Topical)', 975125, N'Hydrocortisone', N'eaaf8c06-6aac-4488-a4be-2f8912e30363', CAST(N'2013-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1332, N'DERMASORB TA (Topical)', 903963, N'Triamcinolone', N'5b1d1510-118f-4b82-9119-386d572971d2', CAST(N'2013-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1333, N'DERMASORB XM (Topical)', 906914, N'Urea', N'95e5f86e-897b-4ef9-a514-6b003387f84c', CAST(N'2013-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1334, N'DERMATOP (Topical)', 928110, N'prednicarbate', N'ccc7985a-da29-475f-8a53-0f76ba20b86d', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1335, N'DERMAZENE (Topical)', 975125, N'Hydrocortisone', N'cc657bc6-31db-47cb-970d-796d77ccf0ed', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1336, N'DERMOPLAST ANTIBACTERIAL (Topical)', 916802, N'Benzethonium', N'2fbb256e-6b36-4923-b57d-58575f5abf2e', CAST(N'2014-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1337, N'DERMOPLAST PAIN (Topical)', 917006, N'Benzocaine', N'0648c46c-a3db-4b82-971b-50a46098ac7e', CAST(N'2014-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1338, N'DERMOTIC (Otic)', 996541, N'fluocinolone', N'd2ffb64b-1614-4e2f-8125-9660ea3754f2', CAST(N'2012-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1339, N'DESENEX (Topical)', 907879, N'Miconazole', N'c2ec4973-07d6-480f-b47a-ac57b4b703f1', CAST(N'2012-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1340, N'DESFERAL (Injectable)', 1711947, N'Deferoxamine', N'a7174843-5965-49fc-b842-f7eff7b48bbc', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1341, N'Desflurane (Inhalant)', 19002770, N'desflurane', N'7f977eb6-c7c4-4dc5-ab3b-07414dbe5da5', CAST(N'2015-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1342, N'Desipramine (Oral Pill)', 716968, N'Desipramine', N'7500ac1b-a1ca-46ed-8f4e-5998310c676e', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1343, N'DESITIN (Topical)', 911064, N'Zinc Oxide', N'bee0ed35-a0ca-45d4-9fed-b890369e323e', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1344, N'Desloratadine (Oral Disintegrating)', 1103006, N'desloratadine', N'84b20dcb-e15b-44a2-b692-1eea5adb996e', CAST(N'2015-05-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1345, N'Desloratadine (Oral Pill)', 1103006, N'desloratadine', N'91ce2b02-8f8e-4929-a962-b8f88a40b70a', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1346, N'Desmopressin (Injectable)', 1517070, N'desmopressin', N'fd7672cb-4c15-403c-8e04-68369ad9bb77', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1347, N'Desmopressin (Nasal)', 1517070, N'desmopressin', N'c9e4aedb-27d6-4499-9245-93937d3a375f', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1348, N'Desmopressin (Oral Pill)', 1517070, N'desmopressin', N'7a26b415-77cd-4b2f-9c76-fa52d2eb6be6', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1349, N'Desogestrel/Ethinyl Estradiol (Oral Pill)', 1588000, N'Desogestrel', N'fed687f4-1ffa-49ec-92c9-4d09de17a833', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1350, N'DESONATE (Topical)', 917205, N'Desonide', N'8d7c46ed-e6c3-465b-be3d-16ecab43a9e7', CAST(N'2014-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1351, N'Desonide (Topical)', 917205, N'Desonide', N'a7e5f030-b849-4805-94e6-f45631eaa37f', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1352, N'DESOWEN (Topical)', 917205, N'Desonide', N'a7e5f030-b849-4805-94e6-f45631eaa37f', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1353, N'Desoximetasone (Topical)', 917336, N'Desoximetasone', N'950f08b4-467f-4f01-ab99-834cac94875e', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1354, N'DESOXYN (Oral Pill)', 704053, N'Methamphetamine', N'f03a68d5-ed00-8a2d-af68-28be909ea85f', CAST(N'2015-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1355, N'DESPEC REFORMULATED JUN 2008 (Oral Liquid)', 1163944, N'Guaifenesin', N'5e7c3fe6-ea77-4472-8a4c-4a015ad01fd5', CAST(N'2014-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1356, N'DESQUAM (Soap)', 918172, N'Benzoyl Peroxide', N'0e775c30-7294-4e99-bcc5-3b3b01a62fc5', CAST(N'2011-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1357, N'DETROL (Oral Pill)', 913782, N'tolterodine', N'fa938543-29b3-46ce-a176-5563bc8f2f80', CAST(N'2011-08-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1358, N'DEWEES CARMINATIVE (Oral Liquid)', 908464, N'magnesium carbonate', N'163bceeb-ca74-413e-88b9-5c7bc9bbeb0d', CAST(N'2014-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1359, N'Dexamethasone (Injectable)', 1518254, N'Dexamethasone', N'685c33e5-c6e0-4717-b3bb-4c2cd0fcb063', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1360, N'Dexamethasone (Ophthalmic)', 1518254, N'Dexamethasone', N'863fb43c-dd33-485b-9385-744db7a98b83', CAST(N'2014-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1361, N'Dexamethasone (Oral Liquid)', 1518254, N'Dexamethasone', N'a817ab46-54ec-4e3f-886b-04ce6ac1caf9', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1362, N'Dexamethasone (Oral Pill)', 1518254, N'Dexamethasone', N'428cc7bb-e0f9-466c-b38f-11ac22cda752', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1363, N'Dexamethasone/Neomycin/Polymyxin B (Ophthalmic)', 1518254, N'Dexamethasone', N'449a6fd8-c2ac-40d0-b74a-e5c7fc6670f3', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1364, N'Dexamethasone/Tobramycin (Ophthalmic)', 1518254, N'Dexamethasone', N'1b6887e4-9deb-494a-939d-49ce77ef2c1b', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1365, N'Dexbrompheniramine (Chewable)', 1188052, N'dexbrompheniramine', N'f0b90cc2-901c-4498-b892-d8883182b6fd', CAST(N'2014-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1366, N'Dexbrompheniramine (Oral Pill)', 1188052, N'dexbrompheniramine', N'0d203b5c-8b10-428b-8703-17be6b4ce6eb', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1367, N'Dexbrompheniramine/Dextromethorphan/Phenylephrine (Oral Liquid)', 1188052, N'dexbrompheniramine', N'a3b34f38-87da-4a38-ac73-66d28cc8647e', CAST(N'2012-01-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1368, N'Dexbrompheniramine/Phenylephrine (Oral Liquid)', 1188052, N'dexbrompheniramine', N'16353978-488f-4248-908a-ad03eee60cbf', CAST(N'2014-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1369, N'Dexbrompheniramine/Phenylephrine (Oral Pill)', 1188052, N'dexbrompheniramine', N'f567b8ff-d476-4e14-838e-8f62467790cf', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1370, N'Dexbrompheniramine/Pseudoephedrine (Oral Pill)', 1188052, N'dexbrompheniramine', N'82f9f52c-797e-4842-9c9a-40213181d99a', CAST(N'2012-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1371, N'Dexchlorpheniramine (Oral Liquid)', 1188114, N'dexchlorpheniramine', N'1950f4d6-7fc2-44cd-9f7d-1359315353fc', CAST(N'2012-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1372, N'Dexchlorpheniramine/Phenylephrine (Oral Pill)', 1188114, N'dexchlorpheniramine', N'c1d6e914-74cc-4cdf-9587-7eaaa4a386e5', CAST(N'2013-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1373, N'Dexchlorpheniramine/Pseudoephedrine (Oral Liquid)', 1188114, N'dexchlorpheniramine', N'93e0411b-68c2-4b5c-aa74-b1d94b5b2206', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1374, N'Dexchlorpheniramine/Pseudoephedrine (Oral Pill)', 1188114, N'dexchlorpheniramine', N'9d08d801-6cca-4a1c-ab53-5979f16e3110', CAST(N'2012-03-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1375, N'DEXEDRINE (Oral Pill)', 719311, N'Dextroamphetamine', N'9ee6fd99-88ea-4cea-8370-a8945581325f', CAST(N'2015-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1376, N'DEXFERRUM (Injectable)', 1381661, N'Iron-Dextran Complex', N'77f5ae2a-8cd3-4f01-bddd-8158f932c8db', CAST(N'2014-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1377, N'DEXILANT (Oral Pill)', 19039926, N'dexlansoprazole', N'd62d754e-2310-4912-b022-603ae925710d', CAST(N'2012-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1378, N'Dexlansoprazole (Oral Pill)', 19039926, N'dexlansoprazole', N'd62d754e-2310-4912-b022-603ae925710d', CAST(N'2012-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1379, N'Dexmedetomidine (Injectable)', 19061088, N'Dexmedetomidine', N'c1b8eb58-596b-481d-beb6-ba9d2237abf4', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1380, N'Dexmethylphenidate (Oral Pill)', 731533, N'dexmethylphenidate', N'07efe5d5-9857-490a-9a31-9dd07ea9386e', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1381, N'Dexpanthenol (Injectable)', 988294, N'dexpanthenol', N'0ed47f4b-5182-40b7-a440-9e7b06819d95', CAST(N'2014-09-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1382, N'Dexpanthenol/Niacinamide/Riboflavin/Thiamine/Vitamin B6 (Injectable)', 988294, N'dexpanthenol', N'282ccec8-9bcd-4571-9b91-bbb96ef2620d', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1383, N'Dexrazoxane (Injectable)', 1353011, N'Dexrazoxane', N'77702d60-d1ea-4e4c-a837-aaa813b66064', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1384, N'Dextran 70/Hypromellose (Ophthalmic)', 1319156, N'Dextran 70', N'9dba4117-a6e1-40ef-ab9e-b2f21e032766', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1385, N'Dextran 70/Polyethylene Glycol 400/Povidone/Tetrahydrozoline (Ophthalmic)', 1319156, N'Dextran 70', N'593d1899-6c87-4366-9c1b-9f6933598b8a', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1386, N'Dextroamphetamine (Oral Liquid)', 719311, N'Dextroamphetamine', N'7658071e-ee2c-4d23-94ce-1906959ec036', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1387, N'Dextroamphetamine (Oral Pill)', 719311, N'Dextroamphetamine', N'd6394df5-f2c9-47eb-b57e-f3e9cfd94f84', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1388, N'Dextroamphetamine XR (Oral Pill)', 719311, N'Dextroamphetamine', N'669a308e-ce09-4ac8-84d9-ee252c5d3223', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1389, N'Dextromethorphan (Oral Liquid)', 1119510, N'Dextromethorphan', N'4edc0605-25fc-4a66-8f68-798d1d71446b', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1390, N'Dextromethorphan (Oral Lozenge)', 1119510, N'Dextromethorphan', N'00ad5b08-5371-4a2f-be49-4254106d7f64', CAST(N'2011-12-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1391, N'Dextromethorphan (Oral Pill)', 1119510, N'Dextromethorphan', N'76118c4c-3008-4173-b114-a8a5553243e3', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1392, N'Dextromethorphan XR (Oral Liquid)', 1119510, N'Dextromethorphan', N'5d12a1b8-f1fb-41ca-9a4f-0595a585cbb5', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1393, N'Dextromethorphan/Doxylamine (Oral Liquid)', 1119510, N'Dextromethorphan', N'd26d12d6-b44a-4f33-bf8b-bc0f9c55d2fe', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1394, N'Dextromethorphan/Doxylamine/Pseudoephedrine (Oral Liquid)', 1119510, N'Dextromethorphan', N'784843f7-2d13-4831-a50d-d109a371966d', CAST(N'2014-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1395, N'Dextromethorphan/guaiFENesin (Oral Granules)', 1119510, N'Dextromethorphan', N'98679846-e383-4341-96a7-7df2a35ca5ff', CAST(N'2014-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1396, N'Dextromethorphan/guaiFENesin (Oral Liquid)', 1119510, N'Dextromethorphan', N'6cbf83f6-cbf4-4e5b-a383-6d71124547bc', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1397, N'Dextromethorphan/guaiFENesin (Oral Pill)', 1119510, N'Dextromethorphan', N'64797c73-2a3b-4cff-9311-c0eb663872c2', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1398, N'Dextromethorphan/guaiFENesin/Phenylephrine (Oral Liquid)', 1119510, N'Dextromethorphan', N'f8c86c63-281b-40dc-9f64-ba88961bd906', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1399, N'Dextromethorphan/guaiFENesin/Phenylephrine (Oral Pill)', 1119510, N'Dextromethorphan', N'5fd655a8-f298-4d35-80df-933c165568aa', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1400, N'Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Liquid)', 1119510, N'Dextromethorphan', N'18b42a89-22b9-46d6-9a08-8642b7bbca5e', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1401, N'Dextromethorphan/guaiFENesin/Pseudoephedrine (Oral Pill)', 1119510, N'Dextromethorphan', N'18043cd4-1062-6059-e054-00144ff88e88', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1402, N'Dextromethorphan/Menthol (Oral Lozenge)', 1119510, N'Dextromethorphan', N'cac708a5-af6c-4c60-beb4-32e792f588c5', CAST(N'2014-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1403, N'Dextromethorphan/Phenylephrine (Oral Liquid)', 1119510, N'Dextromethorphan', N'20e45243-3989-413a-bcf1-49d754ff2e44', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1404, N'Dextromethorphan/Phenylephrine/Pyrilamine (Oral Liquid)', 1119510, N'Dextromethorphan', N'3b5ca328-d462-490d-a28d-8a1a47299668', CAST(N'2015-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1405, N'Dextromethorphan/Phenylephrine/Pyrilamine (Oral Pill)', 1119510, N'Dextromethorphan', N'480b04c4-40ee-41d7-842b-d53ba074dcb8', CAST(N'2012-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1406, N'Dextromethorphan/Phenylephrine/Thonzylamine (Oral Liquid)', 1119510, N'Dextromethorphan', N'd1c74d4c-71bb-4934-9a4e-556366c07fca', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1407, N'Dextromethorphan/Phenylephrine/Triprolidine (Oral Liquid)', 1119510, N'Dextromethorphan', N'836d062c-29f0-4fd7-b65c-771a3bbd52c4', CAST(N'2014-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1408, N'Dextromethorphan/Promethazine (Oral Liquid)', 1119510, N'Dextromethorphan', N'c13f5f93-d291-4d0d-80fe-44dba4c5401e', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1409, N'DHE-45 (Injectable)', 1126557, N'Dihydroergotamine', N'aec0308f-f583-4e27-9bb8-21800bde7faa', CAST(N'2015-01-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1410, N'DHS ZINC (Shampoo)', 944360, N'zinc pyrithione', N'62e13b0d-2455-46c2-bff3-1aa88b092327', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1411, N'DIABETIC TUSSIN DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'e70bcb6c-6ffb-474f-b388-7a6c8cc8c146', CAST(N'2014-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1412, N'DIAMODE (Oral Pill)', 991876, N'Loperamide', N'069e7979-a223-4819-b6cf-ea2731bf156b', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1413, N'Diazepam (Injectable)', 723013, N'Diazepam', N'0fb9bdfb-4d92-483e-acfe-4c9b2a84441c', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1414, N'Diazepam (Oral Liquid)', 723013, N'Diazepam', N'78d5a77d-5ca7-4f16-b4d0-fce86456593c', CAST(N'2012-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1415, N'Diazepam (Oral Pill)', 723013, N'Diazepam', N'66ea2936-8b6c-4b72-b077-ecf88e83fee7', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1416, N'Diazoxide (Oral Liquid)', 1523280, N'Diazoxide', N'b16c7832-2fd9-49af-b923-1dc0d91fd6e2', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1417, N'Dibasic potassium phosphate/Potassium phosphate (Injectable)', 19076714, N'Dibasic potassium phosphate', N'e7d6dfe1-d8ad-4daf-9c6a-5f42e3e19138', CAST(N'2014-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1418, N'Dibucaine (Rectal)', 923840, N'Dibucaine', N'bcf33951-d3a4-46c5-b208-56adc0011047', CAST(N'2014-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1419, N'Dibucaine (Topical)', 923840, N'Dibucaine', N'fc11a231-1d2f-42ba-8ece-34495a14ab44', CAST(N'2014-09-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1420, N'Diclofenac (Ophthalmic)', 1124300, N'Diclofenac', N'980b3b80-44cb-44b5-89cc-d451a3b20ae3', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1421, N'Diclofenac (Oral Liquid)', 1124300, N'Diclofenac', N'd7335594-50c9-4ae2-a3e3-b9a375187b62', CAST(N'2012-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1422, N'Diclofenac (Oral Pill)', 1124300, N'Diclofenac', N'7a7e69c1-6eea-4f27-b2ed-3e5fb176fdae', CAST(N'2015-09-04 00:00:00.000' AS DateTime), 493, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1423, N'Diclofenac (Topical)', 1124300, N'Diclofenac', N'43d7d5d1-a593-4b97-ae24-f3e92be90004', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1424, N'Diclofenac/Misoprostol (Oral Pill)', 1124300, N'Diclofenac', N'27ccf64c-fc2b-44d3-bf57-397417b406f8', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1425, N'Dicloxacillin (Oral Pill)', 1724666, N'Dicloxacillin', N'24e821aa-85b8-4f5a-aa13-83ff132952ca', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1426, N'Dicyclomine (Oral Liquid)', 924724, N'Dicyclomine', N'd59fa254-7959-47c9-bb77-ab7946a1a127', CAST(N'2015-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1427, N'Dicyclomine (Oral Pill)', 924724, N'Dicyclomine', N'b8c72fd8-6030-4c0a-80a6-d36cf698a576', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1428, N'DI-DAK-SOL (Topical)', 44784806, N'Hypochlorite', N'fdf5975e-20fa-41e4-8cd6-3d1d7c7b2d2c', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1429, N'Didanosine (Oral Pill)', 1724869, N'Didanosine', N'79d6a5ea-77d3-4547-aa67-1b465141b1f5', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1430, N'DIDREX (Oral Pill)', 719128, N'Benzphetamine', N'fe6d8813-25d9-4e56-84c7-ca6c3111a19a', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1431, N'Dienogest/Estradiol (Oral Pill)', 19054876, N'dienogest', N'02c91fba-9c47-43ef-ac78-e82369798834', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1432, N'Diethylpropion (Oral Pill)', 725822, N'Diethylpropion', N'31b58e5e-60af-4466-bd20-4b648e867e64', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1433, N'DIFFERIN (Topical)', 981774, N'adapalene', N'e616d076-9e99-46ea-b69a-585867334142', CAST(N'2013-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1434, N'DIFICID (Oral Pill)', 40239985, N'fidaxomicin', N'dd966338-c820-4270-b704-09ef75fa3ceb', CAST(N'2014-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1435, N'Diflorasone (Topical)', 960988, N'Diflorasone', N'5b92dbac-3f28-4c72-b529-7455e1b7b366', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1436, N'DIFLUCAN (Oral Pill)', 1754994, N'Fluconazole', N'9d45bff1-5615-4be0-8b7e-d749f919ea36', CAST(N'2013-02-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1437, N'Diflunisal (Oral Pill)', 1126128, N'Diflunisal', N'3baf108a-e9c1-4a2a-8e69-34aa69af1de3', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1438, N'DIGIFAB (Injectable)', 19045317, N'digoxin antibodies Fab fragments', N'c05ee6a5-c98b-45f4-83fd-40781639d653', CAST(N'2015-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1439, N'DIGITEK (Oral Pill)', 1326303, N'Digoxin', N'de7843bb-2cbd-4a76-8cd7-838ed1a12826', CAST(N'2015-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1440, N'DIGOX (Oral Pill)', 1326303, N'Digoxin', N'd2b7a781-8ef2-482b-b359-ef47d12f3e8e', CAST(N'2014-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1441, N'Digoxin (Injectable)', 1326303, N'Digoxin', N'58678fd6-afe3-4a4c-a37f-356444194cd6', CAST(N'2013-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1442, N'Digoxin (Oral Liquid)', 1326303, N'Digoxin', N'7b03a2d7-f17c-4954-85c9-fb78cfec7d76', CAST(N'2014-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1443, N'Digoxin (Oral Pill)', 1326303, N'Digoxin', N'73b5f256-f362-4206-a021-db117930ff53', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1444, N'Digoxin antibodies Fab fragments (Injectable)', 19045317, N'digoxin antibodies Fab fragments', N'c05ee6a5-c98b-45f4-83fd-40781639d653', CAST(N'2015-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1445, N'Dihematoporphyrin Ether (Injectable)', 19089602, N'Dihematoporphyrin Ether', N'f5fdda24-da7d-4e61-936e-9d1a55056b82', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1446, N'Dihydrocodeine/guaiFENesin (Oral Liquid)', 1189596, N'dihydrocodeine', N'61e61344-bf91-4742-be57-d74b30cfa4ad', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1447, N'Dihydrocodeine/guaiFENesin/Phenylephrine (Oral Liquid)', 1189596, N'dihydrocodeine', N'a3d94294-e66b-4384-9e9a-489a98bd5964', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1448, N'Dihydroergotamine (Injectable)', 1126557, N'Dihydroergotamine', N'fe826e6a-75c8-43ed-9c36-f8263ec35aff', CAST(N'2015-01-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1449, N'Dihydroergotamine (Nasal)', 1126557, N'Dihydroergotamine', N'977de209-c53a-4cb4-9f3f-1e850600a9dc', CAST(N'2013-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1450, N'DILANTIN (Chewable)', 740910, N'Phenytoin', N'95d29970-f8ef-4799-b489-ebe2285de4de', CAST(N'2013-04-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1451, N'DILANTIN (Oral Pill)', 740910, N'Phenytoin', N'0c2e0671-bb5e-4704-a242-83c5b9a0bbb0', CAST(N'2011-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1452, N'DILANTIN XR (Oral Pill)', 740910, N'Phenytoin', N'ecab970d-83e9-4aad-92de-dbb73d7a151f', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1453, N'DILATRATE XR (Oral Pill)', 1383925, N'Isosorbide Dinitrate', N'2a4cd065-a1dd-4b88-9f7a-7ba93502f972', CAST(N'2014-11-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1454, N'DILAUDID (Injectable)', 1126658, N'Hydromorphone', N'c88f81ac-1643-4c08-ae2c-63cbe956db7e', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1455, N'DILAUDID (Oral Liquid)', 1126658, N'Hydromorphone', N'3afae8b9-bb24-447a-bc7f-041c8326a438', CAST(N'2013-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1456, N'DILAUDID (Oral Pill)', 1126658, N'Hydromorphone', N'4daba60f-af60-4c7e-916e-f2ad7e7532c5', CAST(N'2013-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1457, N'Diltiazem (Injectable)', 1328165, N'Diltiazem', N'f5ea3383-5da4-4219-9802-3737a2eaeef4', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1458, N'Diltiazem (Oral Pill)', 1328165, N'Diltiazem', N'a174f7b4-4b61-4f8f-b0ec-44b8eb8826e1', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1459, N'dimenhyDRINATE (Chewable)', 928744, N'Dimenhydrinate', N'09936316-8667-4950-b017-19e3a05385a4', CAST(N'2013-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1460, N'dimenhyDRINATE (Injectable)', 928744, N'Dimenhydrinate', N'bc71539e-1a33-4709-8a24-c2894e8dbc1c', CAST(N'2012-01-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1461, N'dimenhyDRINATE (Oral Pill)', 928744, N'Dimenhydrinate', N'14ccdb11-5706-4007-aa27-a60ef3f09ce7', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1462, N'Dimercaprol (Injectable)', 1728903, N'Dimercaprol', N'bee9a137-160f-47e8-a551-ca461ae4f51e', CAST(N'2012-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1463, N'DIMETAPP COLD (Chewable)', 1130863, N'Brompheniramine', N'655b4796-6ffc-c27f-b66e-d2ae0c7ad053', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1464, N'DIMETAPP LONG ACTING COUGH PLUS COLD (Oral Liquid)', 1192710, N'Chlorpheniramine', N'059a3e6e-ea98-b0c5-ba27-b7cbbdedc917', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1465, N'DIMETAPP NIGHTTIME COLD & CONGESTION (Oral Liquid)', 1129625, N'Diphenhydramine', N'df83f907-4695-7257-f503-6e92dc97a2f2', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1466, N'Dimethicone (Topical)', 916662, N'dimethicone', N'3b0aacd3-348d-4d47-93c6-c56ea3b94ce7', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1467, N'Dimethicone/Menthol (Topical)', 916662, N'dimethicone', N'33cc1470-f0c2-4e25-bc49-ca23e3b195f0', CAST(N'2014-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1468, N'Dimethicone/Menthol/Pramoxine (Topical)', 916662, N'dimethicone', N'7c0f98df-6900-4fe5-abee-8378799ea754', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1469, N'Dimethicone/Miconazole/Zinc Oxide (Topical)', 916662, N'dimethicone', N'4114c685-acd1-4c65-842b-1cb7840852dc', CAST(N'2011-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1470, N'Dimethicone/Petrolatum (Topical)', 916662, N'dimethicone', N'0b5753aa-b591-4d6e-8341-fcc9456299b6', CAST(N'2013-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1471, N'Dimethicone/Pramoxine (Topical)', 916662, N'dimethicone', N'd5a58662-a628-4e3d-b2f9-b9c7ac12f772', CAST(N'2011-12-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1472, N'Dimethicone/Zinc Oxide (Topical)', 916662, N'dimethicone', N'54d7250e-6aaa-4fc8-88b3-2fee58ebaf73', CAST(N'2014-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1473, N'Dimethyl Sulfoxide (Irrigation)', 928980, N'Dimethyl Sulfoxide', N'58b25d79-78f2-4953-b0c6-61658dc4ef0d', CAST(N'2013-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1474, N'Dinoprost (Injectable)', 19029421, N'Dinoprost', N'069a7c28-5442-4fb7-83a1-bcf6ce147a21', CAST(N'2014-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1475, N'Dinoprostone (Implant)', 1329415, N'Dinoprostone', N'f1391c7c-233e-44d8-8838-36cc12f01044', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1476, N'Dinoprostone (Vaginal)', 1329415, N'Dinoprostone', N'fae013fc-e199-43f3-86ef-66d34017c534', CAST(N'2014-10-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1477, N'DIOVAN (Oral Pill)', 1308842, N'valsartan', N'9e70df98-38fe-4634-a49c-c5f0b562e0b7', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1478, N'DIOVAN HCT (Oral Pill)', 974166, N'Hydrochlorothiazide', N'1bbdcc66-c8c0-4710-a447-d12cc78b5aa8', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1479, N'DIPENTUM (Oral Pill)', 916282, N'olsalazine', N'75a96561-6f52-4c11-a105-391fbbfe4827', CAST(N'2007-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1480, N'DIPHENHIST (Oral Pill)', 1129625, N'Diphenhydramine', N'ae7957ee-72b3-46f8-966c-526ac894af92', CAST(N'2015-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1481, N'diphenhydrAMINE (Chewable)', 1129625, N'Diphenhydramine', N'b06d03d1-3d61-4a46-91f4-5e3ad2e8b2b1', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1482, N'diphenhydrAMINE (Injectable)', 1129625, N'Diphenhydramine', N'4c40fb96-819a-4e11-9500-f11cbd51fd6c', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1483, N'diphenhydrAMINE (Oral Disintegrating)', 1129625, N'Diphenhydramine', N'826c5868-c9bf-42b2-a97e-2e7ae6fae057', CAST(N'2015-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1484, N'diphenhydrAMINE (Oral Liquid)', 1129625, N'Diphenhydramine', N'bea08963-16c9-4c27-b0d6-5734b91a3900', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1485, N'diphenhydrAMINE (Oral Pill)', 1129625, N'Diphenhydramine', N'a19f1edc-d2cf-45fc-8233-d882441b0247', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1486, N'diphenhydrAMINE (Topical)', 1129625, N'Diphenhydramine', N'baa7ae0b-dfce-4f56-a26b-5bfe31099b66', CAST(N'2014-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1487, N'DiphenhydrAMINE/Ibuprofen (Oral Pill)', 1129625, N'Diphenhydramine', N'3cc319ee-4908-4739-887c-8c5131208368', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1488, N'DiphenhydrAMINE/Naproxen (Oral Pill)', 1129625, N'Diphenhydramine', N'82891458-ab0d-459a-8602-dcebd22c3010', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1489, N'DiphenhydrAMINE/Phenylephrine (Oral Liquid)', 1129625, N'Diphenhydramine', N'40ae8bfc-4007-4483-bb08-cf32f2e802c6', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1490, N'DiphenhydrAMINE/Phenylephrine (Oral Pill)', 1129625, N'Diphenhydramine', N'd5cbf5f5-746a-443c-9fa4-b3a7745d0dab', CAST(N'2015-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1491, N'DiphenhydrAMINE/Pramoxine (Topical)', 1129625, N'Diphenhydramine', N'70c5bb8c-24d2-448b-a3b1-92c7f4754614', CAST(N'2011-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1492, N'DiphenhydrAMINE/Zinc Acetate (Topical)', 1129625, N'Diphenhydramine', N'020e139a-6f0a-4c18-8169-d95e9b5dc7f4', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1493, N'Diphtheria toxoid vaccine, inactivated/Tetanus toxoid vaccine, inactivated (Injectable)', 529303, N'diphtheria toxoid vaccine, inactivated', N'ce88effe-7ff2-418f-acb3-3cb5d5d2bf95', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1494, N'DIPRIVAN (Injectable)', 753626, N'Propofol', N'e3105799-a4b6-f3f4-e6e2-b2b29bbdb538', CAST(N'2014-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1495, N'DIPROLENE (Topical)', 920458, N'Betamethasone', N'dbe069ce-f93e-4f67-bcb2-dfbb932a1f15', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1496, N'Dipyridamole (Injectable)', 1331270, N'Dipyridamole', N'c76c3c6f-c3e0-4e35-ab01-5468585e0d9d', CAST(N'2012-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1497, N'Dipyridamole (Oral Pill)', 1331270, N'Dipyridamole', N'dcf785b2-e923-43bf-93bb-00a9501479f4', CAST(N'2015-02-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1498, N'DISALCID (Oral Pill)', 1137460, N'Salsalate', N'30371119-beaf-4ade-a9d5-12adc09f7827', CAST(N'2014-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1499, N'Disopyramide (Oral Pill)', 1335606, N'Disopyramide', N'f5e0c230-db38-4476-8357-9a227ccff1bc', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1500, N'Disulfiram (Oral Pill)', 735850, N'Disulfiram', N'f0ca0e1f-9641-48d5-9367-e5d1069e8680', CAST(N'2015-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1501, N'DIUREX (Oral Pill)', 1134439, N'Caffeine', N'e02a39f9-1c8c-4d38-b394-3f5b7062932c', CAST(N'2012-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1502, N'DIUREX AQUAGELS (Oral Pill)', 1172206, N'pamabrom', N'22122002-c367-480b-b9f5-0504f918cc98', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1503, N'DIUREX MAX (Oral Pill)', 1172206, N'pamabrom', N'37dfece3-d570-4ab2-ba95-af6eb1f3acd4', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1504, N'DIURIL (Injectable)', 992590, N'Chlorothiazide', N'1d9fa4e6-6516-45cd-a316-292c6a529ecc', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1505, N'DIVIGEL (Topical)', 1548195, N'Estradiol', N'22191eca-c98d-4a07-844e-11edb0f04b8d', CAST(N'2014-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1506, N'DOAN''S (Oral Pill)', 1168079, N'Magnesium Salicylate', N'd98ee9c8-40e2-4abb-b5c1-45e73e7dd23b', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1507, N'DOBUTamine (Injectable)', 1337720, N'Dobutamine', N'a0882db1-2532-4b80-b753-68f013fe79e7', CAST(N'2014-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1508, N'DOCEtaxel (Injectable)', 1315942, N'docetaxel', N'70aeb960-426c-4805-b956-476bebccd926', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1509, N'Docosanol (Topical)', 980955, N'docosanol', N'c39b38a7-dcdd-4c32-8f35-b565c4d3cec6', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1510, N'Docusate (Oral Liquid)', 941258, N'Docusate', N'1fcb6361-7598-4ac9-b04d-faf4397197eb', CAST(N'2015-02-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1511, N'Docusate (Oral Pill)', 941258, N'Docusate', N'c49fb9f2-489e-48d1-b377-5cd3e2fabeba', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1512, N'Docusate (Rectal)', 941258, N'Docusate', N'1235366d-b572-3a41-e054-00144ff8d46c', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1513, N'Docusate/Sennosides, USP (Oral Pill)', 941258, N'Docusate', N'16b2ff3b-0a96-4521-9b41-c7adcee27f8b', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1514, N'DOCUSOL (Rectal)', 941258, N'Docusate', N'0d9355f0-d19f-4404-9b9e-bb2c874e39d6', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1515, N'DOCUSOL PLUS (Rectal)', 917006, N'Benzocaine', N'08d1d3ed-1427-4a14-a2c0-91d46e258e07', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1516, N'Dodecyl sulfate/Oxyquinoline (Vaginal)', 43012263, N'dodecyl sulfate', N'1e4a1caa-e6ba-44ef-8347-07e6385a7c9e', CAST(N'2014-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1517, N'Dog hair extract (Injectable)', 40170475, N'dog hair extract', N'ea1e43ad-632d-4e07-887f-c80f4e9798af', CAST(N'2011-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1518, N'DOK (Oral Pill)', 941258, N'Docusate', N'7f48d80a-df42-4776-ad22-2d7a47bd03e1', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1519, N'DOLOGEN (Oral Pill)', 1125315, N'Acetaminophen', N'dad63da3-cd1f-42a8-93d5-44b39aae1268', CAST(N'2014-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1520, N'DOLOGESIC (Oral Liquid)', 1125315, N'Acetaminophen', N'738e7767-42de-4076-acf2-9152484c2007', CAST(N'2012-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1521, N'DOLORACIN (Topical)', 939881, N'Capsaicin', N'ce4747e3-d8a4-48e6-910f-0f287c0c38fd', CAST(N'2013-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1522, N'Dolutegravir (Oral Pill)', 43560385, N'dolutegravir', N'63df5af3-b8ac-4e76-9830-2dbb340af922', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1523, N'DOMEBORO (Topical)', 19030692, N'aluminum sulfate', N'28c39200-2f7c-954b-3ce7-7349b2738812', CAST(N'2015-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1524, N'DONATUSSIN DROPS (Oral Liquid)', 1163944, N'Guaifenesin', N'9ebee4c3-c0fb-417e-901f-eaaf678654f9', CAST(N'2011-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1525, N'Donepezil (Oral Disintegrating)', 715997, N'donepezil', N'6bbb7b73-910b-4664-8856-4c6adbbb48cb', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1526, N'Donepezil (Oral Pill)', 715997, N'donepezil', N'11ac01f4-d26e-47b2-9660-d514ab097fdb', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1527, N'DONNATAL (Oral Liquid)', 914335, N'Atropine', N'85c207ad-83bb-20e8-ef73-9a374eb8ccb6', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1528, N'DONNATAL (Oral Pill)', 914335, N'Atropine', N'c93cccdc-2f92-4cb3-9d14-06acdd51d94c', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1529, N'DONNATAL XR (Oral Pill)', 914335, N'Atropine', N'2064014b-6f8e-4232-88c2-d1870042abc7', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1530, N'DOPamine (Injectable)', 1337860, N'Dopamine', N'e061fb3e-afd7-4188-b5fb-617ac1d3e38d', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1531, N'DOPRAM (Injectable)', 738152, N'Doxapram', N'b8eb330a-a75b-46cb-b694-5be9327ed2eb', CAST(N'2012-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1532, N'Dornase Alfa (Inhalant)', 1125443, N'Dornase Alfa', N'd8c78a7e-ff99-48f3-8952-643ec2ea0f86', CAST(N'2015-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1533, N'DORYX (Oral Pill)', 1738521, N'Doxycycline', N'1292fa83-e2a1-4fda-b0dd-ccf763265fe1', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1534, N'Dorzolamide (Ophthalmic)', 981709, N'dorzolamide', N'f16732ba-2cd8-473d-b79f-f48f29869c8d', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1535, N'Dorzolamide/Timolol (Ophthalmic)', 981709, N'dorzolamide', N'06c062ca-add7-4ddf-ba7c-7b5dd531e9ec', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1536, N'DOVONEX (Topical)', 908921, N'calcipotriene', N'92d53473-e33d-4490-9390-ec333dbf7676', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1537, N'Doxapram (Injectable)', 738152, N'Doxapram', N'b8eb330a-a75b-46cb-b694-5be9327ed2eb', CAST(N'2012-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1538, N'Doxazosin (Oral Pill)', 1363053, N'Doxazosin', N'7d5b94bd-bd39-414d-855e-b8e6f22e593e', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1539, N'Doxepin (Oral Liquid)', 738156, N'Doxepin', N'fa31c1a5-91ed-4726-ab58-fbe98056fe5e', CAST(N'2014-12-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1540, N'Doxepin (Oral Pill)', 738156, N'Doxepin', N'c97a2f91-fe58-4d78-afc2-1a4ceb1f9344', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1541, N'Doxepin (Topical)', 738156, N'Doxepin', N'64311378-2da2-4835-a222-5df5204c59c2', CAST(N'2015-02-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1542, N'Doxercalciferol (Oral Pill)', 1512446, N'Doxercalciferol', N'1bb3ce2f-c77a-436f-980f-a02668f99fed', CAST(N'2014-02-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1543, N'Doxorubicin liposome (Injectable)', 19051649, N'doxorubicin liposome', N'1d5beebf-77f3-47ca-a9a1-5f64f42fed07', CAST(N'2012-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1544, N'DOXY (Injectable)', 1738521, N'Doxycycline', N'b0894010-39bd-459f-8563-cf83343105ee', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1545, N'Doxycycline (Injectable)', 1738521, N'Doxycycline', N'f9b9ca8a-5cfc-446a-8330-36cf96625a57', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1546, N'Doxycycline (Oral Pill)', 1738521, N'Doxycycline', N'1292fa83-e2a1-4fda-b0dd-ccf763265fe1', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1547, N'Doxylamine (Oral Pill)', 738818, N'Doxylamine', N'8051a431-94ab-4593-bfca-f28ea988b474', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1548, N'Doxylamine/Phenylephrine (Oral Pill)', 738818, N'Doxylamine', N'8f6622e1-b40d-4d1c-9322-463775728a25', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1549, N'Doxylamine/Pseudoephedrine (Oral Liquid)', 738818, N'Doxylamine', N'fe74017b-3387-4e72-9e2d-9eb46465c3df', CAST(N'2011-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1550, N'DR. SCHOLL''S (Topical)', 964407, N'Salicylic Acid', N'fd446f5f-c086-4b58-b350-a8ff3c92259f', CAST(N'2014-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1551, N'DR. SCHOLL''S DISCS (Topical)', 964407, N'Salicylic Acid', N'f5d4c321-dec2-49f1-bfe2-30a053166880', CAST(N'2014-06-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1552, N'DR. SMITH''S DIAPER RASH (Topical)', 911064, N'Zinc Oxide', N'7705b182-acf7-4195-9996-7d9fcdfbf055', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1553, N'DRAMAMINE (Chewable)', 928744, N'Dimenhydrinate', N'09936316-8667-4950-b017-19e3a05385a4', CAST(N'2013-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1554, N'DRAMAMINE (Oral Pill)', 928744, N'Dimenhydrinate', N'f9302a5a-295a-4501-9332-e3f5eb387362', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1555, N'DRAMAMINE LESS DROWSY (Oral Pill)', 994341, N'Meclizine', N'fa6a0969-7427-4b87-bc04-a2792665c218', CAST(N'2011-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1556, N'DRISDOL (Oral Pill)', 19045045, N'Ergocalciferol', N'0d501431-82d3-4f8e-94c4-5eabcefc00ad', CAST(N'2012-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1557, N'DRISTAN 12-HOUR NASAL SPRAY (Nasal)', 925636, N'Oxymetazoline', N'9ddfb021-fa96-94a6-a413-839ce5a7e744', CAST(N'2013-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1558, N'DRITHOCREME (Topical)', 952538, N'Anthralin', N'4d624774-3618-423c-89bd-492f4795ad19', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1559, N'Dronedarone (Oral Pill)', 40163615, N'dronedarone', N'236d4549-f44b-4677-b857-acedd10b9920', CAST(N'2011-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1560, N'Droperidol (Injectable)', 739323, N'Droperidol', N'7bd2c1cf-31c0-49c7-a856-f238a46f6f1f', CAST(N'2013-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1561, N'Drospirenone/Estradiol (Oral Pill)', 1512674, N'drospirenone', N'761834c2-6b61-4583-84c2-f1ca4a97c4f2', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1562, N'Drospirenone/Ethinyl Estradiol (Oral Pill)', 1512674, N'drospirenone', N'8edef6f6-c278-4595-a00e-55a773b15733', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1563, N'Drospirenone/Ethinyl Estradiol/Levomefolic Acid (Oral Pill)', 1512674, N'drospirenone', N'8132454a-6135-4bac-b206-83a55eb8dbc6', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1564, N'DROXIA (Oral Pill)', 1377141, N'hydroxyurea', N'740e054b-faac-7c27-f06d-a56efb699355', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1565, N'Droxidopa (Oral Pill)', 44814542, N'Droxidopa', N'2179f02c-48d7-48eb-8007-5ae43d8d16bc', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1566, N'DUAVEE (Oral Pill)', 44506794, N'bazedoxifene', N'e1b75458-2e5b-46b9-92c6-fa6daba3770f', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1567, N'DUEXIS (Oral Pill)', 953076, N'Famotidine', N'558b9f26-37b2-423b-932d-25a37afe57ec', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1568, N'DULCOLAX (Oral Pill)', 924939, N'Bisacodyl', N'8527ae95-fdfd-4b62-9f56-598c2656aeb6', CAST(N'2010-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1569, N'DULCOLAX (Rectal)', 924939, N'Bisacodyl', N'1bf775a9-bd9e-41a6-acef-9a3795fbf25c', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1570, N'DULoxetine (Oral Pill)', 715259, N'duloxetine', N'752d7078-6cc5-4cb8-b5d2-5fc0851320a4', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1571, N'DUONEB (Inhalant)', 1154343, N'Albuterol', N'926d8687-5a1f-4550-b33a-b56f9d015994', CAST(N'2012-06-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1572, N'DURACLON (Injectable)', 1398937, N'Clonidine', N'8c126bb8-732a-4949-8754-2f50b5543638', CAST(N'2013-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1573, N'DURAMORPH (Injectable)', 1110410, N'Morphine', N'ebb18761-e5c4-4238-bb84-f9549f500210', CAST(N'2013-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1574, N'DURAPREP (Topical)', 19125582, N'iodine povacrylex', N'3a73b934-ea39-43c2-86bf-dfb88353b8bd', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1575, N'DURICEF (Oral Liquid)', 1769535, N'Cefadroxil', N'4ad759f3-72dd-412e-9500-055335cda6cf', CAST(N'2007-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1576, N'DURICEF (Oral Pill)', 1769535, N'Cefadroxil', N'4ad759f3-72dd-412e-9500-055335cda6cf', CAST(N'2007-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1577, N'Dutasteride (Oral Pill)', 989482, N'Dutasteride', N'813507ec-1fc1-420f-ac5c-5c794b1059cd', CAST(N'2011-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1578, N'Dutasteride/Tamsulosin (Oral Pill)', 989482, N'Dutasteride', N'f96c6acd-4d02-4ece-bd54-2d5a35aab7f5', CAST(N'2012-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1579, N'DYAZIDE (Oral Pill)', 974166, N'Hydrochlorothiazide', N'7330f40d-b269-425b-a4e3-e7263a088fb7', CAST(N'2011-02-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1580, N'Dyclonine (Oral Lozenge)', 992308, N'dyclonine', N'6fde9446-0f8d-4bba-98dc-3e3a1f170488', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1581, N'DYNACIN (Oral Pill)', 1708880, N'Minocycline', N'f174edbd-3ac0-4e27-a116-3b74804721bb', CAST(N'2014-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1582, N'DYNA-HEX (Topical)', 1790812, N'Chlorhexidine', N'6cc89ac1-baef-40bb-85a3-d9ae9e3e7a63', CAST(N'2014-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1583, N'Dyphylline (Oral Pill)', 1140088, N'Dyphylline', N'6d7ed7c0-9646-11de-a404-0002a5d5c51b', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1584, N'Dyphylline/guaiFENesin (Oral Liquid)', 1140088, N'Dyphylline', N'd35db38b-8b0e-4872-ab18-09795c5e07e9', CAST(N'2011-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1585, N'DYRENIUM (Oral Pill)', 904542, N'Triamterene', N'5012f997-9fb2-4c3d-99fd-4f7efd7c39af', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1586, N'DYSPORT (Injectable)', 40165377, N'abobotulinumtoxinA', N'71313a04-1349-4c26-b840-a39e4a3ddaed', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1587, N'Eastern cottonwood pollen extract (Injectable)', 40161793, N'eastern cottonwood pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1588, N'Echothiophate (Ophthalmic)', 958368, N'Echothiophate', N'e4bb53c7-9061-43fc-878f-dc1b19801bfc', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1589, N'Econazole (Topical)', 940864, N'Econazole', N'050155b7-e8fe-4eee-9516-716399f559f6', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1590, N'ECONOCHLOR (Ophthalmic)', 990069, N'Chloramphenicol', N'29bd93cf-6524-45b9-b4b3-c9665da89e34', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1591, N'ECONOPRED (Ophthalmic)', 1550557, N'prednisolone', N'2d6c3ea4-5189-4f6e-bb6a-c9379f441d7a', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1592, N'ECOTRIN (Oral Pill)', 1112807, N'Aspirin', N'f950d4eb-39b9-4ef7-b5f3-0cf45d4d6bc0', CAST(N'2012-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1593, N'ECPIRIN (Oral Pill)', 1112807, N'Aspirin', N'0ad0996b-31fb-305a-e054-00144ff88e88', CAST(N'2014-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1594, N'ECZEMIN (Topical)', 927478, N'pramoxine', N'b108cbf1-55f4-49c8-93d1-13c0326cc487', CAST(N'2011-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1595, N'ED SPAZ (Oral Disintegrating)', 923672, N'Hyoscyamine', N'f33a4774-9fbb-4782-a7e1-068e83b7504d', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1596, N'EDARBI (Oral Pill)', 40235485, N'azilsartan', N'75b16bfc-38c1-4133-bd7d-13258d54edec', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1597, N'EDARBYCLOR (Oral Pill)', 40235485, N'azilsartan', N'e60f795b-fce3-4361-aa03-f143451689d1', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1598, N'EDECRIN (Oral Pill)', 987406, N'Ethacrynate', N'd65ed93d-77c8-45d1-af3d-06e9e5d65930', CAST(N'2013-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1599, N'EDECRIN SODIUM (Injectable)', 987406, N'Ethacrynate', N'9e6e2048-0d65-4c23-8324-95767cbf86f1', CAST(N'2012-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1600, N'Edetate Calcium (Injectable)', 43013616, N'Edetate Calcium', N'f960dbfa-b00c-4f3e-ad32-ed6a5deea831', CAST(N'2015-04-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1601, N'Edetic Acid (Injectable)', 1741008, N'Edetic Acid', N'290c3e9c-c0c6-440a-1a9c-46e3e2b07a77', CAST(N'2007-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1602, N'EDLUAR (Sublingual)', 744740, N'zolpidem', N'a32884d0-85b5-11de-8a39-0800200c9a66', CAST(N'2014-11-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1603, N'Edrophonium (Injectable)', 740924, N'Edrophonium', N'98a5a2f6-3194-4202-963f-0fcd28ecadbc', CAST(N'2013-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1604, N'EESCULA (Ophthalmic)', 915829, N'isopropyl unoprostone', N'53d05ced-51dd-11de-8a39-0800200c9a66', CAST(N'2013-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1605, N'Efavirenz (Oral Pill)', 1738135, N'efavirenz', N'04b5c345-c446-43a4-83f0-509bc287e10b', CAST(N'2013-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1606, N'Efavirenz/Emtricitabine/Tenofovir disoproxil (Oral Pill)', 1738135, N'efavirenz', N'5c6c7ba4-6d42-4e07-a127-b3cf72c866ad', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1607, N'EFFACLAR DUO (Topical)', 918172, N'Benzoyl Peroxide', N'6cdd0ab1-d30f-40d3-bf3a-5d7d178b1d31', CAST(N'2013-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1608, N'EFFIENT (Oral Pill)', 40163718, N'prasugrel', N'cb684ad9-0b72-406f-8a07-a419254ccd36', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1609, N'Eflornithine (Topical)', 978236, N'Eflornithine', N'e872db73-7cd7-4886-9b0f-6710700e3765', CAST(N'2013-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1610, N'EFUDEX (Topical)', 955632, N'Fluorouracil', N'35de1c1c-bef5-46c5-b6f8-ea032147411c', CAST(N'2014-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1611, N'EGG YOLK PHOSPHOLIPIDS/Glycerin/Soybean Oil (Injectable)', 19013789, N'EGG YOLK PHOSPHOLIPIDS', N'dd269651-30e8-43f0-880f-484346eaafeb', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1612, N'EGRIFTA (Injectable)', 40231628, N'tesamorelin', N'3de31cec-31dc-4ac4-9717-367a687d22f2', CAST(N'2013-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1613, N'ELDEPRYL (Oral Pill)', 766209, N'Selegiline', N'106429ad-859a-4b29-babf-42cb85f7236e', CAST(N'2012-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1614, N'ELELYSO (Injectable)', 42800246, N'taliglucerase alfa', N'fa3cbd5d-677c-4b19-9032-d9182cb69a83', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1615, N'ELESTAT (Ophthalmic)', 943634, N'epinastine', N'a9628ec7-bbeb-4cfa-932f-645a8aca8987', CAST(N'2012-01-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1616, N'ELESTRIN (Topical)', 1548195, N'Estradiol', N'8e1a3641-25ca-41bd-a940-51ae0ec64ed9', CAST(N'2012-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1617, N'Eletriptan (Oral Pill)', 1189697, N'eletriptan', N'523b947a-4e92-42ff-886c-4317af8d7b56', CAST(N'2014-03-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1618, N'ELIDEL (Topical)', 915935, N'Pimecrolimus', N'e4027e5a-0f9b-4070-b196-f60172f45c4c', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1619, N'Eliglustat (Oral Pill)', 45775782, N'eliglustat', N'819f828a-b888-4e46-83fc-94d774a28a83', CAST(N'2014-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1620, N'ELIMITE (Topical)', 922868, N'Permethrin', N'4de55a80-67d6-42c0-a6fc-57b89400c5b3', CAST(N'2012-11-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1621, N'ELIPHOS (Oral Pill)', 951469, N'calcium acetate', N'9fc1ada4-9ef4-48e9-8203-32aa857d0429', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1622, N'ELIQUIS (Oral Pill)', 43013024, N'apixaban', N'a454cd24-0c6d-46e8-b1e4-197388606175', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1623, N'ELIXOPHYLLIN (Oral Liquid)', 1237049, N'Theophylline', N'2676f761-4fe5-40a9-a07d-ed2542847883', CAST(N'2014-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1624, N'ELLA (Oral Pill)', 40225722, N'ulipristal', N'052bfe45-c485-49e5-8fc4-51990b2efba4', CAST(N'2014-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1625, N'ELMIRON (Oral Pill)', 924151, N'Pentosan Polysulfate', N'3b172ad2-074f-4534-af1f-89d951647ee9', CAST(N'2014-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1626, N'ELOCON (Topical)', 905233, N'Mometasone', N'aa905762-80be-45be-89d5-b32564e82f92', CAST(N'2015-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1627, N'ELOCTATE (Injectable)', 45776421, N'factor VIII (b-domain deleted recombinant) FC fusion protein', N'bec39fa0-1524-4e6b-897f-db0ef093085e', CAST(N'2014-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1628, N'ELOXATIN (Injectable)', 1318011, N'oxaliplatin', N'3c740b43-f396-4998-bc66-6964a21f7161', CAST(N'2014-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1629, N'ELTA SEAL MOISTURE BARRIER (Topical)', 911064, N'Zinc Oxide', N'9ebe3684-d591-464f-9828-379a8b627728', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1630, N'Elvitegravir (Oral Pill)', 42874212, N'elvitegravir', N'be87c3bc-97bb-49cb-8053-9b0c756a1965', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1631, N'EMADINE (Ophthalmic)', 903893, N'emedastine', N'98a010d5-4905-4abf-a9d2-c85a07daa23b', CAST(N'2011-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1632, N'EMBEDA XR (Oral Pill)', 1110410, N'Morphine', N'dfe97a3d-247d-4dda-a641-1a95196cd8d8', CAST(N'2010-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1633, N'EMCYT (Oral Pill)', 1349025, N'Estramustine', N'a9b01bc6-95ac-46f9-befa-d845a74d53c1', CAST(N'2014-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1634, N'Emedastine (Ophthalmic)', 903893, N'emedastine', N'98a010d5-4905-4abf-a9d2-c85a07daa23b', CAST(N'2011-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1635, N'EMEND (Oral Pill)', 936748, N'aprepitant', N'ec44482e-6194-4829-a3f7-ebe8d48a41a5', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1636, N'EMETROL (Oral Liquid)', 956691, N'Fructose', N'd0ce87b8-d484-4307-95a9-05705a6caf85', CAST(N'2012-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1637, N'EMLA (Topical)', 989878, N'Lidocaine', N'b466c7eb-bca3-4686-ada6-325103ab06f3', CAST(N'2015-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1638, N'Empagliflozin (Oral Pill)', 45774751, N'empagliflozin', N'faf3dd6a-9cd0-39c2-0d2e-232cb3f67565', CAST(N'2015-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1639, N'Emtricitabine (Oral Liquid)', 1703069, N'emtricitabine', N'd6599395-3944-44f9-97f2-e0424c6b6a1f', CAST(N'2012-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1640, N'Emtricitabine (Oral Pill)', 1703069, N'emtricitabine', N'd6599395-3944-44f9-97f2-e0424c6b6a1f', CAST(N'2012-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1641, N'Emtricitabine/Rilpivirine/Tenofovir disoproxil (Oral Pill)', 1703069, N'emtricitabine', N'54c8bec2-d565-489c-8d7c-afd3cdf78df5', CAST(N'2013-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1642, N'Emtricitabine/Tenofovir disoproxil (Oral Pill)', 1703069, N'emtricitabine', N'8bd3debe-d414-450f-b8d9-a70fb1dd5341', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1643, N'EMTRIVA (Oral Liquid)', 1703069, N'emtricitabine', N'd6599395-3944-44f9-97f2-e0424c6b6a1f', CAST(N'2012-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1644, N'EMTRIVA (Oral Pill)', 1703069, N'emtricitabine', N'd6599395-3944-44f9-97f2-e0424c6b6a1f', CAST(N'2012-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1645, N'Enalapril (Oral Liquid)', 1341927, N'Enalapril', N'94c9a9d6-957f-4667-8f09-509e99bac777', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1646, N'Enalapril (Oral Pill)', 1341927, N'Enalapril', N'5cc4f6f0-8925-81e1-b210-b5a4509a25a9', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1647, N'Enalapril/Hydrochlorothiazide (Oral Pill)', 1341927, N'Enalapril', N'7cb92cf2-46f2-4379-937c-168d230e43a4', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1648, N'Enalaprilat (Injectable)', 1342001, N'Enalaprilat', N'd3d573a7-50d5-46a8-9f92-baad3ae0831e', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1649, N'ENDODAN REFORMULATED MAY 2009 (Oral Pill)', 1112807, N'Aspirin', N'23a60947-6058-4bf7-a3ee-ae396e55d939', CAST(N'2011-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1650, N'ENDRATE (Injectable)', 1741008, N'Edetic Acid', N'290c3e9c-c0c6-440a-1a9c-46e3e2b07a77', CAST(N'2007-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1651, N'ENEMEEZ (Rectal)', 941258, N'Docusate', N'0b06445d-0839-497e-bdff-e0fe224a7738', CAST(N'2012-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1652, N'ENEMEEZ PLUS (Rectal)', 917006, N'Benzocaine', N'1670ca59-7275-4ac6-bef4-674a7b24c7b3', CAST(N'2012-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1653, N'English plantain pollen extract (Injectable)', 40160939, N'English plantain pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1654, N'ENJUVIA (Oral Pill)', 1586808, N'synthetic conjugated estrogens, B', N'b7aba0b2-72d1-4429-bb64-98b92e9d9433', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1655, N'ENLON (Injectable)', 740924, N'Edrophonium', N'98a5a2f6-3194-4202-963f-0fcd28ecadbc', CAST(N'2013-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1656, N'ENLON-PLUS (Injectable)', 914335, N'Atropine', N'bdeb47eb-e538-498d-ae98-14d5db29eab0', CAST(N'2013-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1657, N'Enoxaparin (Injectable)', 1301025, N'Enoxaparin', N'2cc08d08-555a-4135-b6da-9f8cf7b11ad7', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1658, N'Entacapone (Oral Pill)', 782211, N'entacapone', N'01ea62f4-bfac-485a-bb4b-a9abb345749f', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1659, N'Entecavir (Oral Pill)', 1711246, N'entecavir', N'e527b81a-5e15-4b58-91ed-3df45f3ac589', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1660, N'ENTEREG (Oral Pill)', 19059654, N'alvimopan', N'77a67dc6-35d3-48ff-9d18-292d4d442f70', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1661, N'ENTEX LQ (Oral Liquid)', 1163944, N'Guaifenesin', N'0accdd47-9712-4faa-aae4-ad1e641b26a1', CAST(N'2011-04-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1662, N'ENTOCORT (Oral Pill)', 939259, N'Budesonide', N'98a4eca1-904c-4355-957a-b5a141573cc2', CAST(N'2012-11-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1663, N'ENTYVIO (Injectable)', 45774639, N'vedolizumab', N'6e94621c-1a95-4af9-98d1-52b9e6f1949c', CAST(N'2014-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1664, N'ENULOSE (Oral Liquid)', 987245, N'Lactulose', N'a9b8bc93-af0f-44e6-a5f2-ff001542a81f', CAST(N'2014-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1665, N'Enzalutamide (Oral Pill)', 42900250, N'enzalutamide', N'b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1666, N'EPANED (Oral Liquid)', 1341927, N'Enalapril', N'94c9a9d6-957f-4667-8f09-509e99bac777', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1667, N'ePHEDrine (Injectable)', 1143374, N'Ephedrine', N'16f212c3-d504-4d3c-813e-cc23a04aaa88', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1668, N'ePHEDrine (Oral Pill)', 1143374, N'Ephedrine', N'b63d6ef1-ccce-4cd7-80f7-6d674dbf432f', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1669, N'ePHEDrine/guaiFENesin (Oral Pill)', 1143374, N'Ephedrine', N'699e7629-5e8a-4dac-b494-fe42698ee460', CAST(N'2015-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1670, N'Epicoccum nigrum extract (Injectable)', 40162020, N'Epicoccum nigrum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1671, N'EPIDUO (Topical)', 981774, N'adapalene', N'67002593-3bd3-4e91-a48f-9f7483e579a0', CAST(N'2012-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1672, N'EPIFOAM (Topical)', 975125, N'Hydrocortisone', N'b22b8b41-2f1e-11e4-8c21-0800200c9a66', CAST(N'2014-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1673, N'Epinastine (Ophthalmic)', 943634, N'epinastine', N'df001833-f478-ee51-325a-9e1b56199567', CAST(N'2015-05-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1674, N'EPINEPHrine (Injectable)', 1343916, N'Epinephrine', N'3ed35d7d-616c-43cd-9776-705821afc1f0', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1675, N'EPINEPHrine/Lidocaine (Injectable)', 1343916, N'Epinephrine', N'169e2102-199a-46b6-80ae-8bb5ff2a5c69', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1676, N'EPINEPHrine/Lidocaine (Transdermal)', 1343916, N'Epinephrine', N'82b5bf2c-7dc9-40bd-9fb4-b5b1b5be0470', CAST(N'2007-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1677, N'Epirubicin (Injectable)', 1344354, N'Epirubicin', N'bc0a3a39-4ac3-47de-a388-9c3672e3e130', CAST(N'2015-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1678, N'EPIVIR (Oral Pill)', 1704183, N'Lamivudine', N'3b1f8ee3-d582-4faa-a7f2-0fbc45721298', CAST(N'2011-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1679, N'EPIVIR HBV (Oral Pill)', 1704183, N'Lamivudine', N'83009c27-f54b-47df-b8b2-e2e4e0b8f4e8', CAST(N'2014-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1680, N'Eplerenone (Oral Pill)', 1309799, N'eplerenone', N'c7bc9486-8e61-4ba1-827f-2cd8c304b454', CAST(N'2013-08-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1681, N'Epoetin Alfa (Injectable)', 1301125, N'Epoetin Alfa', N'9bbe9a5b-ad1d-41a4-9699-ff6dc776bce1', CAST(N'2013-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1682, N'Epoprostenol (Injectable)', 1354118, N'Epoprostenol', N'd669ff68-ddcf-42f6-913c-d8f1aedbd9c4', CAST(N'2012-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1683, N'Eprosartan/Hydrochlorothiazide (Oral Pill)', 1346686, N'eprosartan', N'b1dfcac3-ef66-4d3e-9d58-37d3f516eb31', CAST(N'2012-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1684, N'EPZICOM (Oral Pill)', 1736971, N'abacavir', N'080e3423-5962-4465-8e78-cd8793699336', CAST(N'2010-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1685, N'EQUAGESIC (Oral Pill)', 1112807, N'Aspirin', N'941e1ec2-1f14-4153-a5ea-cf7669d5efd1', CAST(N'2008-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1686, N'Ergocalciferol (Oral Liquid)', 19045045, N'Ergocalciferol', N'7dec2cd0-b4cf-45b7-924c-cbb003f5f8f8', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1687, N'Ergocalciferol (Oral Pill)', 19045045, N'Ergocalciferol', N'88218156-081a-4809-8143-f97bdab194ba', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1688, N'Ergoloid mesylates, USP (Oral Pill)', 745268, N'ergoloid mesylates, USP', N'1344cf98-7d79-4ab4-9a63-2e632d9afbd4', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1689, N'ERGOMAR (Sublingual)', 1145379, N'Ergotamine', N'1bfd4827-5123-4dbb-8f94-7b097f5bfd5c', CAST(N'2012-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1690, N'Ergotamine (Inhalant)', 1145379, N'Ergotamine', N'e713859d-f454-4f7e-a535-868b8d5f2c88', CAST(N'2006-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1691, N'Ergotamine (Sublingual)', 1145379, N'Ergotamine', N'1bfd4827-5123-4dbb-8f94-7b097f5bfd5c', CAST(N'2012-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1692, N'ERIVEDGE (Oral Pill)', 42709321, N'vismodegib', N'eb368bb6-80e3-4df9-8a85-91df0a2ada6a', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1693, N'Erlotinib (Oral Pill)', 1325363, N'erlotinib', N'5783976b-0862-44e5-9b19-0f41d236d5c3', CAST(N'2012-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1694, N'ERTACZO (Topical)', 939134, N'sertaconazole', N'821073f7-33f6-464d-baed-f66d97987d6d', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1695, N'ERY (Topical)', 1746940, N'Erythromycin', N'9a63da11-01be-4c63-a260-e6bdbb4a7a69', CAST(N'2011-11-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1696, N'ERYC (Oral Pill)', 1746940, N'Erythromycin', N'c3f7cd94-d842-4f6b-a582-a38c751a790a', CAST(N'2008-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1697, N'ERYGEL (Topical)', 1746940, N'Erythromycin', N'26eb3e52-e857-4ab6-841e-fd47a838e4f4', CAST(N'2014-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1698, N'ERYPED (Oral Liquid)', 1746940, N'Erythromycin', N'04775721-ab87-4b66-808c-d67a21032385', CAST(N'2013-08-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1699, N'ERY-TAB (Oral Pill)', 1746940, N'Erythromycin', N'e7dd481b-5c2a-412e-86df-dfe1376ce38c', CAST(N'2015-04-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1700, N'ERYTHROCIN STEARATE (Oral Pill)', 1746940, N'Erythromycin', N'81698259-aab4-42ec-a549-b32e9c9565d0', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1701, N'Erythromycin (Ophthalmic)', 1746940, N'Erythromycin', N'dc3ee55d-114e-44f2-adb2-fb0c24eba732', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1702, N'Erythromycin (Oral Pill)', 1746940, N'Erythromycin', N'83b88647-1b7c-444f-ab20-cdb5afd265bf', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1703, N'Erythromycin (Topical)', 1746940, N'Erythromycin', N'aa993373-f75f-440f-bdae-59892557ba2c', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1704, N'Erythromycin Ethylsuccinate (Oral Liquid)', 1746940, N'Erythromycin', N'04775721-ab87-4b66-808c-d67a21032385', CAST(N'2013-08-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1705, N'Erythromycin Ethylsuccinate (Oral Pill)', 1746940, N'Erythromycin', N'6d8c343b-30d9-4cdb-8f55-2a20983a71c1', CAST(N'2014-05-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1706, N'Erythromycin Ethylsuccinate/SulfiSOXAZOLE (Oral Liquid)', 1746940, N'Erythromycin', N'eb6ea746-3228-4969-8a26-653288662fd7', CAST(N'2010-08-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1707, N'Erythromycin stearate (Oral Pill)', 1746940, N'Erythromycin', N'26f2704c-92ae-41c5-badc-dbebfb2eed35', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1708, N'Escitalopram (Oral Liquid)', 715939, N'Escitalopram', N'82d793ee-4039-45fc-ac83-4bd5235f00aa', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1709, N'Escitalopram (Oral Pill)', 715939, N'Escitalopram', N'83b762b9-bb12-43fe-bdc4-00d5c4fd98ce', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1710, N'ESGIC (Oral Pill)', 1125315, N'Acetaminophen', N'8aa576ac-c870-4ac0-a9a5-5539b38f653d', CAST(N'2013-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1711, N'Eslicarbazepine (Oral Pill)', 44507780, N'eslicarbazepine', N'3d0c9554-eaeb-4694-8089-00133fcadce3', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1712, N'Esmolol (Injectable)', 19063575, N'esmolol', N'94f069f9-dd52-4a69-a103-ebdb4294f088', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1713, N'Esomeprazole (Injectable)', 904453, N'Esomeprazole', N'dce12085-d6c4-48a5-959b-e771c413c9c5', CAST(N'2015-02-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1714, N'Esomeprazole (Oral Pill)', 904453, N'Esomeprazole', N'ea79f802-e9ac-480b-91e6-1e3900b11803', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1715, N'Esomeprazole/Naproxen (Oral Pill)', 904453, N'Esomeprazole', N'baa47781-7151-4c75-a9a2-d2eac0a7d55e', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1716, N'ESOTERICA (Topical)', 976778, N'hydroquinone', N'0de38654-f598-4cca-9e1e-47af1f21d21c', CAST(N'2011-10-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1717, N'Estazolam (Oral Pill)', 748010, N'Estazolam', N'50914a46-eab6-4c83-97cf-6ab0234c8126', CAST(N'2012-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1718, N'ESTRACE (Oral Pill)', 1548195, N'Estradiol', N'a3803ba3-4eee-4e2e-ac8c-821a4e6720cc', CAST(N'2013-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1719, N'ESTRACE (Vaginal)', 1548195, N'Estradiol', N'dfc41fcd-c5ba-4b25-b647-cf04d3988b3e', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1720, N'Estradiol (Injectable)', 1548195, N'Estradiol', N'c5f32941-3427-4a38-bc3d-38337b41d9d3', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1721, N'Estradiol (Oral Pill)', 1548195, N'Estradiol', N'a3803ba3-4eee-4e2e-ac8c-821a4e6720cc', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1722, N'Estradiol (Topical)', 1548195, N'Estradiol', N'9a0aa631-133d-406b-9d32-8a1a99af4e50', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1723, N'Estradiol (Vaginal)', 1548195, N'Estradiol', N'dfc41fcd-c5ba-4b25-b647-cf04d3988b3e', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1724, N'Estradiol/Norethindrone (Oral Pill)', 1548195, N'Estradiol', N'b85df980-7df1-4973-bee3-ae51274b588f', CAST(N'2014-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1725, N'Estramustine (Oral Pill)', 1349025, N'Estramustine', N'a9b01bc6-95ac-46f9-befa-d845a74d53c1', CAST(N'2014-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1726, N'Estrogens, Conjugated (USP) (Oral Pill)', 1549080, N'Estrogens, Conjugated (USP)', N'55495ca7-54a3-4f52-935d-63432d14db4d', CAST(N'2014-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1727, N'Estrogens, Conjugated (USP)/MedroxyPROGESTERone (Oral Pill)', 1549080, N'Estrogens, Conjugated (USP)', N'198d547d-c985-46bc-a66f-e3182a294cb5', CAST(N'2013-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1728, N'Estrogens, Esterified (USP) (Oral Pill)', 1551673, N'Estrogens, Esterified (USP)', N'efb195b9-b995-48f3-a4cb-b7e09d56350e', CAST(N'2011-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1729, N'Estrogens, Esterified (USP)/MethylTESTOSTERone (Oral Pill)', 1551673, N'Estrogens, Esterified (USP)', N'316650b7-5770-4f1a-867d-68a72c60c8f2', CAST(N'2013-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1730, N'Estropipate (Vaginal)', 1525278, N'estropipate', N'ea3d70e5-dccd-4302-964b-b5cb1394b514', CAST(N'2006-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1731, N'Eszopiclone (Oral Pill)', 757352, N'Eszopiclone', N'e711e994-a489-d14b-9a50-60557b9ed137', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1732, N'Ethacrynate (Injectable)', 987406, N'Ethacrynate', N'9e6e2048-0d65-4c23-8324-95767cbf86f1', CAST(N'2015-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1733, N'Ethacrynate (Oral Pill)', 987406, N'Ethacrynate', N'd65ed93d-77c8-45d1-af3d-06e9e5d65930', CAST(N'2013-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1734, N'Ethambutol (Oral Pill)', 1749301, N'Ethambutol', N'b2f95b0b-9de3-4c0b-a46e-a7eee6428b4b', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1735, N'ETHAMOLIN (Injectable)', 19095285, N'ethanolamine oleate', N'a9c1d8c5-443e-400e-a42c-16a25fb47231', CAST(N'2013-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1736, N'Ethanol (Injectable)', 955372, N'Ethanol', N'6361091f-c341-4bc7-a2a5-bd6ea73cc028', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1737, N'Ethanol (Soap)', 955372, N'Ethanol', N'44f4034a-0e13-49ae-98e6-1fb627a0e930', CAST(N'2014-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1738, N'Ethanol (Topical)', 955372, N'Ethanol', N'7aebcd0c-1b86-4c82-b7cb-e0e02648b9a0', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1739, N'Ethanol/Glucose (Injectable)', 955372, N'Ethanol', N'14a2b1ab-f94b-45f1-b5c3-dce751648e93', CAST(N'2006-11-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1740, N'Ethanolamine oleate (Injectable)', 19095285, N'ethanolamine oleate', N'a9c1d8c5-443e-400e-a42c-16a25fb47231', CAST(N'2013-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1741, N'Ethinyl Estradiol (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'2b8b5145-77ad-4817-8f9e-77fd7938242e', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1742, N'Ethinyl Estradiol/Ethynodiol (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'ae3c20e4-8850-4559-9ca3-06a98b3dabab', CAST(N'2013-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1743, N'Ethinyl Estradiol/Levonorgestrel (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'709031e4-4c20-4ea7-beff-6c459709a433', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1744, N'Ethinyl Estradiol/Norethindrone (Chewable)', 1549786, N'Ethinyl Estradiol', N'51267e7f-2ff6-482d-bb68-04f75a6999d9', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1745, N'Ethinyl Estradiol/Norethindrone (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'0beef9d3-8326-48cf-b89a-fa794902c6c1', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1746, N'Ethinyl Estradiol/Norgestimate (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'7841b848-ba6b-41b8-8c32-fde3eda6e8e6', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1747, N'Ethinyl Estradiol/Norgestrel (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'aa7f4a83-71cf-4306-b0a1-01784f67bae2', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1748, N'Ethosuximide (Oral Liquid)', 750119, N'Ethosuximide', N'8a5cc930-0b36-48a8-9ad0-de633b208742', CAST(N'2015-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1749, N'Ethosuximide (Oral Pill)', 750119, N'Ethosuximide', N'cb5577e2-e906-438f-b13d-e55709a0e7fd', CAST(N'2015-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1750, N'Etidronate (Oral Pill)', 1552929, N'Etidronate', N'fa07734d-b381-4f33-a555-53b6614f4b08', CAST(N'2015-04-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1751, N'Etodolac (Oral Pill)', 1195492, N'Etodolac', N'4d682f98-1e8a-4c2b-6df3-169d2ed10dc1', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1752, N'ETOPOFOS (Injectable)', 1350504, N'Etoposide', N'e28c05f0-081f-406d-8bfb-9160a6908307', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1753, N'Etoposide (Injectable)', 1350504, N'Etoposide', N'4f850eb2-3542-43a0-90e8-bb37fa05cf15', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1754, N'Etoposide (Oral Pill)', 1350504, N'Etoposide', N'508a418e-985f-4208-9324-2230655bb5c2', CAST(N'2013-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1755, N'Etravirine (Oral Pill)', 1758536, N'etravirine', N'73667241-b95a-49b0-9c51-a4289f20d5c2', CAST(N'2013-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1756, N'Eucalyptol/Menthol/Methyl salicylate/Thymol (Mouthwash)', 19050346, N'Eucalyptol', N'0c3ee0f2-6637-42fd-9f72-01ec4de3c7ba', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1757, N'EURAX (Topical)', 969276, N'crotamiton', N'56465446-7f78-4ad1-acb3-08a4d60e5715', CAST(N'2015-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1758, N'European house dust mite extract/White oak pollen extract (Injectable)', 40242103, N'European house dust mite extract', N'3bfb5be4-542a-4b86-beac-688a07fc830c', CAST(N'2010-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1759, N'European olive pollen extract (Injectable)', 40161710, N'european olive pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1760, N'EVAMIST (Topical)', 1548195, N'Estradiol', N'd8c4a929-c039-4c7d-a3bc-986ae31fc8a6', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1761, N'EVOCLIN (Topical)', 997881, N'Clindamycin', N'daa3d9d1-c906-41f3-83a2-c47f2283da48', CAST(N'2014-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1762, N'EVOXAC (Oral Pill)', 954819, N'cevimeline', N'bf6bebde-81ef-4a49-bd8b-2b7444f7adbf', CAST(N'2012-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1763, N'EXAPRIN (Oral Pill)', 1125315, N'Acetaminophen', N'9fe82229-cc3e-4d79-a448-014fe3d0055b', CAST(N'2012-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1764, N'EXCEDRIN (Oral Pill)', 1125315, N'Acetaminophen', N'58375804-3c14-4af9-805b-68458e2fed8c', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1765, N'EXCEDRIN BACK & BODY (Oral Pill)', 1125315, N'Acetaminophen', N'4b77be54-e962-4e6b-a244-e3d53a8fecd9', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1766, N'EXCEDRIN PM (Oral Pill)', 1125315, N'Acetaminophen', N'375ba5bf-16c1-4912-9aa1-a8e7196aed31', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1767, N'EXCEDRIN PM TRIPLE ACTION (Oral Pill)', 1125315, N'Acetaminophen', N'b3812d27-40af-40d7-864a-dfa4ae34cb9e', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1768, N'EXCEDRIN TENSION HEADACHE (Oral Pill)', 1125315, N'Acetaminophen', N'cc17ee50-1401-4b31-8c01-e153b4291c7a', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1769, N'EXELDERM (Topical)', 940535, N'sulconazole', N'9b963f0d-b041-43be-9434-7161eab49adb', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1770, N'Exemestane (Oral Pill)', 1398399, N'exemestane', N'61d86c55-9946-273f-4f22-42d3fc33d143', CAST(N'2014-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1771, N'EXFORGE (Oral Pill)', 1332418, N'Amlodipine', N'15ba7c1c-dd10-4d09-b6e2-284c1b67f4da', CAST(N'2012-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1772, N'EXFORGE HCT (Oral Pill)', 1332418, N'Amlodipine', N'782bcaf4-0aa4-4527-b36f-d350ceb95637', CAST(N'2014-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1773, N'EX-LAX MAXIMUM RELIEF FORMULA (Oral Pill)', 938268, N'sennosides, USP', N'800366b2-e974-4791-9a0d-c341c80ac859', CAST(N'2013-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1774, N'EXPAREL (Injectable)', 40244151, N'Bupivacaine liposome', N'bb5a9e59-0f51-11df-8a39-0800200c9a66', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1775, N'EXUBERA (Inhalant)', 1588986, N'insulin human, rDNA origin', N'4e25a881-dfc3-44a2-9ede-49f7443776d8', CAST(N'2008-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1776, N'EYE STREAM (Ophthalmic)', 19010309, N'Water', N'ff9560df-d834-57a8-37b0-3f10e82f5a5d', CAST(N'2014-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1777, N'Ezetimibe (Oral Pill)', 1526475, N'ezetimibe', N'cb18564f-663f-4da2-9dd9-700ea9bdd398', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1778, N'Ezetimibe/Simvastatin (Oral Pill)', 1526475, N'ezetimibe', N'65e1c3ae-a462-4345-8a28-c7d2c0388af8', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1779, N'EZ-OX (Inhalant)', 19025274, N'Oxygen', N'cc02c6b7-c397-4929-9322-bef702c9255c', CAST(N'2015-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1780, N'Factor VIII (b-domain deleted recombinant) FC fusion protein (Injectable)', 45776421, N'factor VIII (b-domain deleted recombinant) FC fusion protein', N'bec39fa0-1524-4e6b-897f-db0ef093085e', CAST(N'2014-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1781, N'Factor VIII (Injectable)', 1352213, N'Factor VIII', N'80fa03d2-cd4c-4155-9b57-1396c4fa42da', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1782, N'Factor XIII (Injectable)', 19106100, N'factor XIII', N'8664978e-1814-4930-aca5-97a24455f6df', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1783, N'FALLBACK SOLO (Oral Pill)', 1589505, N'Levonorgestrel', N'38c26cb9-052e-426f-9916-c13e7a5e62d0', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1784, N'False ragweed pollen extract (Injectable)', 40161714, N'false ragweed pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1785, N'Famciclovir (Oral Pill)', 1703603, N'famciclovir', N'eeeee9c4-8566-4100-8ca4-3df936a3365d', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1786, N'Famotidine (Injectable)', 953076, N'Famotidine', N'e3b13e23-122b-4bd4-95cf-b5a14b7afc05', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1787, N'Famotidine (Oral Disintegrating)', 953076, N'Famotidine', N'adb54fe50fcc4a01afc64aa3d3db45bb', CAST(N'2006-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1788, N'Famotidine (Oral Liquid)', 953076, N'Famotidine', N'a8010e10-68fd-455f-968f-d62a1c3e0ffd', CAST(N'2013-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1789, N'Famotidine (Oral Pill)', 953076, N'Famotidine', N'387088a6-8eaa-fc49-8050-a546d0f0fd32', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1790, N'Famotidine/Ibuprofen (Oral Pill)', 953076, N'Famotidine', N'558b9f26-37b2-423b-932d-25a37afe57ec', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1791, N'FANAPT (Oral Pill)', 19017241, N'iloperidone', N'43452bf8-76e7-47a9-a5d8-41fe84d061f0', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1792, N'FARESTON (Oral Pill)', 1342346, N'Toremifene', N'2cab8dd1-3a10-48e6-86ce-0e5275ed49e5', CAST(N'2012-11-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1793, N'FARXIGA (Oral Pill)', 44785829, N'dapagliflozin', N'fc6ae30e-868b-4ac9-b69d-900922503998', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1794, N'FASPRIN (Oral Disintegrating)', 1112807, N'Aspirin', N'73859ea9-01a0-4c3d-97d4-17b9d3378899', CAST(N'2010-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1795, N'FAST FREEZE (Topical)', 938205, N'Camphor', N'60c94da8-6c00-4544-a9a6-a3e87ebabd68', CAST(N'2011-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1796, N'Febuxostat (Oral Pill)', 19017742, N'febuxostat', N'ae1e0d8a-03fc-419b-9d44-afa68fbd5681', CAST(N'2011-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1797, N'Felbamate (Oral Liquid)', 795661, N'felbamate', N'2e325d79-d0a4-4af7-b09b-96ee5a5b2a37', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1798, N'Felbamate (Oral Pill)', 795661, N'felbamate', N'ce919497-c2f3-4362-bfb7-cf4e82e10a5c', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1799, N'FELBATOL (Oral Liquid)', 795661, N'felbamate', N'2f522701-397a-11de-8a39-0800200c9a66', CAST(N'2011-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1800, N'FELBATOL (Oral Pill)', 795661, N'felbamate', N'2f522701-397a-11de-8a39-0800200c9a66', CAST(N'2011-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1801, N'FELDENE (Oral Pill)', 1146810, N'Piroxicam', N'9d3e528b-a748-4bc5-b604-e7e9c5ab9183', CAST(N'2012-12-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1802, N'FEM PH (Vaginal)', 929549, N'Acetic Acid', N'77237c50-aeb5-44a0-a1e6-ce1551b49f75', CAST(N'2013-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1803, N'Fenofibrate (Oral Pill)', 1551803, N'Fenofibrate', N'194cd14a-d952-4507-91be-3f1d5371d3b8', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1804, N'FENOGLIDE (Oral Pill)', 1551803, N'Fenofibrate', N'35e89d4e-45cf-4374-bf93-fca8d40d783b', CAST(N'2013-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1805, N'Fenoprofen (Oral Pill)', 1153928, N'Fenoprofen', N'ef59e72f-6218-4f42-8f00-d10a6a14223a', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1806, N'fentaNYL (Buccal)', 1154029, N'Fentanyl', N'ad7ac196-4c6e-4aab-8742-bdb9f38f4be6', CAST(N'2011-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1807, N'fentaNYL (Injectable)', 1154029, N'Fentanyl', N'73cede3f-aff0-40b8-8a58-f5fc269d1b8d', CAST(N'2014-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1808, N'fentaNYL (Oral Lozenge)', 1154029, N'Fentanyl', N'8c3a8b2e-3ec2-4fad-bb9f-838822d97e6f', CAST(N'2014-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1809, N'fentaNYL (Sublingual)', 1154029, N'Fentanyl', N'f969e2bc-6297-4e29-89d3-a3685a2c7c6b', CAST(N'2015-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1810, N'FERRALET 90 (Oral Pill)', 19011773, N'Ascorbic Acid', N'2c9fd33d-4b38-42be-ad36-b1521ded47e1', CAST(N'2011-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1811, N'Ferric carboxymaltose (Injectable)', 43560392, N'ferric carboxymaltose', N'517b4a19-45b3-4286-9f6a-ced4e10447de', CAST(N'2013-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1812, N'Ferric citrate (Oral Pill)', 45776202, N'ferric citrate', N'aadd18e0-3752-11e4-8510-0800200c9a66', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1813, N'Ferric oxide, saccharated (Injectable)', 1395773, N'ferric oxide, saccharated', N'f1ab1a22-2b99-4d27-8b5a-9c3bcd5e3040', CAST(N'2014-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1814, N'Ferric subsulfate solution (Topical)', 19095786, N'ferric subsulfate solution', N'e93bce8b-de3b-4477-be41-d361e68849c6', CAST(N'2014-11-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1815, N'FERRIPROX (Oral Pill)', 19011091, N'deferiprone', N'dc8cbc3d-026c-0db5-42e8-8e93d374dd23', CAST(N'2015-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1816, N'FERRLECIT (Injectable)', 1399177, N'Sodium ferric gluconate complex', N'b25b34ab-9cf1-4a2b-bdf2-5eaf66625999', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1817, N'Ferrous fumarate (Chewable)', 1595799, N'Ferrous fumarate', N'5bdeee62-962f-4466-a1f4-ba0713d45478', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1818, N'Ferrous fumarate (Oral Pill)', 1595799, N'Ferrous fumarate', N'4cafa90a-9903-40d0-b8be-6ad78018b4b6', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1819, N'Ferrous fumarate/Folic Acid (Oral Pill)', 1595799, N'Ferrous fumarate', N'30138a3b-2759-48ee-afac-70eb294292f7', CAST(N'2014-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1820, N'Ferrous gluconate (Oral Pill)', 1396012, N'ferrous gluconate', N'304fdee6-0290-4717-be3d-b367bec7e411', CAST(N'2012-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1821, N'Ferrous sulfate (Oral Liquid)', 1396131, N'ferrous sulfate', N'a017eb78-8c70-4b59-b7c0-22ec6945c1a1', CAST(N'2013-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1822, N'Ferrous sulfate (Oral Pill)', 1396131, N'ferrous sulfate', N'91ff2cb4-1fb9-4125-9435-c9d008161203', CAST(N'2014-11-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1823, N'FEVERALL (Rectal)', 1125315, N'Acetaminophen', N'3ade895b-5dca-4d81-9415-8091923162ff', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1824, N'FEXMID (Oral Pill)', 778711, N'cyclobenzaprine', N'615f1e2f-63ec-4e20-bb74-293b5baf1d43', CAST(N'2011-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1825, N'Fexofenadine (Oral Disintegrating)', 1153428, N'fexofenadine', N'06115cea-5a44-409d-85ed-bb71743491c1', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1826, N'Fexofenadine (Oral Liquid)', 1153428, N'fexofenadine', N'c5f2ac86-b6be-486d-b1d3-7704f56c3245', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1827, N'Fexofenadine (Oral Pill)', 1153428, N'fexofenadine', N'd1d8d0ec-2bdd-fb07-a051-d6353e3c240c', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1828, N'FIBER TAB (Oral Pill)', 940426, N'calcium polycarbophil', N'bee100da-b9c9-4261-b6e6-7b3db5715625', CAST(N'2012-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1829, N'FIBERCON (Oral Pill)', 940426, N'calcium polycarbophil', N'80e507f2-d9bd-bc7b-2249-f5bfc8ac1845', CAST(N'2013-02-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1830, N'FIBRICOR (Oral Pill)', 1551803, N'Fenofibrate', N'b3149443-4baf-429b-a751-4a34a27f0249', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1831, N'Fibrinogen concentrate (human) (Injectable)', 19044986, N'fibrinogen concentrate (human)', N'903dc8d0-39da-462c-9dac-004e0c7a26cc', CAST(N'2012-02-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1832, N'Fibrinogen/Thrombin (Transdermal)', 19054702, N'Fibrinogen', N'5918e503-b457-48ab-b68b-243e29651d06', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1833, N'Fidaxomicin (Oral Pill)', 40239985, N'fidaxomicin', N'dd966338-c820-4270-b704-09ef75fa3ceb', CAST(N'2014-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1834, N'FINACEA (Topical)', 986790, N'Azelate', N'6c5e836c-2851-4524-b91d-12ffadffd9ba', CAST(N'2013-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1835, N'Finasteride (Oral Pill)', 996416, N'Finasteride', N'c59f8018-fff8-4884-a3c8-bc306e2c8f64', CAST(N'2015-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1836, N'FIORICET (Oral Pill)', 1125315, N'Acetaminophen', N'5d248332-87ff-45c2-be92-e9e8386a4749', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1837, N'FIORICET WITH CODEINE (Oral Pill)', 1125315, N'Acetaminophen', N'df9801fc-03fe-41da-a6b3-0f76788217c9', CAST(N'2014-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1838, N'FIORINAL (Oral Pill)', 1112807, N'Aspirin', N'a00c6776-e9ef-411b-9396-915c3787559a', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1839, N'FLANAX ANTACID (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'8d2e51f6-4b70-4b3d-856b-072fc5af2f72', CAST(N'2014-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1840, N'flavoxATE (Oral Pill)', 954853, N'Flavoxate', N'22a99f74-2718-48b3-b686-caf102d3071c', CAST(N'2014-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1841, N'Flecainide (Oral Pill)', 1354860, N'Flecainide', N'b764c8b8-7e23-4016-830f-68312d84f3d3', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1842, N'FLEET ENEMA (Rectal)', 991710, N'Sodium Phosphate, Dibasic', N'0a201d6d-0e45-43ca-8e09-e8b0e10ed2f4', CAST(N'2015-05-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1843, N'FLEET GLYCERIN SUPPOSITORIES ADULT (Rectal)', 961145, N'Glycerin', N'28ebc9ae-0ffa-4bc7-859d-e084505917cf', CAST(N'2012-11-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1844, N'FLEET MINERAL OIL (Rectal)', 908523, N'Mineral Oil', N'2528cb5e-437e-41f0-9c34-e9ce57404d8b', CAST(N'2013-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1845, N'FLEET SOF-LAX (Oral Pill)', 941258, N'Docusate', N'be5f87ac-044f-4b38-95c2-140bb60e1ba0', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1846, N'FLEXALL (Topical)', 901656, N'Menthol', N'9361fcaa-ccf8-43ec-9c1e-2294377d19db', CAST(N'2011-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1847, N'FLEXBUMIN (Injectable)', 1344143, N'Albumin Human, USP', N'98b96ee2-86d2-4056-bdda-4d75d72d891f', CAST(N'2014-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1848, N'FLOMAX (Oral Pill)', 924566, N'tamsulosin', N'0bef87bd-42fc-428f-b683-e0538b78f8d0', CAST(N'2012-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1849, N'FLO-PRED (Oral Liquid)', 1550557, N'prednisolone', N'980b3c11-a502-4235-bbff-af83a17ebcdf', CAST(N'2012-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1850, N'Fluconazole (Injectable)', 1754994, N'Fluconazole', N'd3ca59bd-ae00-48ab-89aa-87c7f56e9989', CAST(N'2015-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1851, N'Fluconazole (Oral Liquid)', 1754994, N'Fluconazole', N'29bd0efa-fb16-4e69-bb96-8f6bcf80b9f7', CAST(N'2015-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1852, N'Fluconazole (Oral Pill)', 1754994, N'Fluconazole', N'82af879c-9ecf-4f9a-b00f-779ab4104a2f', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1853, N'Flucytosine (Oral Pill)', 1755112, N'Flucytosine', N'58189ec7-118b-458a-8e4f-7867a97cfcbd', CAST(N'2013-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1854, N'Fludarabine (Injectable)', 1395557, N'fludarabine', N'763d6c6d-cfed-4813-8cc5-41e78d357845', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1855, N'Fludrocortisone (Oral Pill)', 1555120, N'Fludrocortisone', N'bf927cd9-1891-4de4-b4be-743a26363a64', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1856, N'FLUMADINE (Oral Liquid)', 1763339, N'Rimantadine', N'9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', CAST(N'2007-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1857, N'FLUMADINE (Oral Pill)', 1763339, N'Rimantadine', N'9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', CAST(N'2010-11-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1858, N'Flumazenil (Injectable)', 19055153, N'Flumazenil', N'e6237019-490f-4162-bfe0-6e2d08c0a1be', CAST(N'2013-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1859, N'Fluocinolone (Implant)', 996541, N'fluocinolone', N'4400e471-7402-11df-93f2-0800200c9a66', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1860, N'Fluocinolone (Otic)', 996541, N'fluocinolone', N'd2ffb64b-1614-4e2f-8125-9660ea3754f2', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1861, N'Fluocinolone (Shampoo)', 996541, N'fluocinolone', N'a52763d0-7024-48a8-9cca-3127333dfb01', CAST(N'2010-11-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1862, N'Fluocinolone (Topical)', 996541, N'fluocinolone', N'8d55d846-c833-4040-b02d-ac7783311dd6', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1863, N'Fluocinolone/Hydroquinone/Tretinoin (Topical)', 996541, N'fluocinolone', N'a35fa709-5eb5-4429-b38f-f1e0019bf0ee', CAST(N'2014-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1864, N'Fluocinolone/Neomycin (Topical)', 996541, N'fluocinolone', N'e96ae9cf-e829-466f-b66d-ede83b4d8b3d', CAST(N'2014-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1865, N'Fluocinonide (Topical)', 955252, N'Fluocinonide', N'edb61362-d48f-487a-b15f-5ea3089d2f30', CAST(N'2015-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1866, N'FLUOR A DAY (Oral Liquid)', 19069022, N'Sodium Fluoride', N'4c854364-e732-4dec-b1d1-b8a97e4e1176', CAST(N'2010-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1867, N'FLUOR A DAY CHEWABLE (Chewable)', 19069022, N'Sodium Fluoride', N'4c854364-e732-4dec-b1d1-b8a97e4e1176', CAST(N'2010-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1868, N'Fluorescein/Proparacaine (Ophthalmic)', 996625, N'Fluorescein', N'dae037ad-dcb8-42e6-8996-e575922d7631', CAST(N'2015-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1869, N'FLUORIDEX (Toothpaste)', 19069022, N'Sodium Fluoride', N'd05f94c8-3020-4f7c-877a-d64d6841a122', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1870, N'FLUORIDEX DAILY DEFENSE SENSITIVITY (Toothpaste)', 927322, N'potassium nitrate', N'fed4c40e-e9ce-4e99-8223-325af383eaa8', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1871, N'FLUORITAB (Chewable)', 19069022, N'Sodium Fluoride', N'cd18915a-0b63-4fed-aebe-0c2fe60d8505', CAST(N'2012-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1872, N'Fluorometholone (Ophthalmic)', 955583, N'Fluorometholone', N'b810b4c3-ac7a-4ba5-85bf-ebfaf3b1dabf', CAST(N'2013-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1873, N'Fluorometholone/Tobramycin (Ophthalmic)', 955583, N'Fluorometholone', N'cbdf11f4-d84c-4c4a-aac2-f8c23304fb02', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1874, N'FLUOR-OP (Ophthalmic)', 955583, N'Fluorometholone', N'545776fe-63df-44ab-ace3-f3d73d2e0092', CAST(N'2006-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1875, N'FLUOROPLEX (Topical)', 955632, N'Fluorouracil', N'258bb79a-56b3-4f46-ade6-7331ec031074', CAST(N'2012-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1876, N'Fluorouracil (Injectable)', 955632, N'Fluorouracil', N'beb8c6c5-4b6e-4770-b6d4-718e33c7a2ff', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1877, N'Fluorouracil (Topical)', 955632, N'Fluorouracil', N'58fa81e2-9dbc-4cef-82d4-e5dc4aec5b26', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1878, N'FLUoxetine (Oral Liquid)', 755695, N'Fluoxetine', N'142f9b27-65a7-4add-bdcc-2468695fedff', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1879, N'FLUoxetine (Oral Pill)', 755695, N'Fluoxetine', N'23899405-007b-48d9-82a9-a530b8e90784', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1880, N'FLUoxetine/OLANZapine (Oral Pill)', 755695, N'Fluoxetine', N'2f6ceda3-3edc-4427-98a6-23e3c930c44d', CAST(N'2013-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1881, N'Fluoxymesterone (Oral Pill)', 1555887, N'Fluoxymesterone', N'5328c194-5650-4d1f-9e28-8cea038cce81', CAST(N'2014-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1882, N'fluPHENAZine (Injectable)', 756018, N'Fluphenazine', N'2a8ef5f7-c806-470d-96ff-3b3827dc8938', CAST(N'2014-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1883, N'fluPHENAZine (Oral Liquid)', 756018, N'Fluphenazine', N'0860b3f3-3116-40f8-bcb0-e5c47731bdc8', CAST(N'2010-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1884, N'fluPHENAZine (Oral Pill)', 756018, N'Fluphenazine', N'33bffb02-f1cc-4554-a3b7-9f2291feb4ac', CAST(N'2015-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1885, N'FLURA-DROPS (Oral Liquid)', 19069022, N'Sodium Fluoride', N'ddb4c0d6-6739-2a4b-8a90-1c8aec94f4ab', CAST(N'2014-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1886, N'Flurandrenolide (Topical)', 956266, N'Flurandrenolide', N'a0949773-c75f-4ef0-a69c-1abd978340d0', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1887, N'Flurazepam (Oral Pill)', 756349, N'Flurazepam', N'2f2db2f5-49d3-4d47-a08a-628df49d2120', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1888, N'Flurbiprofen (Ophthalmic)', 1156378, N'Flurbiprofen', N'5a4d5684-b20a-4fde-a808-404c7b9d25b3', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1889, N'Flurbiprofen (Oral Pill)', 1156378, N'Flurbiprofen', N'c9449292-e81e-486a-84e1-bb9dd0f612c5', CAST(N'2012-06-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1890, N'Flutamide (Oral Pill)', 1356461, N'Flutamide', N'bae781d4-7101-4008-9af2-6e76b5e1c408', CAST(N'2012-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1891, N'Fluticasone (Topical)', 1149380, N'fluticasone', N'0e20d1cc-5c7a-4e0d-810b-b94c4d6dd1c0', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1892, N'Fluvastatin (Oral Pill)', 1549686, N'fluvastatin', N'e38126a5-9d6a-422f-812c-a01610108162', CAST(N'2014-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1893, N'fluvoxaMINE (Oral Pill)', 751412, N'Fluvoxamine', N'727a5eb4-ac82-444d-8381-44c34ee3b895', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1894, N'FLUXID (Oral Disintegrating)', 953076, N'Famotidine', N'adb54fe50fcc4a01afc64aa3d3db45bb', CAST(N'2006-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1895, N'FML (Ophthalmic)', 955583, N'Fluorometholone', N'c374d65a-35b5-4c9e-9069-5148875dc4df', CAST(N'2013-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1896, N'FML FORTE LIQUIFILM (Ophthalmic)', 955583, N'Fluorometholone', N'b810b4c3-ac7a-4ba5-85bf-ebfaf3b1dabf', CAST(N'2013-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1897, N'FML-S (Ophthalmic)', 955583, N'Fluorometholone', N'9d71d7fd-2b25-4163-922f-018ed8c5171f', CAST(N'2007-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1898, N'FOILLE (Topical)', 917006, N'Benzocaine', N'e2eca808-e97b-43e0-aa51-7025cc61c7a8', CAST(N'2013-03-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1899, N'FOLBIC (Oral Pill)', 19111620, N'Folic Acid', N'99121923-2b2d-427a-865a-e8b7dd052569', CAST(N'2010-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1900, N'FOLCAPS (Oral Pill)', 19111620, N'Folic Acid', N'47d368ab-5165-4ce3-b993-f5d72bb5b238', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1901, N'Folic Acid (Injectable)', 19111620, N'Folic Acid', N'e215318c-4f8b-4711-ae76-f370d1da0f3b', CAST(N'2011-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1902, N'Folic Acid (Oral Pill)', 19111620, N'Folic Acid', N'f2c543b3-1b17-4072-8b86-ddecaf3445d6', CAST(N'2015-06-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1903, N'Folic Acid/Heme iron polypeptide/Polysaccharide iron complex/Vitamin B 12 (Oral Pill)', 19111620, N'Folic Acid', N'a7c1400a-d230-45db-afff-d5f70b091ee9', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1904, N'Folic Acid/Polysaccharide iron complex/Vitamin B 12 (Oral Pill)', 19111620, N'Folic Acid', N'ed2308e3-5310-41bd-9333-615c26183493', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1905, N'Folic Acid/Vitamin B 12/Vitamin B6 (Oral Pill)', 19111620, N'Folic Acid', N'8751d1f4-7ed7-40ce-bc4d-bde94d96a859', CAST(N'2015-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1906, N'Follitropin Alfa (Injectable)', 1542948, N'Follitropin Alfa', N'ae85b9c3-e7eb-4981-a5d9-346050e8f189', CAST(N'2013-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1907, N'FOLTABS (Oral Pill)', 19111620, N'Folic Acid', N'a0c87255-6105-4ae6-a698-dae0115265ab', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1908, N'Fomepizole (Injectable)', 19022479, N'fomepizole', N'a306cd11-9acf-45f1-91ec-9fef2b08fdb1', CAST(N'2013-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1909, N'FORADIL (Inhalant)', 1196677, N'formoterol', N'04212000-ec03-42a3-8b9e-3a28237f415e', CAST(N'2012-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1910, N'FORANE (Inhalant)', 782043, N'Isoflurane', N'3d30eb8d-a62e-475f-926b-78ba63bee9c8', CAST(N'2011-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1911, N'FORMADON (Topical)', 1756524, N'Formaldehyde', N'36b221c6-4318-4e2a-8cd0-d5558b04cdc6', CAST(N'2010-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1912, N'Formaldehyde (Topical)', 1756524, N'Formaldehyde', N'74a85045-d668-4c98-8302-099a063cca3a', CAST(N'2010-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1913, N'FORMA-RAY (Topical)', 1756524, N'Formaldehyde', N'74a85045-d668-4c98-8302-099a063cca3a', CAST(N'2010-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1914, N'Formoterol (Inhalant)', 1196677, N'formoterol', N'04212000-ec03-42a3-8b9e-3a28237f415e', CAST(N'2012-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1915, N'FORTICAL (Nasal)', 1537655, N'salmon calcitonin', N'e662c321-8c1b-4829-b4c9-459284f654c3', CAST(N'2010-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1916, N'FOSAMAX (Oral Pill)', 1557272, N'Alendronate', N'e6ffadda-2ace-4e99-8bb4-75631c54f39b', CAST(N'2010-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1917, N'FOSAMAX PLUS D (Oral Pill)', 1557272, N'Alendronate', N'd4a71df1-7488-46a2-8ded-dd0db56de618', CAST(N'2011-12-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1918, N'Fosamprenavir (Oral Pill)', 1736829, N'fosamprenavir', N'009575f9-74e8-4a6d-9fa6-3cae72fd01c3', CAST(N'2010-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1919, N'Foscarnet (Injectable)', 1724700, N'Foscarnet', N'a09299d5-9c55-4cef-aed0-3a6a45532289', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1920, N'FOSCAVIR (Injectable)', 1724700, N'Foscarnet', N'90e3da4e-3b1f-428b-99ca-e4bed1c80028', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1921, N'Fosinopril (Oral Pill)', 1363749, N'Fosinopril', N'cfd96e4b-fcf1-4959-aaf4-7aabe0d80ab5', CAST(N'2014-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1922, N'Fosinopril/Hydrochlorothiazide (Oral Pill)', 1363749, N'Fosinopril', N'7f60424f-b90c-459c-ae53-b732ee3d67b5', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1923, N'FOSRENOL (Chewable)', 990028, N'lanthanum carbonate', N'21bc55ec-5f23-4d0b-9488-d5b08b7c0fc2', CAST(N'2012-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1924, N'FRAGMIN (Injectable)', 1301065, N'Dalteparin', N'23527b8b-9b28-4e6d-9751-33b143975ac7', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1925, N'FRESHKOTE (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'6397ebc5-0670-4dc0-8660-6c0f733e6fd1', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1926, N'FROVA (Oral Pill)', 1189458, N'frovatriptan', N'8ce8bf0a-8b21-41a5-bbea-71302312c2c5', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1927, N'Frovatriptan (Oral Pill)', 1189458, N'frovatriptan', N'35941e47-106d-414d-9529-0a56af7396d5', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1928, N'Fructose/Glucose/Phosphoric acid (Oral Liquid)', 956691, N'Fructose', N'24d87e9b-58d5-4753-a123-6e1a5336e4ed', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1929, N'Fructose/Glucose/Sodium citrate (Oral Liquid)', 956691, N'Fructose', N'728376f5-6cab-404e-b519-f6c595291d6f', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1930, N'FUNGICURE MAXIMUM STRENGTH (Topical)', 914244, N'Undecylenate', N'0eca7b88-8c23-4fff-a07b-7f850832ff10', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1931, N'FUNGI-NAIL (Topical)', 914244, N'Undecylenate', N'bc737ee2-0651-4f02-8157-bbed81507c35', CAST(N'2015-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1932, N'FUNGOID (Topical)', 907879, N'Miconazole', N'250d0a66-01d1-4aba-8f24-4cb4ca529fda', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1933, N'Furosemide (Injectable)', 956874, N'Furosemide', N'71b48f4d-9936-448c-9e3a-33f1182e1039', CAST(N'2015-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1934, N'Furosemide (Oral Liquid)', 956874, N'Furosemide', N'9ca6640e-dbfb-4bcd-bf3e-c8c68b7d41a1', CAST(N'2013-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1935, N'Furosemide (Oral Pill)', 956874, N'Furosemide', N'ea5805d3-400b-4978-b27d-bd2b5b1cb636', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1936, N'Fusarium oxysporum vasinfectum extract (Injectable)', 40167646, N'Fusarium oxysporum vasinfectum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1937, N'Gabapentin (Oral Liquid)', 797399, N'gabapentin', N'3255245c-6ae6-46ab-a1c1-0b8d4d4cdaa2', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1938, N'Gabapentin (Oral Pill)', 797399, N'gabapentin', N'9508cb1b-3f9f-48bd-8f34-a6fbb68c9a4a', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1939, N'GABITRIL (Oral Pill)', 715458, N'tiagabine', N'175f2d9f-449b-4d95-a4b9-94f891f8e3ae', CAST(N'2011-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1940, N'Galantamine (Oral Liquid)', 757627, N'Galantamine', N'd5b0e225-e94d-4324-afb2-b6e51c949dd0', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1941, N'Galantamine (Oral Pill)', 757627, N'Galantamine', N'7dc963dd-84d6-45f3-857f-46a44fe9edc8', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1942, N'Gallium nitrate (Injectable)', 19097605, N'gallium nitrate', N'8bc2ddf8-d695-46b3-bf76-9f85ce6027e3', CAST(N'2012-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1943, N'GALZIN (Oral Pill)', 979096, N'Zinc Acetate', N'a0c72bff-20f3-4241-b966-34a95178d1a3', CAST(N'2012-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1944, N'Gamma-Aminobutyrate/Melatonin/Valerian root extract (Oral Pill)', 19123846, N'gamma-Aminobutyrate', N'b450210c-516d-4068-b792-8bed31b26e32', CAST(N'2014-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1945, N'GAMMAGARD (Injectable)', 19117912, N'Immunoglobulin G', N'9d42adca-0dd7-4df7-864d-5a7feee52130', CAST(N'2015-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1946, N'Ganciclovir (Injectable)', 1757803, N'Ganciclovir', N'35addab5-09db-4f8a-9c69-6fbce33ecc37', CAST(N'2014-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1947, N'Ganciclovir (Oral Pill)', 1757803, N'Ganciclovir', N'3406db8a-5ae9-4120-94bd-036701adbeca', CAST(N'2014-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1948, N'GANITE (Injectable)', 19097605, N'gallium nitrate', N'8bc2ddf8-d695-46b3-bf76-9f85ce6027e3', CAST(N'2012-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1949, N'GARAMYCIN (Ophthalmic)', 919345, N'Gentamicin Sulfate (USP)', N'aa2b006d-f67c-4c71-abce-55d55295b5bb', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1950, N'Garrys oak pollen extract (Injectable)', 40172997, N'Garrys oak pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1951, N'GASTROCROM (Oral Liquid)', 1152631, N'Cromolyn', N'00623958-a8fe-47d1-a0d2-0aa4e2f7966e', CAST(N'2015-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1952, N'GAS-X (Chewable)', 966991, N'Simethicone', N'c70b8a69-f853-4981-aff5-389aa58f7169', CAST(N'2012-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1953, N'GAS-X (Oral Pill)', 966991, N'Simethicone', N'ee9a8404-0653-433f-90e5-7ac69bdab8df', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1954, N'GAS-X EXTRA STRENGTH (Oral Pill)', 966991, N'Simethicone', N'980362cf-1d15-4286-8ab8-bfeac7d34f4a', CAST(N'2014-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1955, N'Gatifloxacin (Ophthalmic)', 1789276, N'gatifloxacin', N'3dd6ac6b-877a-46c7-bbc8-c7119f341abe', CAST(N'2015-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1956, N'GATTEX (Injectable)', 43013171, N'teduglutide', N'66b69c1e-b25c-44d3-b5ff-1c1de9a516fa', CAST(N'2013-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1957, N'GAVILAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'19672e23-1606-497e-a112-939af33af195', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1958, N'GAVILYTE-N (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'27195187-75a3-431f-90d9-84da1b94e849', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1959, N'GAVISCON (Chewable)', 985247, N'Aluminum Hydroxide', N'7f367927-c366-465c-a059-e2cfb337d562', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1960, N'GAVISCON (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'2d74e5bc-1f10-4fb6-9258-cd906e360013', CAST(N'2014-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1961, N'GAVISCON CHEWABLE (Chewable)', 985247, N'Aluminum Hydroxide', N'7f367927-c366-465c-a059-e2cfb337d562', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1962, N'Gefitinib (Oral Pill)', 1319193, N'gefitinib', N'827d60e8-7e07-41b7-c28b-49ef1c4a5a41', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1963, N'GELATO PERIO RINSE (Mouthwash)', 1036094, N'Stannous Fluoride', N'f8721665-b304-4b1c-9bda-385d7671d099', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1964, N'GELATO SODIUM FLUORIDE (Oral Foam)', 19069022, N'Sodium Fluoride', N'bcf97201-341a-4aa5-9aa8-1d73bb55b881', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1965, N'GELATO SODIUM FLUORIDE (Oral Gel)', 19069022, N'Sodium Fluoride', N'a857af18-8eb8-47dc-bb26-73a321ed643c', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1966, N'GELATO SODIUM FLUORIDE (Toothpaste)', 19069022, N'Sodium Fluoride', N'8b267c4d-4d07-421a-85c6-0451012d7dae', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1967, N'GEL-KAM (Oral Gel)', 1036094, N'Stannous Fluoride', N'8c2c3c5c-ddef-4a4d-8bc3-5a98c577e74c', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1968, N'GELNIQUE (Topical)', 918906, N'oxybutynin', N'c6754623-b14c-4fc3-8719-48eee3119156', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1969, N'Gemcitabine (Injectable)', 1314924, N'gemcitabine', N'6004fba9-49c0-4781-8134-44bf7cf196fd', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1970, N'Gemfibrozil (Oral Pill)', 1558242, N'Gemfibrozil', N'22ea8379-50aa-4550-98f0-708d6da97e79', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1971, N'GENERLAC (Oral Liquid)', 987245, N'Lactulose', N'2a2eee86-273e-4718-8f78-34f15e193040', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1972, N'GENTAK (Ophthalmic)', 919345, N'Gentamicin Sulfate (USP)', N'a357d23d-1f10-44ce-a2fa-a6a5e03e7739', CAST(N'2013-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1973, N'Gentamicin Sulfate (USP) (Injectable)', 919345, N'Gentamicin Sulfate (USP)', N'1bf429e3-6e0c-4244-ba1a-af1a3a153c24', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1974, N'Gentamicin Sulfate (USP) (Ophthalmic)', 919345, N'Gentamicin Sulfate (USP)', N'c5fac820-18a1-452f-bc2c-58ed73babb0c', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1975, N'Gentamicin Sulfate (USP) (Topical)', 919345, N'Gentamicin Sulfate (USP)', N'4cfbe37e-11d6-46fc-b287-0561387b17b7', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1976, N'GENTEAL (Ophthalmic)', 902251, N'hypromellose', N'3c4ea323-2407-4f9d-b44f-eebf127924ba', CAST(N'2012-10-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1977, N'GENTEAL GEL DROPS (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'c9dcab71-3ec8-45ff-83f0-132c6c6e63bd', CAST(N'2012-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1978, N'Gentian Violet (Topical)', 959362, N'Gentian Violet', N'7b4e6572-cb44-491d-8063-f7519307a8e5', CAST(N'2014-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1979, N'GENTLELAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'0d820dcc-440a-4036-86e9-fdb30cac9573', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1980, N'GEOCILLIN (Oral Pill)', 1740546, N'Carbenicillin', N'02010995-9826-4a67-945b-f3022e6081df', CAST(N'2007-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1981, N'GEODON (Injectable)', 712615, N'ziprasidone', N'036db1f2-52b3-42a0-acf9-817b7ba8c724', CAST(N'2015-02-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1982, N'GEODON (Oral Pill)', 712615, N'ziprasidone', N'a3aa96bb-2cc1-4316-b94c-61593e927505', CAST(N'2012-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1983, N'GERI-HYDROLAC (Topical)', 19011035, N'Lactate', N'5d2efce6-3cb4-4c86-b899-c1611a25384e', CAST(N'2013-06-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1984, N'Giant ragweed pollen extract (Injectable)', 40161718, N'giant ragweed pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1985, N'Giant ragweed pollen extract/Western ragweed pollen extract (Injectable)', 40161718, N'giant ragweed pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1986, N'GIAZO (Oral Pill)', 934262, N'balsalazide', N'fc5146c6-448b-44c9-bb06-8bdfe484f2f1', CAST(N'2013-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1987, N'GILOTRIF (Oral Pill)', 43533090, N'Afatinib', N'fd638e5e-8032-e7ca-0179-95e96ab5d387', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1988, N'GILPHEX (Oral Pill)', 1163944, N'Guaifenesin', N'80a33cba-9577-402a-84bc-1507c439c933', CAST(N'2012-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1989, N'GINGI MED (Mouthwash)', 1036094, N'Stannous Fluoride', N'e07e291b-2cdd-444a-a510-1e9199323f38', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1990, N'Glimepiride (Oral Pill)', 1597756, N'glimepiride', N'1249298e-9d2c-41e6-94ac-95f8e75d6c26', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1991, N'glipiZIDE (Oral Pill)', 1560171, N'Glipizide', N'2e51d1ae-a486-4d7a-b5ee-2324c8c42fb2', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1992, N'GlipiZIDE/metFORMIN (Oral Pill)', 1560171, N'Glipizide', N'0e7bfe7f-c0c5-4ef1-a7bf-9b01712621f0', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1993, N'GLUCAGEN (Injectable)', 1560278, N'Glucagon', N'f09feb8e-6651-4708-a811-bb5264712059', CAST(N'2015-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1994, N'Glucagon (Injectable)', 1560278, N'Glucagon', N'ff16e4b1-3668-4cb4-91a4-77ee509cd6f6', CAST(N'2015-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1995, N'Glucarpidase (Injectable)', 42709319, N'glucarpidase', N'acaef5a6-b740-40e3-8ffe-74a75c74745c', CAST(N'2013-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1996, N'GLUCOPHAGE (Oral Pill)', 1503297, N'Metformin', N'4a0166c7-7097-4e4a-9036-6c9a60d08fc6', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1997, N'Glucose (Injectable)', 1560524, N'Glucose', N'c8758d46-17c8-4fcd-9a0f-e73a2dad6860', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1998, N'Glucose (Oral Gel)', 1560524, N'Glucose', N'39edd887-b89f-4765-8fac-72df3ba3efc3', CAST(N'2012-09-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (1999, N'Glucose (Oral Liquid)', 1560524, N'Glucose', N'fe237543-f1f9-42f9-a262-d34b581cfeb3', CAST(N'2014-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2000, N'Glucose/Magnesium acetate/Potassium Acetate/Sodium Chloride (Injectable)', 1560524, N'Glucose', N'85c08b62-8de0-42d2-8cdc-fe42e6b605d7', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2001, N'Glucose/Potassium Chloride (Injectable)', 1560524, N'Glucose', N'45de5402-5e61-4bbd-8bbc-5e3392c9920e', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2002, N'Glucose/Potassium Chloride/Sodium Chloride (Injectable)', 1560524, N'Glucose', N'01321de3-bf0b-4460-9aee-511406ee101e', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2003, N'Glucose/Sodium Chloride (Injectable)', 1560524, N'Glucose', N'7949edf6-3afd-48cb-9f02-5136d69f9e27', CAST(N'2014-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2004, N'GLUCOTROL (Oral Pill)', 1560171, N'Glipizide', N'504567d2-e4f1-428d-b524-f29db76e6dfb', CAST(N'2012-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2005, N'Glutamine (Oral Liquid)', 19060985, N'Glutamine', N'cd3fb572-c5b1-43da-aea2-31208985f544', CAST(N'2014-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2006, N'GLUTOSE (Oral Gel)', 1560524, N'Glucose', N'39edd887-b89f-4765-8fac-72df3ba3efc3', CAST(N'2012-09-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2007, N'glyBURIDE (Oral Pill)', 1559684, N'Glyburide', N'f26d05c9-d01b-46ab-933d-a01ea488ec9b', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2008, N'GlyBURIDE/metFORMIN (Oral Pill)', 1559684, N'Glyburide', N'e57d2503-11d2-44cd-a4a6-6981db0dec34', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2009, N'Glycerin (Ophthalmic)', 961145, N'Glycerin', N'00071697-4ac6-4962-8eee-388b8b52bd40', CAST(N'2010-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2010, N'Glycerin (Oral Gel)', 961145, N'Glycerin', N'0d371e48-d722-4b77-b354-5a44179247bc', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2011, N'Glycerin (Rectal)', 961145, N'Glycerin', N'5dcea9dc-51f7-4de8-ba41-1bebfd2a6671', CAST(N'2014-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2012, N'Glycerin (Topical)', 961145, N'Glycerin', N'a6d4c5a0-8276-4d02-9573-b439be2780a4', CAST(N'2015-03-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2013, N'Glycerin/Hypromellose/Polyethylene Glycol 400 (Ophthalmic)', 961145, N'Glycerin', N'ac9fb8ee-d0b9-43dc-900b-1362b56974cc', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2014, N'Glycerin/Naphazoline (Ophthalmic)', 961145, N'Glycerin', N'a26ef66e-2def-4c98-9959-d40d4cfe3108', CAST(N'2015-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2015, N'Glycerin/Naphazoline/Zinc Sulfate (Ophthalmic)', 961145, N'Glycerin', N'a710be3f-fa5b-46a6-87b5-5a4d1f807e1c', CAST(N'2012-04-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2016, N'Glycerin/Petrolatum/Phenylephrine/Pramoxine (Rectal)', 961145, N'Glycerin', N'fb170371-2e5d-43ca-a259-538a973ee3b8', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2017, N'Glycerin/Phenol (Mucosal)', 961145, N'Glycerin', N'882c940c-b3c3-4aa4-8d64-e4260f066ff4', CAST(N'2013-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2018, N'Glycerin/Propylene glycol (Ophthalmic)', 961145, N'Glycerin', N'5a435dbc-669f-49c9-abf2-5e35f1e3d578', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2019, N'Glycine (Irrigation)', 962398, N'Glycine', N'f4d83550-42de-44c7-b8d5-1d0debc6aec2', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2020, N'GLYCOLAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'5e25cd00-69a8-4d83-b3a4-d97fffeaf893', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2021, N'Glycopyrrolate (Injectable)', 963353, N'Glycopyrrolate', N'd5a18d74-0d40-46e2-aa0a-41d18609a536', CAST(N'2015-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2022, N'Glycopyrrolate (Oral Liquid)', 963353, N'Glycopyrrolate', N'd200bd44-9856-4104-a29e-a4cca3db6737', CAST(N'2013-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2023, N'Glycopyrrolate (Oral Pill)', 963353, N'Glycopyrrolate', N'a9fe52b4-9290-4e26-a142-1506572bc217', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2024, N'GLYNASE (Oral Pill)', 1559684, N'Glyburide', N'a7fce80a-2f13-43cc-8e1c-561f7d3ec3d5', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2025, N'GLY-OXIDE (Mucosal)', 958999, N'carbamide peroxide', N'086a0b82-e947-41c9-89e7-ba06483960c9', CAST(N'2012-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2026, N'GLYTONE (Topical)', 976778, N'hydroquinone', N'f1fd0340-7975-435f-9de8-3064c6e2250e', CAST(N'2014-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2027, N'GOLD BOND ANTI-ITCH INTENSIVE RELIEF (Topical)', 916662, N'dimethicone', N'7c0f98df-6900-4fe5-abee-8378799ea754', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2028, N'GOLD BOND BABY CORNSTARCH PLUS (Topical)', 40230159, N'cornstarch', N'5654facc-ad51-4501-a505-9c0b2035e653', CAST(N'2011-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2029, N'GOLD BOND BODY POWDER EXTRA STRENGTH (Topical)', 901656, N'Menthol', N'dd74205d-4520-417e-b43f-6622c35c1971', CAST(N'2012-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2030, N'GOLD BOND BODY POWDER ORIGINAL STRENGTH (Topical)', 901656, N'Menthol', N'dd74205d-4520-417e-b43f-6622c35c1971', CAST(N'2012-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2031, N'GOLD BOND FOOT POWDER MAXIMUM STRENGTH (Topical)', 901656, N'Menthol', N'9074c659-dea5-4656-8abb-01f0b1a6927e', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2032, N'GOLD BOND LOTION (Topical)', 916662, N'dimethicone', N'33cc1470-f0c2-4e25-bc49-ca23e3b195f0', CAST(N'2012-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2033, N'GOLD BOND ULTIMATE ECZEMA RELIEF (Topical)', 986261, N'Colloidal oatmeal', N'52744c77-278f-40b1-a356-14ae4366389b', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2034, N'Golimumab (Injectable)', 19041065, N'golimumab', N'9e260a47-55af-4c92-8d88-a86ccc767fff', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2035, N'Gonadorelin (Injectable)', 19089810, N'Gonadorelin', N'34d9ef24-7c00-4c5a-8851-dc9a9885eb8f', CAST(N'2013-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2036, N'GONAL F (Injectable)', 1542948, N'Follitropin Alfa', N'ae85b9c3-e7eb-4981-a5d9-346050e8f189', CAST(N'2013-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2037, N'GONIOSOFT (Ophthalmic)', 902251, N'hypromellose', N'b9885de2-bd4c-c5c8-7ce3-c3f1669e74ea', CAST(N'2012-12-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2038, N'GONIOVISC (Ophthalmic)', 902251, N'hypromellose', N'b8b57c41-aae6-4cbd-8fbf-0a1c6fa196d9', CAST(N'2014-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2039, N'GOODY''S BODY PAIN (Oral Powder)', 1125315, N'Acetaminophen', N'055d0288-61d4-48bc-b91f-6ecc1969beb8', CAST(N'2013-11-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2040, N'GOODY''S EXTRA STRENGTH (Oral Powder)', 1125315, N'Acetaminophen', N'16d774cc-4247-4bf8-9b5a-c338ffebda3d', CAST(N'2013-11-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2041, N'GOODY''S PM (Oral Powder)', 1125315, N'Acetaminophen', N'db5d6c2b-688e-4e88-a42d-0fa2b0d8140b', CAST(N'2013-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2042, N'Gramicidin/Neomycin/Polymyxin B (Ophthalmic)', 963742, N'Gramicidin', N'94e3b620-f9b2-4c8b-9ee8-8b27207a2cab', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2043, N'Granisetron (Injectable)', 1000772, N'Granisetron', N'af68579f-c863-4535-94af-a4126b43c182', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2044, N'Granisetron (Oral Pill)', 1000772, N'Granisetron', N'02dc4c34-04e8-4f16-8109-b04d600a9c61', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2045, N'GRASTEK (Sublingual)', 40161488, N'Timothy grass pollen extract', N'1d7f3e56-c233-47a4-9bcd-80098ffff47d', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2046, N'Green ash pollen extract/White ash pollen extract (Injectable)', 40161734, N'green ash pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2047, N'Griseofulvin (Oral Liquid)', 1763779, N'Griseofulvin', N'82f52d21-eacd-4edf-8ad5-a8ef090ffa2a', CAST(N'2015-04-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2048, N'Griseofulvin (Oral Pill)', 1763779, N'Griseofulvin', N'993f0609-0f63-4bd5-b383-a19a00945c7e', CAST(N'2014-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2049, N'GRIS-PEG (Oral Pill)', 1763779, N'Griseofulvin', N'20aa6571-ee10-4dc1-9be9-018aa0a680fc', CAST(N'2010-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2050, N'Groundsel pollen extract (Injectable)', 40172352, N'groundsel pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2051, N'guaiFENesin (Oral Granules)', 1163944, N'Guaifenesin', N'fd8a69aa-eb75-4e7a-8b6e-3361f810c578', CAST(N'2012-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2052, N'guaiFENesin (Oral Liquid)', 1163944, N'Guaifenesin', N'60e25a79-ec9a-4266-9f95-6f2848ce69cd', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2053, N'guaiFENesin (Oral Pill)', 1163944, N'Guaifenesin', N'43829ee3-23a7-4430-8a08-a5df09fc564d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2054, N'guaiFENesin/HYDROcodone (Oral Liquid)', 1163944, N'Guaifenesin', N'1d0c2c03-ca11-30b1-e054-00144ff8d46c', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2055, N'guaiFENesin/Phenylephrine (Oral Liquid)', 1163944, N'Guaifenesin', N'9ebee4c3-c0fb-417e-901f-eaaf678654f9', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2056, N'guaiFENesin/Phenylephrine (Oral Pill)', 1163944, N'Guaifenesin', N'ae9f4939-6a79-4f68-a58e-89246e36e158', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2057, N'guaiFENesin/Pseudoephedrine (Oral Pill)', 1163944, N'Guaifenesin', N'383281d7-0d25-4423-ace2-d2985f2c37d0', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2058, N'guanFACINE (Oral Pill)', 1344965, N'Guanfacine', N'c6e30fc7-5ad3-41c1-a673-b4db53f2b98f', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2059, N'Guanidine (Oral Pill)', 766337, N'Guanidine', N'903fbd33-e5d9-41fb-9414-7bd6f42a8593', CAST(N'2012-08-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2060, N'GYNE-LOTRIMIN (Vaginal)', 1000632, N'Clotrimazole', N'79ee7b42-9934-472c-8e08-cda31be9e72d', CAST(N'2012-03-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2061, N'GYNOL II (Vaginal)', 969444, N'Nonoxynol-9', N'eaf86a36-0573-4c39-9324-88919c4d009b', CAST(N'2013-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2062, N'G-ZYNCOF (Oral Liquid)', 1119510, N'Dextromethorphan', N'c1aa7060-0f32-4ea1-8e2e-1aa131bd55fc', CAST(N'2012-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2063, N'Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine (Injectable)', 529118, N'Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine', N'8143d01c-4911-40db-95b2-47f3ebea2a7d', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2064, N'Halcinonide (Topical)', 966468, N'Halcinonide', N'e60d0691-0628-4c98-9a17-f4a89822baf2', CAST(N'2014-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2065, N'HALDOL (Injectable)', 766529, N'Haloperidol', N'27cfe684-7d11-4f37-9c8b-b2bdd6b5348e', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2066, N'HALLS (Oral Lozenge)', 901656, N'Menthol', N'5f4af8e8-8550-45c7-a199-694efac9e7be', CAST(N'2014-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2067, N'Halobetasol (Topical)', 949759, N'halobetasol', N'c420da92-a3e3-4760-8cad-e50cbacebfeb', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2068, N'HALOG (Topical)', 966468, N'Halcinonide', N'e60d0691-0628-4c98-9a17-f4a89822baf2', CAST(N'2014-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2069, N'Haloperidol (Injectable)', 766529, N'Haloperidol', N'7b01bd62-d0fa-4229-9a09-f90893dd6dbd', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2070, N'Haloperidol (Oral Liquid)', 766529, N'Haloperidol', N'2d848e8c-de42-4a09-96f1-a2d250af059d', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2071, N'Haloperidol (Oral Pill)', 766529, N'Haloperidol', N'0027b8a3-73bf-4005-a7e3-b035f451a861', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2072, N'HALOTESTIN (Oral Pill)', 1555887, N'Fluoxymesterone', N'09bafc2d-1893-4618-86dc-e9403407cd41', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2073, N'Hard maple pollen extract (Injectable)', 40161785, N'hard maple pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2074, N'Hard maple pollen extract/Red maple pollen extract/Silver maple pollen extract (Injectable)', 40161785, N'hard maple pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2075, N'HARVONI (Oral Pill)', 45775020, N'ledipasvir', N'1a1c555d-2fdf-4150-8ace-dbc770c226bf', CAST(N'2014-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2076, N'Hazelnut pollen extract (Injectable)', 40161789, N'hazelnut pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2077, N'HEAD & SHOULDERS (Shampoo)', 944360, N'zinc pyrithione', N'83f0f5e0-2883-4c68-a6bc-f22f6c9d9f80', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2078, N'HEALTHYLAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'9b14e26f-17cb-4890-bb47-9db79f352bd2', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2079, N'Heavy mineral oil (Oral Liquid)', 998394, N'Heavy mineral oil', N'9f943fdf-5058-4e18-ba96-6be112bf72ca', CAST(N'2014-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2080, N'HECORIA (Oral Pill)', 950637, N'Tacrolimus', N'95b03516-34b0-4438-a05c-918d80f70091', CAST(N'2013-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2081, N'HECTOROL (Oral Pill)', 1512446, N'Doxercalciferol', N'dc676bc5-f3f7-4755-92e1-1814498c1f4f', CAST(N'2013-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2082, N'Helium (Inhalant)', 19067073, N'Helium', N'e1d2805c-1ede-4de5-b06e-f5cffc3ffd3c', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2083, N'Helium/Oxygen (Inhalant)', 19067073, N'Helium', N'3d03af31-bb94-4dd5-bccd-9592cd0bc74c', CAST(N'2014-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2084, N'HEMANGEOL (Oral Liquid)', 1353766, N'Propranolol', N'b6f9dd2a-632b-87eb-70f0-b2064d7ed48a', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2085, N'HEMOBAN (Mucosal)', 957393, N'aluminum chloride', N'7054c4ea-fee2-4627-aff2-e99ceb1080c7', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2086, N'HEMOCYTE (Oral Pill)', 1595799, N'Ferrous fumarate', N'b8ea96eb-099a-41c0-b894-dd4fc9428863', CAST(N'2014-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2087, N'HEMOCYTE-F (Oral Pill)', 1595799, N'Ferrous fumarate', N'c484c59d-4178-4283-8e6c-e3a4567a78f1', CAST(N'2014-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2088, N'HEMOFIL (Injectable)', 1352213, N'Factor VIII', N'b8953ff7-3bba-4a0b-a486-f26fb81f05d9', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2089, N'Heparin, porcine (Injectable)', 19055137, N'heparin, porcine', N'7014808d-cec9-4b2c-8eb5-940493e356ab', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2090, N'HEPSERA (Oral Pill)', 1729323, N'adefovir', N'80595d45-2224-47d1-bd5c-4b11a824e5bd', CAST(N'2010-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2091, N'HERCEPTIN (Injectable)', 1387104, N'trastuzumab', N'492dbdb2-077e-4064-bff3-372d6af0a7a2', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2092, N'HESPAN (Injectable)', 19077117, N'Hetastarch', N'6d1c2560-f289-49a9-9471-71199492fd8e', CAST(N'2014-02-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2093, N'Hetastarch (Injectable)', 19077117, N'Hetastarch', N'6d1c2560-f289-49a9-9471-71199492fd8e', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2094, N'HETLIOZ (Oral Pill)', 44814600, N'tasimelteon', N'ca4a9b63-708e-49e9-8f9b-010625443b90', CAST(N'2014-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2095, N'Hexachlorophene (Soap)', 1768734, N'Hexachlorophene', N'41ee3eb5-c3b6-4b50-87c6-04a723ca4c35', CAST(N'2013-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2096, N'HEXALEN (Oral Pill)', 1368823, N'Altretamine', N'90a5e59a-bee8-404a-ad69-fabddeaf27f9', CAST(N'2007-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2097, N'Hexylresorcinol (Oral Lozenge)', 969004, N'Hexylresorcinol', N'e282ba65-b674-45d5-82c2-ab4e4a95243b', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2098, N'HIBERIX (Injectable)', 529118, N'Haemophilus influenzae type b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine', N'745ff8df-1618-4b76-9aa1-6f42752c0dda', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2099, N'HIBICLENS (Soap)', 1790812, N'Chlorhexidine', N'910c0491-ec27-4164-a7ab-d89e82a2bdb5', CAST(N'2013-10-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2100, N'HIBISTAT (Topical)', 1790812, N'Chlorhexidine', N'c6f941d6-527e-4fb8-9581-8532dd84e7a8', CAST(N'2011-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2101, N'HIPREX (Oral Pill)', 904356, N'Methenamine', N'7488ad5c-376d-47a2-8c23-47eff94547fb', CAST(N'2012-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2102, N'Histamine (Injectable)', 19069019, N'Histamine', N'1159c24c-d9ce-49a2-b0bd-dc27c710f146', CAST(N'2009-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2103, N'Histamine (Topical)', 19069019, N'Histamine', N'3801584a-6212-4ad0-8d6e-ef60e7edae14', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2104, N'Histamine/Menthol (Topical)', 19069019, N'Histamine', N'd123deae-d9ef-45ce-81ed-2d79384b1298', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2105, N'HISTEX PE (Oral Liquid)', 1135766, N'Phenylephrine', N'26c2117e-804e-4132-8707-fc0302fb9090', CAST(N'2014-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2106, N'HISTEX SYRUP (Oral Liquid)', 1105889, N'Triprolidine', N'cc466d33-cf3e-4f1c-a794-6d3d79903adf', CAST(N'2014-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2107, N'Homatropine (Ophthalmic)', 1101703, N'homatropine', N'7d64b0e4-10c3-44b6-ac95-ededde5fda71', CAST(N'2015-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2108, N'Homatropine/HYDROcodone (Oral Liquid)', 1101703, N'homatropine', N'0184de92-e728-4390-95f6-a463f583416a', CAST(N'2015-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2109, N'Homatropine/HYDROcodone (Oral Pill)', 1101703, N'homatropine', N'6c0bba34-07db-42f5-9e5e-ad79b71b4276', CAST(N'2014-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2110, N'House dust mite extract, Dermatophagoides farinae (Injectable)', 40161821, N'house dust mite extract, Dermatophagoides farinae', N'cbe1d24d-df77-4940-baf8-623993fa731b', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2111, N'House dust mite extract, Dermatophagoides pteronyssinus (Injectable)', 40161835, N'house dust mite extract, Dermatophagoides pteronyssinus', N'cbe1d24d-df77-4940-baf8-623993fa731b', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2112, N'House fly extract (Injectable)', 40175853, N'house fly extract', N'470d7a58-b8ee-4f97-a5e2-3e8c65096231', CAST(N'2009-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2113, N'HumaLOG (Injectable)', 1550023, N'Insulin Lispro', N'c5f75765-86b8-4926-b8c3-b42133ca7ac8', CAST(N'2012-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2114, N'HUMAN ALBUMIN GRIFOLS (Injectable)', 1344143, N'Albumin Human, USP', N'a43c5ed6-7423-4ee5-8acb-5fccc2d7b6cc', CAST(N'2014-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2115, N'Human Secretin (Injectable)', 19084212, N'Human Secretin', N'b4dfe70f-0a86-4488-9ba1-dcd8f86cbfcd', CAST(N'2007-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2116, N'Humicola grisea extract (Injectable)', 40228383, N'Humicola grisea extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2117, N'HUMULIN R (Injectable)', 1596977, N'Regular Insulin, Human', N'9ec3e28a-cea9-4e45-9057-e5bf8e37014c', CAST(N'2011-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2118, N'HURRICAINE (Mucosal)', 917006, N'Benzocaine', N'159d412c-6d1a-45d4-88c0-8c93960f946e', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2119, N'HURRICAINE (Oral Gel)', 917006, N'Benzocaine', N'1f3d68f6-afd6-42e7-b3e5-210228c8e7de', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2120, N'Hyaluronate (Injectable)', 787787, N'hyaluronate', N'f2b381d4-b181-4e88-a543-075917fc34ed', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2121, N'Hyaluronate/Urea (Topical)', 787787, N'hyaluronate', N'ce953fdf-a73a-4f7e-8946-959346990626', CAST(N'2011-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2122, N'Hyaluronidase (Injectable)', 19073699, N'Hyaluronidase', N'21fbd12e-4a12-4ad1-ad01-964cd5ec9996', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2123, N'Hyaluronidase, Human (Injectable)', 19088713, N'Hyaluronidase, Human', N'1e547159-daa7-4b5d-9ad5-5261ea866e13', CAST(N'2015-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2124, N'HYBRISIL (Topical)', 1506270, N'Methylprednisolone', N'f8432414-d8a6-4597-a226-61fd09a80e0c', CAST(N'2011-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2125, N'HYCET (Oral Liquid)', 1125315, N'Acetaminophen', N'00ff75bc-aebe-4c55-adea-1c49cf1addb3', CAST(N'2014-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2126, N'HYCODAN (Oral Liquid)', 1101703, N'homatropine', N'08bb4884-403b-4163-bee7-5aa40992ac4e', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2127, N'hydrALAZINE (Injectable)', 1373928, N'Hydralazine', N'f34904dc-c945-4de4-8594-34e4f4ac1983', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2128, N'hydrALAZINE (Oral Pill)', 1373928, N'Hydralazine', N'b96e789d-0f29-42fe-818f-3ff2f579e5fd', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2129, N'HydrALAZINE/Hydrochlorothiazide/Reserpine (Oral Pill)', 1373928, N'Hydralazine', N'bdd0658e-38fb-4726-9720-09c502138ab0', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2130, N'HydrALAZINE/Isosorbide Dinitrate (Oral Pill)', 1373928, N'Hydralazine', N'e1e63cd5-d1e4-4af5-bad5-1ad41ea46b00', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2131, N'HYDREA (Oral Pill)', 1377141, N'hydroxyurea', N'050bd2a2-a125-721a-e366-255c5466f018', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2132, N'HYDRO (Topical)', 906914, N'Urea', N'c1fc0ed7-6383-455a-98c3-ef44b312fc0d', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2133, N'Hydrochlorothiazide (Oral Pill)', 974166, N'Hydrochlorothiazide', N'f82b7d4f-8cf2-4502-b066-d2d7c3a7a6fe', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2134, N'Hydrochlorothiazide/Irbesartan (Oral Pill)', 974166, N'Hydrochlorothiazide', N'72fa8cd4-bc2a-4a7d-8feb-2d60e077d801', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2135, N'Hydrochlorothiazide/Lisinopril (Oral Pill)', 974166, N'Hydrochlorothiazide', N'00f67e1a-6999-4295-9c9f-fcb1ce9711b8', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2136, N'Hydrochlorothiazide/Losartan (Oral Pill)', 974166, N'Hydrochlorothiazide', N'90b479ce-1a28-4b14-b33a-7ba374305079', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2137, N'Hydrochlorothiazide/Methyldopa (Oral Pill)', 974166, N'Hydrochlorothiazide', N'5bf74178-66b8-44d4-a87d-1fd760b94ad3', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2138, N'Hydrochlorothiazide/Metoprolol (Oral Pill)', 974166, N'Hydrochlorothiazide', N'faaf13ce-5d8d-4c57-a49f-a7a73daa41a5', CAST(N'2015-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2139, N'Hydrochlorothiazide/Moexipril (Oral Pill)', 974166, N'Hydrochlorothiazide', N'621614de-4a5c-43c8-af77-e98128f01c8b', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2140, N'Hydrochlorothiazide/Olmesartan (Oral Pill)', 974166, N'Hydrochlorothiazide', N'91d45442-4232-4111-9dd8-0d787085af6d', CAST(N'2014-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2141, N'Hydrochlorothiazide/Quinapril (Oral Pill)', 974166, N'Hydrochlorothiazide', N'ae34a8e0-5f82-4aa8-d71c-b7a3f720925c', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2142, N'Hydrochlorothiazide/Spironolactone (Oral Pill)', 974166, N'Hydrochlorothiazide', N'66134130-5718-483b-a076-36ecdb0add34', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2143, N'Hydrochlorothiazide/Telmisartan (Oral Pill)', 974166, N'Hydrochlorothiazide', N'b88054b3-fafa-4b4e-acf5-5294e5555720', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2144, N'Hydrochlorothiazide/Triamterene (Oral Pill)', 974166, N'Hydrochlorothiazide', N'5171e219-38cb-4f4d-b33b-abbd713bf642', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2145, N'Hydrochlorothiazide/Valsartan (Oral Pill)', 974166, N'Hydrochlorothiazide', N'6b6ad6c8-22f8-456b-bc54-a02fb6cbea8c', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2146, N'HYDROcodone/Ibuprofen (Oral Pill)', 1174888, N'Hydrocodone', N'd86ced85-6767-4218-bf88-e294b44d1e74', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2147, N'HYDROcodone/Pseudoephedrine (Oral Liquid)', 1174888, N'Hydrocodone', N'd8344453-c7c0-4e4b-aab7-8447ef28322a', CAST(N'2014-12-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2148, N'Hydrocortisone (Injectable)', 975125, N'Hydrocortisone', N'b2b4c961-363d-49fe-b354-d59b39fd517a', CAST(N'2012-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2149, N'Hydrocortisone (Oral Pill)', 975125, N'Hydrocortisone', N'd4d2912e-d1e8-4b40-af88-59c87fa12318', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2150, N'Hydrocortisone (Rectal)', 975125, N'Hydrocortisone', N'a5b47406-b933-4f6b-96dc-db837bcccf77', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2151, N'Hydrocortisone (Topical)', 975125, N'Hydrocortisone', N'94a776de-aa08-4274-ab07-48de6e934791', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2152, N'Hydrocortisone/Iodoquinol (Topical)', 975125, N'Hydrocortisone', N'3d7278ee-2c8e-4df1-9372-d43403122945', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2153, N'Hydrocortisone/Lidocaine (Rectal)', 975125, N'Hydrocortisone', N'0db13203-e001-42fc-b3a2-7f189d171de3', CAST(N'2015-01-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2154, N'Hydrocortisone/Neomycin/Polymyxin B (Ophthalmic)', 975125, N'Hydrocortisone', N'64e4cb91-f5bd-4a2f-b92d-0a1341f40d35', CAST(N'2010-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2155, N'Hydrocortisone/Neomycin/Polymyxin B (Otic)', 975125, N'Hydrocortisone', N'f1995e7d-81c0-42c0-89fe-50634b6e2274', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2156, N'Hydrocortisone/Neomycin/Polymyxin B (Topical)', 975125, N'Hydrocortisone', N'e492b2b0-ad73-4866-c996-a1fcb12dbcad', CAST(N'2015-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2157, N'Hydrocortisone/Pramoxine (Rectal)', 975125, N'Hydrocortisone', N'fecf8380-3bb5-11e5-98c5-0002a5d5c51b', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2158, N'Hydrocortisone/Pramoxine (Topical)', 975125, N'Hydrocortisone', N'26beacc7-75b2-4592-a643-3b50ed860f23', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2159, N'Hydroflumethiazide (Oral Pill)', 1376289, N'Hydroflumethiazide', N'6153ef9e-77f0-4233-a5bc-3e3d1f732323', CAST(N'2006-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2160, N'Hydrofluoric Acid/Phosphoric acid/Sodium Fluoride (Oral Gel)', 976309, N'Hydrofluoric Acid', N'11d08dc0-fa26-4506-830c-d809f50c5411', CAST(N'2012-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2161, N'Hydrofluoric Acid/Sodium Fluoride (Oral Foam)', 976309, N'Hydrofluoric Acid', N'8f73af62-6124-4bf6-915d-4b913add7ad1', CAST(N'2011-02-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2162, N'Hydrogen Peroxide (Mouthwash)', 1776430, N'Hydrogen Peroxide', N'b1325ab5-6667-4f22-a625-8e91fe543c11', CAST(N'2015-03-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2163, N'Hydrogen Peroxide (Mucosal)', 1776430, N'Hydrogen Peroxide', N'f82230e0-a6eb-4d1e-8fea-0bf386d97c58', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2164, N'Hydrogen Peroxide (Topical)', 1776430, N'Hydrogen Peroxide', N'97fae8f6-bf62-4b4f-8d5c-5a3f6f7bd784', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2165, N'HYDROMET (Oral Liquid)', 1101703, N'homatropine', N'a324c912-a3ef-4296-b9a8-b0fec687eb06', CAST(N'2014-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2166, N'HYDROmorphone (Injectable)', 1126658, N'Hydromorphone', N'7122ccea-f35c-4816-b90a-6f12fdc808dd', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2167, N'HYDROmorphone (Oral Liquid)', 1126658, N'Hydromorphone', N'cc574063-6ede-4da7-82c4-7450c92b229b', CAST(N'2013-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2168, N'HYDROmorphone (Oral Pill)', 1126658, N'Hydromorphone', N'd42f2e61-f65a-42f2-bec5-2d248d788e78', CAST(N'2014-09-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2169, N'HYDROmorphone (Rectal)', 1126658, N'Hydromorphone', N'1bfbba46-1979-4797-a29e-d67718131686', CAST(N'2012-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2170, N'Hydroquinone (Topical)', 976778, N'hydroquinone', N'50c30793-472a-4196-ba41-5074686f7edc', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2171, N'HYDROSKIN (Topical)', 975125, N'Hydrocortisone', N'5d96dccc-5117-4a47-b0af-f2a2c09a0c8f', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2172, N'Hydroxocobalamin (Injectable)', 1377023, N'Hydroxocobalamin', N'd35ad609-70d3-4eb2-8276-c9631ca815d1', CAST(N'2014-01-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2173, N'Hydroxychloroquine (Oral Pill)', 1777087, N'Hydroxychloroquine', N'1959d645-6b82-4f4d-b1f2-af644dec7c8f', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2174, N'Hydroxyethyl starch 130-0.4 (Injectable)', 43012293, N'hydroxyethyl starch 130-0.4', N'be7729c9-f7cf-483b-bafe-0d42d6b62f06', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2175, N'Hydroxypropylcellulose (Implant)', 19002257, N'hydroxypropylcellulose', N'cc7a6a52-0b77-4df7-8403-dd21c1334f6c', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2176, N'Hydroxyurea (Oral Pill)', 1377141, N'hydroxyurea', N'b9514ae5-79ae-4cc2-9d7f-c8f7806d1694', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2177, N'hydrOXYzine (Injectable)', 777221, N'Hydroxyzine', N'7def1daa-c800-4263-9526-eac8d53e4636', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2178, N'hydrOXYzine (Oral Liquid)', 777221, N'Hydroxyzine', N'85e3c789-a740-4a09-a810-9808c3d0f7d9', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2179, N'hydrOXYzine (Oral Pill)', 777221, N'Hydroxyzine', N'e0f40d4e-4167-4641-a8a4-599bc1877077', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2180, N'HYLENEX (Injectable)', 19088713, N'Hyaluronidase, Human', N'3023cc56-ed4b-4e87-b3a1-81b20943f658', CAST(N'2015-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2181, N'HYOPHEN (Oral Pill)', 711452, N'Benzoate', N'2c1f0f4c-e57b-4df5-9a58-41d39c3d8893', CAST(N'2010-10-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2182, N'Hyoscyamine (Injectable)', 923672, N'Hyoscyamine', N'dd2e786c-29a7-40f8-a5f3-7641413f5036', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2183, N'Hyoscyamine (Oral Disintegrating)', 923672, N'Hyoscyamine', N'e5fd8476-418a-4149-a688-205ea943b30c', CAST(N'2013-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2184, N'Hyoscyamine (Oral Liquid)', 923672, N'Hyoscyamine', N'6f31e729-e36b-4b6e-98de-88077b29bf2b', CAST(N'2014-12-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2185, N'Hyoscyamine (Oral Pill)', 923672, N'Hyoscyamine', N'480d688d-2103-443c-90cc-feb861bdce13', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2186, N'Hyoscyamine (Sublingual)', 923672, N'Hyoscyamine', N'c9623ab9-ead1-4ae5-94d8-e18384b1e30c', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2187, N'Hyoscyamine/Methenamine/Methylene blue/Phenyl salicylate/Sodium Phosphate, Monobasic (Oral Pill)', 923672, N'Hyoscyamine', N'263ed7eb-a390-4a26-9985-16ac883f4bfc', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2188, N'Hyoscyamine/Methenamine/Methylene blue/Sodium Phosphate, Monobasic (Oral Pill)', 923672, N'Hyoscyamine', N'f650dd78-615c-42d3-9b2d-3a989039d80c', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2189, N'Hypochlorite (Topical)', 44784806, N'Hypochlorite', N'3d72b72c-2949-4eb6-b64c-6c4aef0eddd9', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2190, N'Hypomyces perniciosus extract (Injectable)', 40244381, N'Hypomyces perniciosus extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2191, N'Hypromellose (Ophthalmic)', 902251, N'hypromellose', N'785199ea-3bd6-48ea-afd0-e0c4cf39652b', CAST(N'2014-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2192, N'Hypromellose/Naphazoline/Polysorbate 80/Zinc Sulfate (Ophthalmic)', 902251, N'hypromellose', N'9a1ce5e2-c3da-424d-b754-cf2de8c655e3', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2193, N'HYZAAR (Oral Pill)', 974166, N'Hydrochlorothiazide', N'd7d7dcc9-c3e0-45e5-abcd-135a6d8c8dab', CAST(N'2014-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2194, N'I (Oral Pill)', 715997, N'donepezil', N'd9d15879-3883-4963-9c93-73d5251484fa', CAST(N'2011-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2195, N'Ibandronate (Oral Pill)', 1512480, N'Ibandronate', N'bcac6719-ad8c-e4a5-c32a-af1c0511c591', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2196, N'Ibrutinib (Oral Pill)', 44507848, N'Ibrutinib', N'0dfd0279-ff17-4ea9-89be-9803c71bab44', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2197, N'IBU (Oral Pill)', 1177480, N'Ibuprofen', N'181e3925-4a81-4012-b2b6-6b247e2eb663', CAST(N'2015-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2198, N'Ibuprofen (Chewable)', 1177480, N'Ibuprofen', N'ce54a65b-2913-450f-b7af-b23c54fbb742', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2199, N'Ibuprofen (Injectable)', 1177480, N'Ibuprofen', N'1eaa7790-f1a1-4f51-b10a-cbbaf033f684', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2200, N'Ibuprofen (Oral Liquid)', 1177480, N'Ibuprofen', N'17bd342d-8eb3-4663-88f5-2e7c90254dc7', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2201, N'Ibuprofen (Oral Pill)', 1177480, N'Ibuprofen', N'5715910e-33be-49bd-8a1f-eeb46320e28d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2202, N'Ibuprofen/oxyCODONE (Oral Pill)', 1177480, N'Ibuprofen', N'a95425ac-6ab7-45e4-820d-bddffde30a0f', CAST(N'2013-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2203, N'Ibuprofen/Phenylephrine (Oral Pill)', 1177480, N'Ibuprofen', N'525cc513-9945-43fe-af1b-e168d562a1db', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2204, N'Ibuprofen/Pseudoephedrine (Oral Liquid)', 1177480, N'Ibuprofen', N'b6c844c4-4ba6-4827-8db8-5f3f5e99b0c2', CAST(N'2011-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2205, N'Ibuprofen/Pseudoephedrine (Oral Pill)', 1177480, N'Ibuprofen', N'faa26964-a140-4d30-ab1e-19f49f9458ac', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2206, N'Ibutilide (Injectable)', 19050087, N'ibutilide', N'c25d21e7-6136-4a7a-b139-12f53116fc3d', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2207, N'Ichthammol (Topical)', 977949, N'ichthammol', N'9698b98c-bca1-4a7e-8a67-05d2a2b770a5', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2208, N'ICLUSIG (Oral Pill)', 43013182, N'ponatinib', N'807f988e-117b-4497-934d-73aa78baac71', CAST(N'2014-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2209, N'ICY HOT (Topical)', 901656, N'Menthol', N'4ce2b823-7ef5-4cca-a2d8-2fe781bc958e', CAST(N'2012-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2210, N'ICY HOT (Transdermal)', 901656, N'Menthol', N'd4e13689-8973-4041-9f33-e710547dcdee', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2211, N'ICY HOT WITH METHYL SALICYLATE (Topical)', 901656, N'Menthol', N'40c8c02f-fa5f-4e80-81a0-48271fa6f94b', CAST(N'2011-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2212, N'IDAMYCIN (Injectable)', 19078097, N'Idarubicin', N'0a5a6d93-cc1e-4d7f-8da1-446c134503b3', CAST(N'2015-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2213, N'IDArubicin (Injectable)', 19078097, N'Idarubicin', N'615d206a-b178-4ff4-b6c1-7e349099f3c7', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2214, N'Idelalisib (Oral Pill)', 45776944, N'idelalisib', N'efbdafa9-d18c-4e85-b4a2-1e620fc74e50', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2215, N'IFEREX (Oral Pill)', 1300751, N'Polysaccharide iron complex', N'968c74e0-0510-4a0e-add2-37af97fc6928', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2216, N'IFEX (Injectable)', 19078187, N'Ifosfamide', N'b7241707-7538-4d1a-91e7-3a25a91e0b9a', CAST(N'2015-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2217, N'Ifosfamide (Injectable)', 19078187, N'Ifosfamide', N'f6fef680-884f-46fc-bf81-0ef7c5db6f32', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2218, N'Iloperidone (Oral Pill)', 19017241, N'iloperidone', N'43452bf8-76e7-47a9-a5d8-41fe84d061f0', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2219, N'ILOTYCIN (Ophthalmic)', 1746940, N'Erythromycin', N'9b1c6c13-4562-4c8e-a8bb-42493dc5cadb', CAST(N'2010-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2220, N'ILUVIEN (Implant)', 996541, N'fluocinolone', N'4400e471-7402-11df-93f2-0800200c9a66', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2221, N'IMBRUVICA (Oral Pill)', 44507848, N'Ibrutinib', N'0dfd0279-ff17-4ea9-89be-9803c71bab44', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2222, N'Imiglucerase (Injectable)', 1348407, N'imiglucerase', N'df60f030-866b-4374-a31f-8ae3f6b45c38', CAST(N'2012-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2223, N'Imipramine (Oral Pill)', 778268, N'Imipramine', N'3361779c-095c-45dc-8a85-7626652ff75f', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2224, N'Imiquimod (Topical)', 981691, N'imiquimod', N'0c3aed27-7b3f-442e-9f60-f2f5c672c85d', CAST(N'2015-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2225, N'IMITREX (Oral Pill)', 1140643, N'Sumatriptan', N'040abcc1-cc1c-4f00-b302-36070611f7b2', CAST(N'2012-10-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2226, N'Immunoglobulin G (Injectable)', 19117912, N'Immunoglobulin G', N'88eac3b8-55a5-4451-9d25-c30e43ab7068', CAST(N'2015-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2227, N'IMODIUM (Oral Liquid)', 991876, N'Loperamide', N'76a976d5-8bee-4158-a94d-7fbfc5544fd4', CAST(N'2011-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2228, N'IMODIUM (Oral Pill)', 991876, N'Loperamide', N'01da76d0-1979-4c45-9d39-c72ae4e4ffe2', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2229, N'IMOVAX (Injectable)', 544505, N'rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated', N'ba8d4e72-f452-4859-ae6f-3644b4b0a78c', CAST(N'2013-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2230, N'IMPAVIDO (Oral Pill)', 44816310, N'miltefosine', N'd6658aeb-7bc1-4eef-ad0d-0a873ddbecf5', CAST(N'2014-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2231, N'INAPSINE (Injectable)', 739323, N'Droperidol', N'dbc2d9eb-eefe-454d-a8c3-55cec840d54f', CAST(N'2011-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2232, N'Indapamide (Oral Pill)', 978555, N'Indapamide', N'a8a4ec2c-9d4b-482b-ad29-88185c96db74', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2233, N'Indian wormwood sage pollen extract (Injectable)', 40224992, N'Indian wormwood sage pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2234, N'Indinavir (Oral Pill)', 1711523, N'Indinavir', N'01c5574c-1056-49c6-af20-e950db3f4139', CAST(N'2012-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2235, N'Indomethacin (Injectable)', 1178663, N'Indomethacin', N'30e38747-c553-4e2d-bc23-634e1dd90b8d', CAST(N'2014-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2236, N'Indomethacin (Oral Pill)', 1178663, N'Indomethacin', N'3d5df05a-f4af-48d8-b880-97dfb92e900c', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2237, N'Indomethacin (Rectal)', 1178663, N'Indomethacin', N'a8ed14ef-cd4b-3be7-0b5f-b677c72d2e88', CAST(N'2011-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2238, N'Indomethacin XR (Oral Pill)', 1178663, N'Indomethacin', N'85014b51-1354-4d16-9995-3ee33a7155fa', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2239, N'Inert Ingredients (Oral Pill)', 19127890, N'Inert Ingredients', N'39988aa6-8f68-40e8-9bdd-c40a3bdaad61', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2240, N'INFASURF (Inhalant)', 19089891, N'calfactant', N'315c128a-272d-4c57-bfbe-1a8b3402af08', CAST(N'2011-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2241, N'INFED (Injectable)', 1381661, N'Iron-Dextran Complex', N'abacb7fa-2fc2-471e-9200-944eeac8ca2a', CAST(N'2014-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2242, N'INFERGEN (Injectable)', 1781314, N'interferon alfacon-1', N'a7248eca-45d6-472d-8c2a-d8887c2594d5', CAST(N'2008-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2243, N'Influenza A-California-7-2009-(H1N1)v-like virus vaccine (Injectable)', 40166605, N'influenza A-California-7-2009-(H1N1)v-like virus vaccine', N'fc5cfd1c-1ff5-4cfa-b544-db8d7f26d46f', CAST(N'2009-12-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2244, N'INFUMORPH (Injectable)', 1110410, N'Morphine', N'db9ac9e3-d761-4a99-9f34-4946ebe8f255', CAST(N'2012-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2245, N'INJECTAFER (Injectable)', 43560392, N'ferric carboxymaltose', N'517b4a19-45b3-4286-9f6a-ced4e10447de', CAST(N'2013-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2246, N'INLYTA (Oral Pill)', 42709322, N'axitinib', N'84137882-e000-47da-bd5b-fa76ab3c76f9', CAST(N'2014-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2247, N'INNOFEM (Oral Pill)', 1548195, N'Estradiol', N'10e1d3ef-808e-47e4-a050-93a5918b1085', CAST(N'2008-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2248, N'INNOHEP (Injectable)', 1308473, N'tinzaparin', N'1513b960-d9d1-11de-8a1e-0002a5d5c51b', CAST(N'2010-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2249, N'INSPRA (Oral Pill)', 1309799, N'eplerenone', N'c7bc9486-8e61-4ba1-827f-2cd8c304b454', CAST(N'2011-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2250, N'INSTA-CHAR (Oral Liquid)', 1701928, N'Activated Charcoal', N'6285e38c-40bf-415d-bf68-68b38e318ab5', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2251, N'Insulin analog, Detemir (Injectable)', 1516976, N'insulin detemir', N'2b8d9730-686b-444b-9941-7b5877255924', CAST(N'2011-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2252, N'Insulin analog, Glargine (Injectable)', 1502905, N'Insulin Glargine', N'13cfe263-6a6a-4b0f-94f4-771ab6a105c0', CAST(N'2013-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2253, N'Insulin, human isophane (Injectable)', 1596914, N'NPH Insulin, Human', N'99c995f1-522e-42aa-b45a-117e0af77d81', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2254, N'Insulin, human mixed (Injectable)', 1596914, N'NPH Insulin, Human', N'0cc57309-01ef-4a02-8d27-b981c768135a', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2255, N'Insulin, human regular (Injectable)', 1596977, N'Regular Insulin, Human', N'9ec3e28a-cea9-4e45-9057-e5bf8e37014c', CAST(N'2014-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2256, N'Insulin, human, rDNA origin (Inhalant)', 1588986, N'insulin human, rDNA origin', N'4e25a881-dfc3-44a2-9ede-49f7443776d8', CAST(N'2008-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2257, N'INTELENCE (Oral Pill)', 1758536, N'etravirine', N'1b5a2dc7-0570-4977-876d-88b4176844a1', CAST(N'2013-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2258, N'Interferon Alfa-2b (Injectable)', 1380068, N'Interferon Alfa-2b', N'30789790-8317-49f9-b97b-8c5ba17b53d2', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2259, N'Interferon alfacon-1 (Injectable)', 1781314, N'interferon alfacon-1', N'a7248eca-45d6-472d-8c2a-d8887c2594d5', CAST(N'2008-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2260, N'Interferon beta-1a (Injectable)', 722424, N'Interferon beta-1a', N'0de49d64-3e18-494c-bf14-bc152247c798', CAST(N'2012-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2261, N'Interferon beta-1b (Injectable)', 713196, N'interferon beta-1b', N'261fde67-efb2-4bd7-947e-4f68a56e76ff', CAST(N'2013-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2262, N'Interferon gamma-1b (Injectable)', 1380191, N'Interferon gamma-1b', N'498b2231-65e8-4b27-947b-8d1f6f91289c', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2263, N'INTERMEZZO (Sublingual)', 744740, N'zolpidem', N'913b6cfe-1fb0-44a8-817a-26374bbce995', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2264, N'INTRALIPID (Injectable)', 19013789, N'EGG YOLK PHOSPHOLIPIDS', N'55609586-f0b4-42e6-8dd9-cd090afb5dca', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2265, N'INTRON A (Injectable)', 1380068, N'Interferon Alfa-2b', N'30789790-8317-49f9-b97b-8c5ba17b53d2', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2266, N'INVIRASE (Oral Pill)', 1746244, N'Saquinavir', N'b8b53129-06ab-4143-b9b7-7675e49a52ef', CAST(N'2010-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2267, N'INVOKAMET (Oral Pill)', 43526465, N'canagliflozin', N'6868666b-c25e-40d1-9d1f-306bbe9390c1', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2268, N'INZO (Topical)', 907879, N'Miconazole', N'3afb78ad-af6e-47f6-b142-6cce45bd5e9e', CAST(N'2012-04-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2269, N'Iodine (Topical)', 1780601, N'Iodine', N'615e3547-4e5e-44fc-8f89-712243d30a1e', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2270, N'Iodine povacrylex/Isopropyl Alcohol (Topical)', 19125582, N'iodine povacrylex', N'd35a9f96-a0db-4060-9f9d-ba2117288fd0', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2271, N'Iodine/Potassium Iodide (Oral Liquid)', 1780601, N'Iodine', N'cf5b0102-4f76-4f9e-907a-bf9425890aea', CAST(N'2014-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2272, N'Iodine/Potassium Iodide (Topical)', 1780601, N'Iodine', N'7d8f4f37-948c-4740-8e23-2f23e47ebd5b', CAST(N'2014-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2273, N'IOPIDINE (Ophthalmic)', 919986, N'apraclonidine', N'de798d0d-a93c-40fb-95ea-10a4e6b287b7', CAST(N'2011-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2274, N'IOSAT (Oral Pill)', 19049909, N'Potassium Iodide', N'ea98aef8-93b6-4fac-be35-eb17a1a04a92', CAST(N'2014-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2275, N'Ipratropium (Inhalant)', 1112921, N'Ipratropium', N'769febba-671d-476b-b0c8-71489a2f9d20', CAST(N'2014-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2276, N'IQUIX (Ophthalmic)', 1742253, N'Levofloxacin', N'067ea8ec-99a3-4a0b-9116-4ffd6160b24b', CAST(N'2010-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2277, N'Irbesartan (Oral Pill)', 1347384, N'irbesartan', N'bba6b8f0-daf5-4b0b-bd07-4f59aa679077', CAST(N'2015-05-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2278, N'IRESSA (Oral Pill)', 1319193, N'gefitinib', N'827d60e8-7e07-41b7-c28b-49ef1c4a5a41', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2279, N'Irinotecan (Injectable)', 1367268, N'irinotecan', N'407e0758-9e2e-4e45-8c1b-10cfd2115b1f', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2280, N'Iron Carbonyl (Chewable)', 1400498, N'Iron Carbonyl', N'5c8d104d-feb4-4a1b-aa1c-b2ebbcbc5ccc', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2281, N'Iron Carbonyl (Oral Liquid)', 1400498, N'Iron Carbonyl', N'a7cd1b35-93d6-eb31-3924-eda5c7c0b335', CAST(N'2014-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2282, N'Iron-Dextran Complex (Injectable)', 1381661, N'Iron-Dextran Complex', N'77f5ae2a-8cd3-4f01-bddd-8158f932c8db', CAST(N'2014-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2283, N'ISENTRESS (Oral Pill)', 1712889, N'raltegravir', N'e463b253-ad05-4e5c-8a3b-595d55c56ed7', CAST(N'2013-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2284, N'ISMO (Oral Pill)', 1383815, N'Isosorbide', N'ec09ab1c-52fa-4f41-bf65-a632dce8f097', CAST(N'2007-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2285, N'ISMOTIC PB (Oral Liquid)', 1383815, N'Isosorbide', N'f305b18b-8506-4414-87a1-10aa3b76a691', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2286, N'ISOCAINE (Injectable)', 702774, N'Mepivacaine', N'53eda85c-65cd-4d6c-b4b7-eb3ae2942ed0', CAST(N'2007-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2287, N'ISOCAINE WITH LEVONORDEFRIN (Injectable)', 19015395, N'Levonordefrin', N'53eda85c-65cd-4d6c-b4b7-eb3ae2942ed0', CAST(N'2007-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2288, N'Isocarboxazid (Oral Pill)', 781705, N'Isocarboxazid', N'ac387aa0-3f04-4865-a913-db6ed6f4fdc5', CAST(N'2012-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2289, N'Isoflurane (Inhalant)', 782043, N'Isoflurane', N'd6851c71-0c2f-43f6-883c-a43fe894985d', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2290, N'ISONARIF (Oral Pill)', 1782521, N'isoniazid', N'1d3f27ec-1616-40fd-bc4f-91bb1744ceb0', CAST(N'2012-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2291, N'Isoniazid (Oral Liquid)', 1782521, N'isoniazid', N'0044ca87-ab7e-4955-a77f-e8fd665ce2ae', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2292, N'Isoniazid (Oral Pill)', 1782521, N'isoniazid', N'60a6b514-fa7f-4bc7-85b0-e5a14fa56b59', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2293, N'Isoniazid/Pyrazinamide/Rifampin (Oral Pill)', 1782521, N'isoniazid', N'429a2f62-9fe6-4299-b314-92a9d22b1381', CAST(N'2013-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2294, N'Isoniazid/Rifampin (Oral Pill)', 1782521, N'isoniazid', N'3cc36609-8e2d-4caa-a8e0-c0367e3e52df', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2295, N'Isopropyl Alcohol (Otic)', 19028106, N'Isopropyl Alcohol', N'cb566013-3fc4-4636-b214-3de64ce73b91', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2296, N'Isopropyl Alcohol (Topical)', 19028106, N'Isopropyl Alcohol', N'bc1cd6bf-99b6-48d5-ad59-f56bd3026d47', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2297, N'Isopropyl Alcohol/Povidone-Iodine (Topical)', 19028106, N'Isopropyl Alcohol', N'76615174-e530-4e88-a02c-2f7d0b5a5b04', CAST(N'2012-05-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2298, N'Isopropyl unoprostone (Ophthalmic)', 915829, N'isopropyl unoprostone', N'53d05ced-51dd-11de-8a39-0800200c9a66', CAST(N'2013-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2299, N'ISOPTIN XR (Oral Pill)', 1307863, N'Verapamil', N'6ae13cb4-0316-40d1-9216-c7d5556aaed3', CAST(N'2008-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2300, N'ISOPTO ALKALINE (Ophthalmic)', 902251, N'hypromellose', N'f1753a5b-7ba8-103d-6fe4-d93a3fc5f803', CAST(N'2014-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2301, N'ISOPTO CETAMIDE (Ophthalmic)', 1036252, N'Sulfacetamide', N'5a5d8fee-b42a-4f0c-a508-75c7c71bedb4', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2302, N'ISOPTOCARPINE (Ophthalmic)', 945286, N'Pilocarpine', N'22e4c7f4-bbd0-4e74-85da-bb56fc377568', CAST(N'2012-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2303, N'ISORDIL (Oral Pill)', 1383925, N'Isosorbide Dinitrate', N'0e5bc1a3-6e3c-4ab9-856f-fd953eacf867', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2304, N'Isosorbide (Oral Liquid)', 1383815, N'Isosorbide', N'f305b18b-8506-4414-87a1-10aa3b76a691', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2305, N'Isosorbide (Oral Pill)', 1383815, N'Isosorbide', N'b35a72bb-c06b-4671-8dc2-ce0ccdf45ce9', CAST(N'2015-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2306, N'Isosorbide Dinitrate (Oral Pill)', 1383925, N'Isosorbide Dinitrate', N'873add22-4b78-459c-8418-b5392072a2a9', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2307, N'Isosorbide Dinitrate (Sublingual)', 1383925, N'Isosorbide Dinitrate', N'8020edd0-b9e6-428c-a534-fb8f780fbdf1', CAST(N'2012-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2308, N'Isosorbide Dinitrate XR (Oral Pill)', 1383925, N'Isosorbide Dinitrate', N'bf6d4c62-14a4-423b-bdbf-676375f5cb8d', CAST(N'2014-11-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2309, N'ISOtretinoin (Oral Pill)', 984232, N'Isotretinoin', N'ee862463-77c0-4694-bba8-97274f13963f', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2310, N'Isoxsuprine (Oral Pill)', 1384360, N'Isoxsuprine', N'6baec489-724b-4184-9529-7b9ca3573025', CAST(N'2012-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2311, N'Isradipine (Oral Pill)', 1326012, N'Isradipine', N'ac51d3e3-ed76-e033-e1d6-1ffbd14d94c2', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2312, N'ISTALOL (Ophthalmic)', 902427, N'Timolol', N'80fa20dc-b181-48be-83ce-d66a83753878', CAST(N'2012-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2313, N'ISTODAX (Injectable)', 40168385, N'romidepsin', N'6005c345-ccf9-4fff-8660-3fd73485b0d9', CAST(N'2010-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2314, N'ITCH-X (Topical)', 919681, N'Benzyl Alcohol', N'03f85dbb-a13a-3126-e054-00144ff8d46c', CAST(N'2014-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2315, N'Itraconazole (Oral Pill)', 1703653, N'Itraconazole', N'6242b7ad-eaa0-a524-b6e0-ec33e63407db', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2316, N'Ivermectin (Topical)', 1784444, N'Ivermectin', N'4c5557cd-c4cf-11df-851a-0800200c9a66', CAST(N'2012-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2317, N'IVY BLOCK (Topical)', 915518, N'bentoquatam', N'd3b3f56d-d1d5-4435-8ac7-a2118f108a9b', CAST(N'2012-05-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2318, N'IVY-DRY CREAM (Topical)', 919681, N'Benzyl Alcohol', N'5fe81556-5b5f-4765-9136-796e4974aed0', CAST(N'2013-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2319, N'Jack pine pollen extract (Injectable)', 40228279, N'jack pine pollen extract', N'3b904f52-6163-4095-a456-11b3018b227a', CAST(N'2009-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2320, N'JALYN (Oral Pill)', 989482, N'Dutasteride', N'f96c6acd-4d02-4ece-bd54-2d5a35aab7f5', CAST(N'2012-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2321, N'JANTOVEN (Oral Pill)', 1310149, N'Warfarin', N'f11079c4-f085-4558-bee9-c159525b2497', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2322, N'JANUMET (Oral Pill)', 1503297, N'Metformin', N'e1af8ccb-ad50-452b-af44-022c9a0cb0ed', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2323, N'JANUVIA (Oral Pill)', 1580747, N'sitagliptin', N'29f3dcc4-1ca9-46c5-aa12-9ba76caff326', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2324, N'Japanese black pine pollen extract (Injectable)', 40173046, N'Japanese black pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2325, N'JARDIANCE (Oral Pill)', 45774751, N'empagliflozin', N'faf3dd6a-9cd0-39c2-0d2e-232cb3f67565', CAST(N'2015-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2326, N'J-COF DHC (Oral Liquid)', 1130863, N'Brompheniramine', N'4de68448-1f01-4ca1-b002-15589999de0f', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2327, N'Jerusalem oak pollen extract (Injectable)', 40228461, N'Jerusalem oak pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2328, N'JETREA (Injectable)', 42904298, N'ocriplasmin', N'390682b7-72c4-11e1-b0c4-0800200c9a66', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2329, N'JINTELI (Oral Pill)', 1549786, N'Ethinyl Estradiol', N'd667ca75-1a17-43fc-9077-f25ce0908f8d', CAST(N'2015-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2330, N'J-MAX (Oral Liquid)', 1163944, N'Guaifenesin', N'f8376d51-3fa8-4ac5-b074-83e3c81b96ba', CAST(N'2011-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2331, N'J-MAX DHC (Oral Liquid)', 1189596, N'dihydrocodeine', N'61e61344-bf91-4742-be57-d74b30cfa4ad', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2332, N'Johnson grass smut extract (Injectable)', 40161260, N'Johnson grass smut extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2333, N'Jute fiber extract (Injectable)', 40161738, N'jute fiber extract', N'd71013ab-718c-4cb0-ae1a-31fdd6db8851', CAST(N'2009-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2334, N'KADIAN XR (Oral Pill)', 1110410, N'Morphine', N'58159bbc-d862-4a2a-8486-874e0007487b', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2335, N'KALETRA (Oral Pill)', 1738170, N'lopinavir', N'dac2ea61-f5ce-45b8-b4aa-d761c5aecd74', CAST(N'2012-10-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2336, N'Kanamycin (Injectable)', 1784749, N'Kanamycin', N'd4865638-1259-4eef-a73c-fe919af6e850', CAST(N'2012-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2337, N'KAOPECTATE REFORMULATED AUG 2006 (Oral Liquid)', 933794, N'attapulgite', N'db9c4b93-d5f2-4237-973e-75535024b9f5', CAST(N'2015-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2338, N'KAOPECTATE REFORMULATED AUG 2006 (Oral Pill)', 933794, N'attapulgite', N'9d15ff85-9a7c-42fe-bd85-bcbf7711c277', CAST(N'2014-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2339, N'KAYEXALATE (Oral Liquid)', 19078126, N'Sodium polystyrene sulfonate', N'e7808d28-9d96-4dde-81bc-5c8357cba004', CAST(N'2013-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2340, N'KAZANO (Oral Pill)', 43013884, N'alogliptin', N'83cb7914-a683-47bb-a713-f2bc6a596bd2', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2341, N'KEDBUMIN (Injectable)', 1344143, N'Albumin Human, USP', N'57bd6811-8619-11e0-9d78-0800200c9a66', CAST(N'2013-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2342, N'KEFLEX (Oral Pill)', 1786621, N'Cephalexin', N'68fba58a-7748-4581-8432-f5286c46d90a', CAST(N'2014-02-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2343, N'KEMSTRO (Oral Disintegrating)', 715233, N'Baclofen', N'f133fe04-1550-4fa4-9dc4-652c27936bf2', CAST(N'2006-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2344, N'KENALOG (Injectable)', 903963, N'Triamcinolone', N'7bda15b1-d50d-4b1a-83a2-d9a450961bcf', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2345, N'KENALOG (Topical)', 903963, N'Triamcinolone', N'cdf6c80c-ddbd-498f-8897-3c0feebafe31', CAST(N'2013-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2346, N'Kentucky bluegrass pollen extract (Injectable)', 40161228, N'Kentucky bluegrass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2347, N'KEPPRA (Injectable)', 711584, N'Levetiracetam', N'90b553fe-4e94-4cce-b5df-ea3e6487930d', CAST(N'2011-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2348, N'KEPPRA (Oral Pill)', 711584, N'Levetiracetam', N'd317020c-0850-4a5b-b344-74ad10b0b089', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2349, N'KERALAC (Topical)', 906914, N'Urea', N'eccfae7f-4b53-4781-b198-f7c18366bfc9', CAST(N'2014-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2350, N'KERALYT (Shampoo)', 964407, N'Salicylic Acid', N'26e112b1-a64f-447c-a892-c83155ba1853', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2351, N'KERALYT 5 (Topical)', 964407, N'Salicylic Acid', N'f36792ab-d519-41af-a9dc-27e6ef0414ae', CAST(N'2013-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2352, N'KETALAR (Injectable)', 785649, N'Ketamine', N'9f675d38-d02f-455c-bc99-bac5924f5054', CAST(N'2012-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2353, N'Ketamine (Injectable)', 785649, N'Ketamine', N'57ec7d99-c36d-444e-8a2c-78a3b5798163', CAST(N'2015-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2354, N'KETEK (Oral Pill)', 1702911, N'telithromycin', N'ba1cca98-f350-4655-88e3-6ef990779fb9', CAST(N'2015-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2355, N'Ketoconazole (Oral Pill)', 985708, N'Ketoconazole', N'72c743b9-cb85-46e8-873a-b84e6d1b5250', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2356, N'Ketoconazole (Shampoo)', 985708, N'Ketoconazole', N'efbc6388-90ce-11de-b92c-8b7156d89593', CAST(N'2014-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2357, N'Ketoconazole (Topical)', 985708, N'Ketoconazole', N'7a18a4f4-5487-4cf6-a46d-58369dc5833c', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2358, N'Ketoprofen (Oral Pill)', 1185922, N'Ketoprofen', N'b3180408-a3c0-4e02-8535-dea390a52277', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2359, N'Ketorolac (Injectable)', 1136980, N'Ketorolac', N'62591551-a644-4b2c-a0de-982e906fabc3', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2360, N'Ketorolac (Ophthalmic)', 1136980, N'Ketorolac', N'8c90a3ac-ab76-405d-adc2-2f9ea3e3f250', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2361, N'Ketorolac (Oral Pill)', 1136980, N'Ketorolac', N'2837a082-3a34-6f81-5e43-45a70295686b', CAST(N'2015-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2362, N'Ketotifen (Ophthalmic)', 986117, N'Ketotifen', N'a08f22d5-4486-4bd8-a234-f8ce30e7d708', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2363, N'KINEVAC (Injectable)', 19067803, N'Sincalide', N'1408aabb-6982-48e5-ae9f-504ec43b0003', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2364, N'KLARON (Topical)', 1036252, N'Sulfacetamide', N'66ab38ea-5cea-47be-97f2-486517999fb0', CAST(N'2014-12-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2365, N'KlonoPIN (Oral Pill)', 798874, N'Clonazepam', N'542f22e8-dad2-47a8-93b6-30936715d73b', CAST(N'2013-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2366, N'KLOR-CON (Oral Liquid)', 19049105, N'Potassium Chloride', N'1cd90949-3588-49b4-adf3-b70f2ee8f2ef', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2367, N'KLOR-CON XR (Oral Pill)', 19049105, N'Potassium Chloride', N'65a86e85-b4ee-4244-8dfe-c078a9485410', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2368, N'KLOR-CON/EF (Effervescent)', 19027080, N'potassium bicarbonate', N'731d4e0d-e73b-41ef-a39f-c356d999734d', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2369, N'KOGENATE (Injectable)', 1352213, N'Factor VIII', N'6d2e4c97-0fb1-4ba4-9c58-3de071029e9b', CAST(N'2015-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2370, N'KOLA-PECTIN (Oral Liquid)', 937791, N'bismuth subsalicylate', N'5310c125-1b3b-4511-8a71-06aa42891dc1', CAST(N'2012-01-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2371, N'KOLORZ (Oral Foam)', 19069022, N'Sodium Fluoride', N'873dd35e-ed1a-4f2b-bd7d-237f73ed8f8e', CAST(N'2011-03-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2372, N'KONSYL (Oral Liquid)', 957797, N'Psyllium', N'6c876cf1-c2ab-4bdc-bb3e-ac2ce5863649', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2373, N'KONSYL (Oral Pill)', 957797, N'Psyllium', N'ab185f98-fe41-41e5-991d-0ea37dfa5958', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2374, N'KONSYL SENNA PROMPT (Oral Pill)', 957797, N'Psyllium', N'3b5e5397-fe64-48c5-8607-47c0a0900953', CAST(N'2013-12-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2375, N'KORLYM (Oral Pill)', 1508439, N'Mifepristone', N'542f3fae-8bc8-4f00-9228-e4b66c9ad6a9', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2376, N'K-PHOS (Oral Liquid)', 19027362, N'potassium phosphate', N'04557ab3-6d21-49b4-b849-744c75b8a630', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2377, N'K-PHOS NEUTRAL (Oral Pill)', 19027362, N'potassium phosphate', N'83376725-ee0f-40ad-bd90-31a61b9445cf', CAST(N'2014-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2378, N'K-PHOS NO 2 (Oral Pill)', 19027362, N'potassium phosphate', N'9f446400-c403-4971-879e-1341f7f7d9da', CAST(N'2014-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2379, N'KRISTALOSE (Oral Liquid)', 987245, N'Lactulose', N'535dd1ea-b567-49f7-9a84-8ea91e78c466', CAST(N'2012-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2380, N'KRYSTEXXA (Injectable)', 40226208, N'Pegloticase', N'5f4574d1-401f-4647-83e5-28c0f4a122a7', CAST(N'2013-04-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2381, N'K-TAB XR (Oral Pill)', 19049105, N'Potassium Chloride', N'a269accf-8520-48eb-8164-adaa3f462d67', CAST(N'2010-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2382, N'Labetalol (Injectable)', 1386957, N'Labetalol', N'f6e529bf-fe4d-4091-a3c2-774245b5f0a1', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2383, N'Labetalol (Oral Pill)', 1386957, N'Labetalol', N'4b0a80fc-51d6-4a70-8ebb-6a403ab91f4f', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2384, N'LAC-HYDRIN (Topical)', 19011035, N'Lactate', N'807054c6-2dae-4cc2-b790-674ab66cf79b', CAST(N'2010-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2385, N'LAC-HYDRIN TEN (Topical)', 19011035, N'Lactate', N'b73836e9-7ccc-41bb-b4ef-65ad2d865085', CAST(N'2014-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2386, N'LACRISERT (Implant)', 19002257, N'hydroxypropylcellulose', N'cc7a6a52-0b77-4df7-8403-dd21c1334f6c', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2387, N'Lactate (Topical)', 19011035, N'Lactate', N'736c1976-7448-4d04-8ca7-9455e4db96e8', CAST(N'2014-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2388, N'Lactulose (Oral Liquid)', 987245, N'Lactulose', N'8a42c3af-b08d-4fd4-b2f7-4eda676921f2', CAST(N'2015-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2389, N'LaMICtal (Oral Pill)', 705103, N'lamotrigine', N'22a9788c-5a9b-411e-844e-4a0b12d1d095', CAST(N'2011-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2390, N'LamISIL (Topical)', 1741309, N'terbinafine', N'c7f36b7b-f205-4de5-b083-acea57281871', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2391, N'LAMISIL DEFENSE (Topical)', 902950, N'Tolnaftate', N'c0ad1ce5-bdb3-43cc-8d07-84f250eb289f', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2392, N'lamiVUDine (Oral Pill)', 1704183, N'Lamivudine', N'bd55dd57-348c-4d78-b322-d1ae10279298', CAST(N'2015-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2393, N'lamiVUDine/Zidovudine (Oral Pill)', 1704183, N'Lamivudine', N'16da660b-9981-4d24-a14a-94c7744fce4f', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2394, N'lamoTRIgine (Chewable)', 705103, N'lamotrigine', N'a7455849-968d-4d85-8733-1e01701d7942', CAST(N'2015-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2395, N'lamoTRIgine (Oral Disintegrating)', 705103, N'lamotrigine', N'380bddae-5b31-4965-96de-97711d859d11', CAST(N'2015-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2396, N'lamoTRIgine (Oral Pill)', 705103, N'lamotrigine', N'9b057910-de40-3a17-2d52-8b520d5e0cbc', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2397, N'LANACANE (Topical)', 916802, N'Benzethonium', N'4b965cd3-bfe4-4aad-a52c-b747696baa1c', CAST(N'2013-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2398, N'Lanolin (Topical)', 19087317, N'Lanolin', N'3c8ac730-3e34-4368-9cb3-7047b7149fe3', CAST(N'2014-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2399, N'Lanolin/Petrolatum (Topical)', 19087317, N'Lanolin', N'beed4a17-c617-49c7-9954-470c02cfbbeb', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2400, N'LANOXIN (Injectable)', 1326303, N'Digoxin', N'bf0bcd81-38b8-482f-8865-61d8fb9a5c59', CAST(N'2013-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2401, N'LANOXIN (Oral Pill)', 1326303, N'Digoxin', N'0b96049b-e6b9-4ebb-bfe9-d5a73ed4f66b', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2402, N'Lansoprazole (Oral Disintegrating)', 929887, N'lansoprazole', N'7140f8d9-e478-4f69-a4eb-3fd4c9414576', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2403, N'Lansoprazole (Oral Pill)', 929887, N'lansoprazole', N'70bade45-0d35-46db-964e-a8ad9dd91646', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2404, N'Lanthanum carbonate (Chewable)', 990028, N'lanthanum carbonate', N'21bc55ec-5f23-4d0b-9488-d5b08b7c0fc2', CAST(N'2012-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2405, N'LANTISEPTIC (Topical)', 19087317, N'Lanolin', N'0fb56eed-66b6-4aa8-80b4-67015b99cd08', CAST(N'2013-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2406, N'LANTISEPTIC MULTI-PURPOSE (Topical)', 902616, N'Calamine', N'4cc157aa-cdab-4ac2-bec4-647d26a4d7ee', CAST(N'2013-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2407, N'LANTUS (Injectable)', 1502905, N'Insulin Glargine', N'13cfe263-6a6a-4b0f-94f4-771ab6a105c0', CAST(N'2013-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2408, N'LASTACAFT (Ophthalmic)', 40224159, N'alcaftadine', N'c192fecc-046d-4905-868f-b8200320309c', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2409, N'Latanoprost (Ophthalmic)', 954688, N'latanoprost', N'e2e7999b-ea0b-69d0-4ad0-c214601f97a7', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2410, N'LATRIX (Topical)', 906914, N'Urea', N'2b7add8d-2a6a-436c-9c1e-f94e67683efb', CAST(N'2010-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2411, N'LATUDA (Oral Pill)', 40230761, N'lurasidone', N'88a244d1-eddb-499c-bee2-e1f49056e78f', CAST(N'2010-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2412, N'LAVIV (Injectable)', 40241205, N'azficel-T', N'4a41354f-c689-4216-82cc-bfc572f16374', CAST(N'2012-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2413, N'Ledipasvir/Sofosbuvir (Oral Pill)', 45775020, N'ledipasvir', N'1a1c555d-2fdf-4150-8ace-dbc770c226bf', CAST(N'2014-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2414, N'Leflunomide (Oral Pill)', 1101898, N'leflunomide', N'753453c5-8a7a-878e-3ce7-1d1edce718a9', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2415, N'LEGATRIN PM (Oral Pill)', 1125315, N'Acetaminophen', N'c7646e78-e88d-4f61-9075-b912fe5578fc', CAST(N'2014-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2416, N'LEMTRADA (Injectable)', 1312706, N'alemtuzumab', N'6236b0bc-82e9-4447-9a78-f57d94770269', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2417, N'LENZAGEL (Topical)', 989878, N'Lidocaine', N'f52cc82a-e5fd-494a-942f-372e2eb46fcb', CAST(N'2014-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2418, N'LENZAPATCH (Transdermal)', 989878, N'Lidocaine', N'a4ba3e83-ca7c-4ff2-824c-77fe08e1586c', CAST(N'2014-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2419, N'LESCOL (Oral Pill)', 1549686, N'fluvastatin', N'e38126a5-9d6a-422f-812c-a01610108162', CAST(N'2011-04-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2420, N'Letrozole (Oral Pill)', 1315946, N'letrozole', N'6cfd29d7-f519-7b8c-4814-07b39f367f0d', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2421, N'Leucovorin (Injectable)', 1388796, N'Leucovorin', N'ab691d4e-e0d1-4ba1-9c7a-1cdcfcc3c17c', CAST(N'2015-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2422, N'Leucovorin (Oral Pill)', 1388796, N'Leucovorin', N'084227c1-90eb-4653-807a-eb98cb3cefb8', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2423, N'LEUKERAN (Oral Pill)', 1390051, N'Chlorambucil', N'967ed3ff-d99b-41e8-b768-dfb586d3d9a6', CAST(N'2012-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2424, N'LEUKINE (Injectable)', 1308432, N'sargramostim', N'c96afe62-f0cf-4d4b-b57d-194a8ec12389', CAST(N'2013-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2425, N'Leuprolide (Injectable)', 1351541, N'Leuprolide', N'a3b01473-30c7-4945-bd60-2484221aaaad', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2426, N'Levalbuterol (Inhalant)', 1192218, N'Levalbuterol', N'0c47c47d-45f7-4eb4-b1f8-7d6c633a1f69', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2427, N'LEVAQUIN (Oral Pill)', 1742253, N'Levofloxacin', N'139f86a4-75c5-4304-894c-8f8b8a396c78', CAST(N'2013-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2428, N'LEVEMIR (Injectable)', 1516976, N'insulin detemir', N'2b8d9730-686b-444b-9941-7b5877255924', CAST(N'2011-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2429, N'levETIRAcetam (Injectable)', 711584, N'Levetiracetam', N'f00d8f59-c333-48ad-aca3-98a49bcd228e', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2430, N'levETIRAcetam (Oral Liquid)', 711584, N'Levetiracetam', N'd57044c1-9222-4127-a491-3328324fb4b2', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2431, N'levETIRAcetam (Oral Pill)', 711584, N'Levetiracetam', N'a4f7e6ed-992b-4217-82d8-658036d12faa', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2432, N'LEVITRA (Oral Pill)', 1311276, N'vardenafil', N'f18a82f7-ce44-4f9c-ae69-d3ad1d375564', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2433, N'Levobunolol (Ophthalmic)', 932815, N'Levobunolol', N'5ab1efbe-530b-4787-b40a-c7dbf18161e1', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2434, N'levOCARNitine (Injectable)', 1553610, N'Levocarnitine', N'cc4da2c3-f939-444d-9b5b-a57b6051c190', CAST(N'2014-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2435, N'levOCARNitine (Oral Liquid)', 1553610, N'Levocarnitine', N'b2cbc620-59fd-47b6-9e4b-7e3e31533a1c', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2436, N'levOCARNitine (Oral Pill)', 1553610, N'Levocarnitine', N'479e0e78-9b6e-4991-80f3-e92386722765', CAST(N'2015-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2437, N'Levocetirizine (Oral Liquid)', 1136422, N'levocetirizine', N'df2a19c7-f437-425c-8253-a2523122a653', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2438, N'Levocetirizine (Oral Pill)', 1136422, N'levocetirizine', N'4f43d057-cba8-4366-86ba-4be361e4c71f', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2439, N'Levofloxacin (Ophthalmic)', 1742253, N'Levofloxacin', N'f79d2ae4-ccfb-49ca-bf0e-e505f3477d30', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2440, N'Levofloxacin (Oral Pill)', 1742253, N'Levofloxacin', N'814450ae-439e-4a5d-8c60-9b21b6f14be5', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2441, N'Levoleucovorin (Injectable)', 40168303, N'levoleucovorin', N'f977c9bb-bef1-4746-9894-4c29a1fdb0d8', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2442, N'Levomefolic Acid (Oral Pill)', 40228423, N'Levomefolic Acid', N'8132454a-6135-4bac-b206-83a55eb8dbc6', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2443, N'Levonorgestrel (Implant)', 1589505, N'Levonorgestrel', N'9f44ff35-e052-49cd-a1c2-0bfd87d49309', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2444, N'Levonorgestrel (Oral Pill)', 1589505, N'Levonorgestrel', N'38c26cb9-052e-426f-9916-c13e7a5e62d0', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2445, N'LEVOPHED (Injectable)', 1321341, N'Norepinephrine', N'8c9dc6eb-e53a-4cc0-92c3-7a53d268cf93', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2446, N'Levorphanol (Oral Pill)', 1189766, N'Levorphanol', N'77f4a54a-6901-46d9-93db-ad4be7eae6c3', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2447, N'LEVOTHROID (Oral Pill)', 1501700, N'Thyroxine', N'101de879-bb0a-4157-9c0d-2c5720dd454e', CAST(N'2012-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2448, N'Levothyroxine (Injectable)', 1501700, N'Thyroxine', N'ce990712-49c1-4f66-9ee4-c770e8ec394c', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2449, N'Levothyroxine (Oral Pill)', 1501700, N'Thyroxine', N'a0bef5df-f192-4c0b-be61-2f28b982e8fd', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2450, N'Levothyroxine/Triiodothyronine (Oral Pill)', 1501700, N'Thyroxine', N'7d028b83-5166-4b2e-b442-ba6cbfefbfd6', CAST(N'2013-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2451, N'LEVOXYL (Oral Pill)', 1501700, N'Thyroxine', N'758588c3-c63e-491b-0aa2-4f50d80cb174', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2452, N'LEVSIN (Injectable)', 923672, N'Hyoscyamine', N'dd2e786c-29a7-40f8-a5f3-7641413f5036', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2453, N'LEVSIN (Sublingual)', 923672, N'Hyoscyamine', N'f38ece41-b890-11e2-9e96-0800200c9a66', CAST(N'2013-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2454, N'LEVULAN (Topical)', 924120, N'Aminolevulinate', N'e45cc371-9ebc-4904-12bc-65cb4e2817ad', CAST(N'2012-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2455, N'LEXAPRO (Oral Pill)', 715939, N'Escitalopram', N'16c67e3e-9928-4ad8-b850-84ec4d333e9b', CAST(N'2014-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2456, N'LEXIVA (Oral Pill)', 1736829, N'fosamprenavir', N'009575f9-74e8-4a6d-9fa6-3cae72fd01c3', CAST(N'2010-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2457, N'LIALDA (Oral Pill)', 968426, N'mesalamine', N'07e5ac9c-a5b2-42dc-84fa-963dbc51ba21', CAST(N'2013-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2458, N'LIBRAX (Oral Pill)', 990678, N'Chlordiazepoxide', N'f99ebf66-f207-4a97-9666-4da1d72b061c', CAST(N'2015-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2459, N'LICE MD (Topical)', 946340, N'Piperonyl Butoxide', N'7509990f-0bc8-44dc-9678-05b27f2c1368', CAST(N'2013-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2460, N'Lidocaine (Injectable)', 989878, N'Lidocaine', N'331f6960-a09d-4513-9e6b-a03527d9131e', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2461, N'Lidocaine (Mucosal)', 989878, N'Lidocaine', N'8a4c45c0-7eae-4296-ae2e-6d618228dc8b', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2462, N'Lidocaine (Rectal)', 989878, N'Lidocaine', N'bf08d3c1-f3ef-4307-ba99-b20e31a3e8f0', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2463, N'Lidocaine (Topical)', 989878, N'Lidocaine', N'c913688b-c51d-44c2-8ce6-5200f1ea0bab', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2464, N'Lidocaine (Transdermal)', 989878, N'Lidocaine', N'55be87b4-a69b-4bfd-bf92-2949ec5e5dab', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2465, N'Lidocaine/Menthol (Topical)', 989878, N'Lidocaine', N'e8aa0e47-68e1-462c-a609-58548448da44', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2466, N'Lidocaine/Menthol (Transdermal)', 989878, N'Lidocaine', N'3f541c7c-e6d6-47cb-8406-865bc61f8c5d', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2467, N'Lidocaine/Prilocaine (Mucosal)', 989878, N'Lidocaine', N'b501d239-923b-48b2-82ed-6c5c253a67e2', CAST(N'2012-08-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2468, N'Lidocaine/Prilocaine (Topical)', 989878, N'Lidocaine', N'c05f3803-92ae-42b7-8248-933bd92d6116', CAST(N'2015-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2469, N'Lidocaine/Tetracaine (Transdermal)', 989878, N'Lidocaine', N'b3eee508-8bf3-4bd3-9a71-47ee6ea87f95', CAST(N'2012-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2470, N'LIDOCREAM (Topical)', 989878, N'Lidocaine', N'298401a9-8584-4801-af96-81d464d220bb', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2471, N'LIDODERM (Transdermal)', 989878, N'Lidocaine', N'18e420b9-0fd1-48d9-9a23-c1e29a5f629f', CAST(N'2014-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2472, N'LIDOSITE (Transdermal)', 1343916, N'Epinephrine', N'82b5bf2c-7dc9-40bd-9fb4-b5b1b5be0470', CAST(N'2007-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2473, N'LIGNOSPAN (Injectable)', 1343916, N'Epinephrine', N'82e7d9d8-bad8-4dac-8e2c-29e834fc6dbf', CAST(N'2011-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2474, N'Linagliptin (Oral Pill)', 40239216, N'Linagliptin', N'dfe327e8-f6ab-41e5-bdef-d520118cd83a', CAST(N'2014-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2475, N'Lincomycin (Injectable)', 1790692, N'Lincomycin', N'0f6a98ff-c908-48a8-ae17-c8b32f4396a3', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2476, N'Lindane (Shampoo)', 916751, N'Lindane', N'56158fc4-590f-4e8c-bf94-610a3cfc11c1', CAST(N'2010-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2477, N'Lindane (Topical)', 916751, N'Lindane', N'54b9526e-29ab-46b0-ab82-d765fbee5c6f', CAST(N'2012-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2478, N'Linezolid (Oral Pill)', 1736887, N'linezolid', N'2a02e028-263f-4673-ae85-19b784bd118c', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2479, N'LIPITOR (Oral Pill)', 1545958, N'atorvastatin', N'76a76f8e-d7c6-4621-b0a4-d5db0c24f089', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2480, N'LIPODOX (Injectable)', 19051649, N'doxorubicin liposome', N'1d5beebf-77f3-47ca-a9a1-5f64f42fed07', CAST(N'2012-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2481, N'LIPTRUZET (Oral Pill)', 1545958, N'atorvastatin', N'c387354c-607b-474d-b2e5-d35c789ce09b', CAST(N'2013-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2482, N'Lisdexamfetamine (Oral Pill)', 709567, N'Lisdexamfetamine', N'a310fc51-2743-4755-8398-fed5402283f6', CAST(N'2012-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2483, N'Lisinopril (Oral Pill)', 1308216, N'Lisinopril', N'69b41c71-b39e-43cf-94b7-8909ae9fd1fa', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2484, N'LISTERINE (Mouthwash)', 19069022, N'Sodium Fluoride', N'283fea4d-a8e5-42fa-8617-da9235b8be85', CAST(N'2014-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2485, N'LISTERINE ANTISEPTIC (Mouthwash)', 19050346, N'Eucalyptol', N'd38a273c-3833-4459-9e80-c2b0c779772e', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2486, N'LISTERINE ESSENTIAL CARE TARTAR CONTROL (Toothpaste)', 19068715, N'monofluorophosphate', N'84f70fea-d730-49ee-ab74-cd280ed6d506', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2487, N'LITHANE (Oral Pill)', 751246, N'Lithium Carbonate', N'42bed965-4b8f-4471-bcc9-091f87238653', CAST(N'2006-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2488, N'Lithium Carbonate (Oral Pill)', 751246, N'Lithium Carbonate', N'bc99fa8c-1d8b-4363-b616-548c62594076', CAST(N'2014-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2489, N'Lithium Carbonate XR (Oral Pill)', 751246, N'Lithium Carbonate', N'9efc1d04-7aae-4ca9-9af6-ea6f3e095db2', CAST(N'2015-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2490, N'Lithium citrate (Oral Liquid)', 767410, N'lithium citrate', N'1a04cc23-61fa-455b-9718-2cdcf54036e0', CAST(N'2014-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2491, N'LITHOBID XR (Oral Pill)', 751246, N'Lithium Carbonate', N'ea4ece7f-e81f-48de-b262-577db5b6fe6c', CAST(N'2014-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2492, N'LITTLE FEVERS (Oral Liquid)', 1125315, N'Acetaminophen', N'e1e44c85-d10c-4997-8f85-064cda7906eb', CAST(N'2011-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2493, N'LITTLE OUCHIES (Topical)', 917006, N'Benzocaine', N'a4b73305-edf6-42cd-994a-0d7e3507a97d', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2494, N'LITTLE TUMMYS LAXATIVE DROPS (Oral Liquid)', 938268, N'sennosides, USP', N'b2bf2d76-7dc0-4864-bfc2-ef41e155d316', CAST(N'2012-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2495, N'LIVALO (Oral Pill)', 40165636, N'pitavastatin', N'44dcbf97-99ec-427c-ba50-207e0069d6d2', CAST(N'2013-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2496, N'Live oak pollen extract (Injectable)', 40167574, N'live oak pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2497, N'LMX (Rectal)', 989878, N'Lidocaine', N'34f8ed6b-4a52-4a99-9c1b-254196dc29b0', CAST(N'2013-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2498, N'LMX (Topical)', 989878, N'Lidocaine', N'f0e7c92f-8b0b-4045-b659-af9f6e81260f', CAST(N'2014-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2499, N'Loblolly pine pollen extract (Injectable)', 40172266, N'loblolly pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2500, N'LOCOID (Topical)', 975125, N'Hydrocortisone', N'c7b4f583-2f79-4242-8ed2-d0e19ce8a510', CAST(N'2014-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2501, N'Lodgepole pine pollen extract (Injectable)', 40172270, N'lodgepole pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2502, N'Lodgepole pine pollen extract/Yellow pine pollen extract (Injectable)', 40172270, N'lodgepole pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2503, N'LODOSYN (Oral Pill)', 740560, N'Carbidopa', N'79e4ca99-7217-41bb-8ace-d0040b56e859', CAST(N'2014-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2504, N'Lodoxamide (Ophthalmic)', 967496, N'Lodoxamide', N'1b97597f-f2e7-4574-81a8-f35b769c957a', CAST(N'2011-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2505, N'LODRANE D (Oral Pill)', 1130863, N'Brompheniramine', N'4ae74ab3-c1f7-4347-9833-16553cf9969d', CAST(N'2012-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2506, N'LOFIBRA (Oral Pill)', 1551803, N'Fenofibrate', N'680a6740-8ea8-4a06-b659-41c2e5b1a4fd', CAST(N'2012-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2507, N'Lombard poplar pollen extract/White poplar pollen extract (Injectable)', 40161316, N'Lombard poplar pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2508, N'LOMOTIL (Oral Pill)', 914335, N'Atropine', N'd2b171be-ac59-48ec-84da-03d3f2d34ca6', CAST(N'2009-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2509, N'Lomustine (Oral Pill)', 1391846, N'Lomustine', N'17893de9-7d54-448c-9fca-d10642046d14', CAST(N'2012-12-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2510, N'Loperamide (Oral Liquid)', 991876, N'Loperamide', N'b5132a26-dc9f-4495-97fa-9225b87e1c8a', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2511, N'Loperamide (Oral Pill)', 991876, N'Loperamide', N'ab07bfd1-d2d3-427a-866d-89a10d40a4e9', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2512, N'Lopinavir/Ritonavir (Oral Pill)', 1738170, N'lopinavir', N'c7fc2d1e-802e-4da1-9763-3355f8aafe3a', CAST(N'2012-10-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2513, N'LOPRESSOR (Oral Pill)', 1307046, N'Metoprolol', N'bb05420c-fd24-4672-9f62-fdd313819287', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2514, N'LOPRESSOR HCT (Oral Pill)', 974166, N'Hydrochlorothiazide', N'd8964894-3cd8-41c1-a844-148d2ef38a88', CAST(N'2012-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2515, N'LORADAMED (Oral Pill)', 1107830, N'Loratadine', N'32092beb-c177-4b6b-afa4-b4b5d64621f4', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2516, N'Loratadine (Oral Disintegrating)', 1107830, N'Loratadine', N'2f0ef205-49bb-4a74-b000-2f9823ec6179', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2517, N'Loratadine (Oral Liquid)', 1107830, N'Loratadine', N'775731a2-9b30-4a0e-82fb-b517b36317c7', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2518, N'Loratadine (Oral Pill)', 1107830, N'Loratadine', N'b7c8c727-6498-40f4-942a-5b64f40641af', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2519, N'LORazepam (Injectable)', 791967, N'Lorazepam', N'095ab8ff-83c5-4906-ae67-b04f4a58b58d', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2520, N'LORazepam (Oral Liquid)', 791967, N'Lorazepam', N'711b60a3-028d-41d4-aa17-8f976e6df23e', CAST(N'2010-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2521, N'LORazepam (Oral Pill)', 791967, N'Lorazepam', N'ba6ce50e-c5a9-47ca-9803-a1ed82172b0e', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2522, N'LORCET (Oral Pill)', 1125315, N'Acetaminophen', N'7a1411e1-b705-43d9-a305-c020c9e3bf4d', CAST(N'2014-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2523, N'LORTAB (Oral Liquid)', 1125315, N'Acetaminophen', N'55386fe7-990a-4596-a109-a6553a57bc7c', CAST(N'2014-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2524, N'LORTAB (Oral Pill)', 1125315, N'Acetaminophen', N'6e48680d-b4ea-4eca-86ab-d9eb3434855b', CAST(N'2013-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2525, N'LORTUSS EX (Oral Liquid)', 1201620, N'Codeine', N'69ee642b-423c-4a68-8c16-cae09d3ef59d', CAST(N'2014-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2526, N'LORTUSS LQ (Oral Liquid)', 738818, N'Doxylamine', N'fe74017b-3387-4e72-9e2d-9eb46465c3df', CAST(N'2011-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2527, N'LORZONE (Oral Pill)', 795113, N'Chlorzoxazone', N'bdd61b83-5bcd-4d23-8ef5-aeb9ca2f7c14', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2528, N'Losartan (Oral Pill)', 1367500, N'Losartan', N'ab0863e8-cecd-4d66-85f4-72ceb684e97b', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2529, N'LOTEMAX (Ophthalmic)', 967562, N'loteprednol etabonate', N'9a666065-d467-42b8-8ecd-0ec1de9986d5', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2530, N'LOTENSIN (Oral Pill)', 1335471, N'benazepril', N'4d954024-a191-46e3-ba71-2a7d5b0c65d5', CAST(N'2013-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2531, N'LOTENSIN HCT (Oral Pill)', 1335471, N'benazepril', N'94c4536f-e28e-48b1-8336-b3939917e99d', CAST(N'2014-03-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2532, N'Loteprednol etabonate (Ophthalmic)', 967562, N'loteprednol etabonate', N'21c76da0-50a1-41c0-91b8-8cc4dcc27f60', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2533, N'LOTREL (Oral Pill)', 1332418, N'Amlodipine', N'4653cabc-f249-4b4e-95b6-5fb4ddc0ad5d', CAST(N'2012-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2534, N'LOTRIMIN (Topical)', 1000632, N'Clotrimazole', N'f9536683-3f32-4c71-9b6a-70f8611e3dcf', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2535, N'LOTRIMIN AF (Topical)', 907879, N'Miconazole', N'd6eb3b78-405b-43e5-9db5-da671465eda1', CAST(N'2014-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2536, N'LOTRIMIN ULTRA (Topical)', 958396, N'butenafine', N'0eadac26-4619-4227-9dda-28e739d77a87', CAST(N'2013-08-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2537, N'LOTRONEX (Oral Pill)', 948555, N'alosetron', N'526ba44c-a476-4675-a63c-4d0a72b723f5', CAST(N'2014-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2538, N'Lovastatin (Oral Pill)', 1592085, N'Lovastatin', N'baf283fe-3ab2-460a-a53a-a8ad5d4743b9', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2539, N'LOVAZA (Oral Pill)', 1560305, N'Omega-3 Acid Ethyl Esters (USP)', N'fb2141cd-6cff-470c-b776-4482afcebb41', CAST(N'2011-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2540, N'LOVENOX (Injectable)', 1301025, N'Enoxaparin', N'53fd1302-9e1b-4e04-b06d-1a706547c388', CAST(N'2013-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2541, N'Loxapine (Oral Pill)', 792263, N'Loxapine', N'a61ac8b0-d2eb-4546-a57b-2c296fb12699', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2542, N'LOZOL (Oral Pill)', 978555, N'Indapamide', N'289796b5-f95c-4c40-bad7-d6359e0f7840', CAST(N'2008-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2543, N'Lubiprostone (Oral Pill)', 987366, N'lubiprostone', N'1b632d92-a05b-42d3-88a6-b3e345d11fe4', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2544, N'LUBRIFRESH P.M. (Ophthalmic)', 908523, N'Mineral Oil', N'a9f844af-6887-4496-8c64-721357a4a5bb', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2545, N'LUCENTIS (Injectable)', 19080982, N'ranibizumab', N'de4e66cc-ca05-4dc9-8262-e00e9b41c36d', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2546, N'Lucinactant (Injectable)', 42800204, N'lucinactant', N'f2ba0c81-ceb0-11e0-9572-0800200c9a66', CAST(N'2014-05-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2547, N'LUDEN''S DROPS (Oral Lozenge)', 922191, N'pectin', N'fada4d58-9506-47f7-907e-bb340828a2e9', CAST(N'2015-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2548, N'LUDENT (Chewable)', 19069022, N'Sodium Fluoride', N'029caea5-2b12-4051-b758-22cd7fc1d207', CAST(N'2011-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2549, N'LUFYLLIN (Oral Pill)', 1140088, N'Dyphylline', N'6d7ed7c0-9646-11de-a404-0002a5d5c51b', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2550, N'LUMICAIN (Topical)', 957393, N'aluminum chloride', N'9fdcce3e-e4d4-41ae-8609-37987c12414e', CAST(N'2011-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2551, N'LUMIGAN (Ophthalmic)', 904525, N'bimatoprost', N'ec9097e7-4be4-4e62-99c3-24b48244c9f2', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2552, N'LUMIZYME (Injectable)', 19088328, N'alglucosidase alfa', N'd6bfbc45-2d34-439e-8aad-59ee2d53d4df', CAST(N'2015-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2553, N'LUNESTA (Oral Pill)', 757352, N'Eszopiclone', N'e711e994-a489-d14b-9a50-60557b9ed137', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2554, N'LUPRON (Injectable)', 1351541, N'Leuprolide', N'319f0af7-6cc7-4a91-a28a-9ceea37d0ca8', CAST(N'2008-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2555, N'Lurasidone (Oral Pill)', 40230761, N'lurasidone', N'88a244d1-eddb-499c-bee2-e1f49056e78f', CAST(N'2010-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2556, N'LUSTRA (Topical)', 976778, N'hydroquinone', N'c1d01301-70c3-484b-8967-2324afa1781e', CAST(N'2012-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2557, N'LUXIQ (Topical)', 920458, N'Betamethasone', N'3dab9411-df12-4073-9cc1-3273e2aee7e7', CAST(N'2011-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2558, N'LUZU (Topical)', 44507693, N'luliconazole', N'a7016010-ce43-4c09-8d21-aeb697ffed31', CAST(N'2015-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2559, N'Lymphocyte immune globulin (Injectable)', 19061406, N'Lymphocyte immune globulin', N'bd545ba1-2366-4df1-bd67-10dfd7632b54', CAST(N'2015-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2560, N'LYRICA (Oral Pill)', 734354, N'pregabalin', N'6f51d7bf-aba2-4f10-911a-3cbc4d501a00', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2561, N'LYSODREN (Oral Pill)', 1309161, N'Mitotane', N'e9fba7d4-a0ec-4bfa-9b5b-ec97a9710fd3', CAST(N'2014-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2562, N'LYSTEDA (Oral Pill)', 1303425, N'Tranexamic Acid', N'49317334-a833-4620-a3b5-f179f8a821e2', CAST(N'2013-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2563, N'MAALOX MAX (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'ac12f0ae-6f06-4fa4-8265-37d27db8cb5d', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2564, N'MAALOX PLUS (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'e2a14762-3860-44c3-a3ea-5dbc45f4b1d5', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2565, N'Macitentan (Oral Pill)', 44507580, N'Macitentan', N'1e484a50-55db-4b85-8c57-6cd1b0353abd', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2566, N'MACROBID (Oral Pill)', 920293, N'Nitrofurantoin', N'1971e893-5fdb-41e3-a1e9-5e52deed03d1', CAST(N'2009-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2567, N'MACRODANTIN (Oral Pill)', 920293, N'Nitrofurantoin', N'ec86b651-d77d-4a42-b493-24244456b3f6', CAST(N'2009-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2568, N'Mafenide (Topical)', 992716, N'Mafenide', N'570ce479-d902-4394-bbae-41dfe16c5485', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2569, N'MAGNEBIND (Oral Pill)', 19035704, N'Calcium Carbonate', N'af124c72-0a35-4305-abd8-2b0ebf84da08', CAST(N'2014-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2570, N'MAGNEBIND 400 RX (Oral Pill)', 19035704, N'Calcium Carbonate', N'e74e25aa-2f4c-4026-bc2b-7bb21aaf6fc5', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2571, N'Magnesium acetate/Potassium Acetate/Sodium Chloride (Injectable)', 19013986, N'magnesium acetate', N'94c12711-d672-450d-baae-06e24a72aace', CAST(N'2006-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2572, N'Magnesium carbonate (Oral Liquid)', 908464, N'magnesium carbonate', N'163bceeb-ca74-413e-88b9-5c7bc9bbeb0d', CAST(N'2014-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2573, N'Magnesium Chloride (Injectable)', 19092849, N'Magnesium Chloride', N'2105d1c1-54ef-4d1a-a63c-b1619e8b50db', CAST(N'2013-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2574, N'Magnesium citrate (Oral Liquid)', 967861, N'magnesium citrate', N'511bb6ed-7832-4862-a572-24c37021041a', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2575, N'Magnesium Hydroxide (Chewable)', 992956, N'Magnesium Hydroxide', N'0965c4e1-492d-1ffe-e054-00144ff88e88', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2576, N'Magnesium Hydroxide (Oral Liquid)', 992956, N'Magnesium Hydroxide', N'3a189feb-0f1d-4695-899f-cbe508b9924d', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2577, N'Magnesium Hydroxide/Omeprazole/Sodium Bicarbonate (Chewable)', 992956, N'Magnesium Hydroxide', N'cc8ef530-dd8c-40f5-af7e-4622c9e01d52', CAST(N'2007-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2578, N'Magnesium Oxide (Oral Pill)', 993631, N'Magnesium Oxide', N'2585e9da-e2df-40ec-8282-91dbe6476421', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2579, N'Magnesium Salicylate (Oral Pill)', 1168079, N'Magnesium Salicylate', N'd98ee9c8-40e2-4abb-b5c1-45e73e7dd23b', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2580, N'Magnesium Sulfate (Oral Granules)', 19093848, N'Magnesium Sulfate', N'040fe343-fb47-2226-df5e-d873120e23c5', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2581, N'MAKENA (Injectable)', 19077143, N'Hydroxyprogesterone', N'a1998c1d-8337-4f00-8dcb-af3b54d39b77', CAST(N'2015-04-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2582, N'Malathion (Topical)', 993979, N'Malathion', N'e9ea6c59-0a3d-4ce0-96ab-f8e9c38ce9db', CAST(N'2014-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2583, N'Mannitol (Injectable)', 994058, N'Mannitol', N'd12cc802-b538-4065-a264-f474ff3b3043', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2584, N'Mannitol (Irrigation)', 994058, N'Mannitol', N'be1b2398-892c-4c5d-a045-ce12f03bea8e', CAST(N'2014-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2585, N'MAPAP (Chewable)', 1125315, N'Acetaminophen', N'5b3391d9-0d16-4378-b98b-ac13de7d1004', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2586, N'MAPAP (Oral Disintegrating)', 1125315, N'Acetaminophen', N'8080296f-44b6-450e-b3d6-bb8415b4e4cc', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2587, N'MAPAP (Oral Liquid)', 1125315, N'Acetaminophen', N'dbbeeebc-48c3-42b2-ac08-aadfe43cfede', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2588, N'MAPAP (Oral Pill)', 1125315, N'Acetaminophen', N'e27b1cb6-cfa0-47dc-9301-bf68f0695491', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2589, N'MAPAP PM (Oral Pill)', 1125315, N'Acetaminophen', N'31a86ae4-cdae-46a5-9df5-d9d8cb9b5090', CAST(N'2011-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2590, N'MAPAP SINUS CONGESTION AND PAIN (Oral Pill)', 1125315, N'Acetaminophen', N'0adcc105-107f-4a71-aa89-e5dbc03087a0', CAST(N'2015-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2591, N'Maple leaf sycamore pollen extract (Injectable)', 40172372, N'maple leaf sycamore pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2592, N'Maraviroc (Oral Pill)', 1787101, N'maraviroc', N'74fba35e-931e-44d8-97e0-d243bb687a71', CAST(N'2013-02-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2593, N'MARCAINE (Injectable)', 732893, N'Bupivacaine', N'250644e0-94b7-4da2-821a-50f66b54eb35', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2594, N'MARCAINE WITH EPINEPHRINE (Injectable)', 732893, N'Bupivacaine', N'6a60cb55-530a-41ee-bc78-971eaf9f0850', CAST(N'2012-03-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2595, N'MAR-COF BP (Oral Liquid)', 1130863, N'Brompheniramine', N'7bef7c48-f784-49c7-a6e6-93042252d54b', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2596, N'MAR-COF CG (Oral Liquid)', 1201620, N'Codeine', N'60a41229-b125-43d8-b2b4-0bf40feed764', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2597, N'MARGESIC (Oral Pill)', 1125315, N'Acetaminophen', N'338b9f27-7097-4675-9ec5-e1eea6898cd5', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2598, N'MARPLAN (Oral Pill)', 781705, N'Isocarboxazid', N'ac387aa0-3f04-4865-a913-db6ed6f4fdc5', CAST(N'2012-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2599, N'MARQIBO (Injectable)', 42874135, N'vincristine liposome', N'a1869e23-b93b-4407-843b-4b830319d82e', CAST(N'2013-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2600, N'MARTEN-TAB (Oral Pill)', 1125315, N'Acetaminophen', N'85c7db7a-a99a-43ef-9337-9916762ca087', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2601, N'MAVIK (Oral Pill)', 1342439, N'trandolapril', N'bcaffc12-69af-46a8-a092-b3f66a0508d5', CAST(N'2012-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2602, N'MAXALT (Oral Disintegrating)', 1154077, N'rizatriptan', N'08d06e6f-a1d8-4bd9-b851-d63858d55f91', CAST(N'2011-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2603, N'MAXALT (Oral Pill)', 1154077, N'rizatriptan', N'08d06e6f-a1d8-4bd9-b851-d63858d55f91', CAST(N'2011-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2604, N'MAXIDEX (Ophthalmic)', 1518254, N'Dexamethasone', N'a0aa9dc9-265c-4dd6-9b03-276a47217839', CAST(N'2011-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2605, N'MAXIDONE (Oral Pill)', 1125315, N'Acetaminophen', N'a2617a15-b333-4ffc-98eb-36d8721aa0d6', CAST(N'2013-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2606, N'MAXITROL (Ophthalmic)', 1518254, N'Dexamethasone', N'277ff310-b7dc-43b6-8a16-885b58882bc0', CAST(N'2011-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2607, N'MAXZIDE (Oral Pill)', 974166, N'Hydrochlorothiazide', N'e92eda49-861e-4c79-b446-ec1213151d92', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2608, N'M-CLEAR WC (Oral Liquid)', 1201620, N'Codeine', N'903fe5b6-6c28-4b92-bdab-32389c10c25a', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2609, N'Meadow fescue grass pollen extract (Injectable)', 40161861, N'meadow fescue grass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2610, N'Mebendazole (Chewable)', 1794280, N'Mebendazole', N'c338415f-41e0-071d-8c51-a80a02ebf2cd', CAST(N'2012-10-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2611, N'Mecamylamine (Oral Pill)', 1394333, N'Mecamylamine', N'0774cc48-7287-4093-91d6-9df41a81408a', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2612, N'Mechlorethamine (Topical)', 1394337, N'Mechlorethamine', N'706bd420-2f32-11e0-aaee-0002a5d5c51b', CAST(N'2013-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2613, N'Meclizine (Chewable)', 994341, N'Meclizine', N'6872c83f-905d-40e6-a451-1d080dd5314c', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2614, N'Meclizine (Oral Pill)', 994341, N'Meclizine', N'9350fefc-9c00-182c-c3a9-044d4a40856f', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2615, N'MEDERMA ADVANCED SCAR (Topical)', 966376, N'Allantoin', N'7cf1c5a8-d28a-48c2-8cba-a3e18a7d51f9', CAST(N'2013-11-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2616, N'MEDERMA PM (Topical)', 916662, N'dimethicone', N'e1864a26-e8a3-4c9d-a468-ea020fdc30e1', CAST(N'2013-11-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2617, N'MEDERMA STRETCH MARK THERAPY (Topical)', 916662, N'dimethicone', N'6e84c921-03a7-4ec1-bd9b-4986b5559555', CAST(N'2013-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2618, N'MEDICAINE STING (Topical)', 917006, N'Benzocaine', N'753e6cbe-31e0-4017-93d0-8b4bf5972f37', CAST(N'2011-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2619, N'MEDI-DERM WITH LIDOCAINE (Topical)', 939881, N'Capsaicin', N'8e71c2d3-b1ce-4b22-b39f-7dd7cdf8de04', CAST(N'2013-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2620, N'MEDIHALER-ERGOTAMINE (Inhalant)', 1145379, N'Ergotamine', N'e713859d-f454-4f7e-a535-868b8d5f2c88', CAST(N'2006-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2621, N'MEDIPLAST (Topical)', 964407, N'Salicylic Acid', N'35bd29f9-cf49-404b-826b-72d1269d4f19', CAST(N'2012-12-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2622, N'MEDROL (Oral Pill)', 1506270, N'Methylprednisolone', N'4c0dd824-b099-47c3-aaf5-f6ddb873b3ee', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2623, N'MEDROX (Topical)', 939881, N'Capsaicin', N'cfaf5295-e559-4e27-887d-d590670b4e89', CAST(N'2013-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2624, N'MEDROX (Transdermal)', 939881, N'Capsaicin', N'a9343d24-8435-4a51-98a2-b7976cd369ab', CAST(N'2011-12-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2625, N'medroxyPROGESTERone (Injectable)', 1500211, N'Medroxyprogesterone', N'cd0bbdb2-754e-4e66-8f36-985b5819d642', CAST(N'2015-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2626, N'medroxyPROGESTERone (Oral Pill)', 1500211, N'Medroxyprogesterone', N'468a972c-cb14-47c3-bdf6-4f7b64509e5c', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2627, N'Mefenamate (Oral Pill)', 1197736, N'Mefenamate', N'194031c2-46f6-43b3-bbb4-faffe9b53fa4', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2628, N'Mefloquine (Oral Pill)', 19000498, N'Mefloquine', N'1c47fd79-c0ca-42d6-9910-774272b25bc1', CAST(N'2013-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2629, N'MEGA C ACID PLUS (Injectable)', 19011773, N'Ascorbic Acid', N'7b65c50d-09d6-4df2-8322-971b100c176d', CAST(N'2013-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2630, N'MEGACE (Oral Liquid)', 1300978, N'Megestrol', N'654854bc-f847-4e3b-a0a1-8716553460ac', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2631, N'Megestrol (Oral Liquid)', 1300978, N'Megestrol', N'33bc102c-31a3-4fd9-9702-c1193d7699a3', CAST(N'2015-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2632, N'Megestrol (Oral Pill)', 1300978, N'Megestrol', N'66573d39-f2a7-49fd-9ed2-97ac8f6e8456', CAST(N'2014-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2633, N'MELAMIN (Topical)', 976778, N'hydroquinone', N'30d92f16-1065-4754-88cd-58f9f05761ca', CAST(N'2014-07-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2634, N'MELAMIX (Topical)', 976778, N'hydroquinone', N'9f3a6a77-7e19-43fe-922a-76ed5f25c3f1', CAST(N'2014-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2635, N'Meloxicam (Oral Liquid)', 1150345, N'meloxicam', N'c27c35d7-07e1-47d4-97cd-ed1fb17750ce', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2636, N'Meloxicam (Oral Pill)', 1150345, N'meloxicam', N'fe8480c4-b176-45ae-b4d6-fa59912fe286', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2637, N'Melphalan (Injectable)', 1301267, N'Melphalan', N'9706e9a1-96ab-46b8-8846-32ee9d756b1d', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2638, N'Melphalan (Oral Pill)', 1301267, N'Melphalan', N'ff913271-0090-4832-a0fe-5154fe8f97b9', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2639, N'MELQUIN-3 (Topical)', 976778, N'hydroquinone', N'6bfcc6a9-899b-4ad7-b4e8-67d95fd04708', CAST(N'2014-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2640, N'Memantine (Oral Liquid)', 701322, N'Memantine', N'72973b46-f307-4a9e-8fb1-ad2cbccfd736', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2641, N'Memantine (Oral Pill)', 701322, N'Memantine', N'1e3c74c9-0017-4d7a-a716-2b5366286a67', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2642, N'M-END MAX D (Oral Liquid)', 1201620, N'Codeine', N'9f8fc672-3589-498d-82a7-e243f4e0dec0', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2643, N'M-END PE (Oral Liquid)', 1130863, N'Brompheniramine', N'fce1a6e4-cda3-462e-a853-049eabe4441e', CAST(N'2014-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2644, N'M-END WC (Oral Liquid)', 1130863, N'Brompheniramine', N'f07920ad-7f4b-48d6-8c86-d5a257ff91c6', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2645, N'MENEST (Oral Pill)', 1551673, N'Estrogens, Esterified (USP)', N'efb195b9-b995-48f3-a4cb-b7e09d56350e', CAST(N'2011-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2646, N'MEN-PHOR (Topical)', 938205, N'Camphor', N'1294e5d7-7208-4312-bcc7-e0c093309559', CAST(N'2012-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2647, N'MENTAX (Topical)', 958396, N'butenafine', N'167ecefd-4553-41b8-8160-81a48dbca076', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2648, N'Menthol (Oral Lozenge)', 901656, N'Menthol', N'b640a5d2-a7fe-486d-a65f-e7c993f950d6', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2649, N'Menthol (Topical)', 901656, N'Menthol', N'aa6d1beb-f462-4577-a57c-fb0ec12d4ce5', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2650, N'Menthol (Transdermal)', 901656, N'Menthol', N'de68eb17-95f1-4c10-a5b1-bb0b64bb441a', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2651, N'Menthol/Methyl salicylate (Topical)', 901656, N'Menthol', N'5488358e-2c90-433d-a850-7dcb31ca82d2', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2652, N'Menthol/Methyl salicylate (Transdermal)', 901656, N'Menthol', N'2e88c933-89e6-4a48-be7a-dc6a36e5c8f8', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2653, N'Menthol/Pramoxine (Topical)', 901656, N'Menthol', N'2c0eb81d-347e-412b-a0fd-727f0eb0ca4b', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2654, N'Menthol/Zinc Oxide (Topical)', 901656, N'Menthol', N'ca5582e7-e11e-4353-94ef-086da44d42cd', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2655, N'MENTHOLATUM (Topical)', 938205, N'Camphor', N'19e4b812-67c6-49fd-833a-b432100363f5', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2656, N'Meperidine (Injectable)', 1102527, N'Meperidine', N'987a91b8-dd9e-47ce-bd43-f8189a54838e', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2657, N'Meperidine (Oral Liquid)', 1102527, N'Meperidine', N'9c4f12e5-5e69-44d4-81a5-bd72c375eef5', CAST(N'2012-09-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2658, N'Meperidine (Oral Pill)', 1102527, N'Meperidine', N'6c2b41c3-732c-477f-8790-0eecea43b2da', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2659, N'Meperidine/Promethazine (Oral Pill)', 1102527, N'Meperidine', N'dc578720-0447-4e99-ad63-75253a751297', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2660, N'MEPHYTON (Oral Pill)', 19044727, N'Vitamin K 1', N'eb8d7fd3-4c7c-43e7-be09-98a446b905ef', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2661, N'Mepivacaine (Injectable)', 702774, N'Mepivacaine', N'007fcf17-f78a-40a7-d494-af93bbb40032', CAST(N'2007-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2662, N'Meprobamate (Oral Pill)', 702865, N'Meprobamate', N'e9aa3d4c-f2e9-4ca9-b563-85fac4024539', CAST(N'2013-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2663, N'Mercaptopurine (Oral Pill)', 1436650, N'mercaptopurine', N'c3b5b8b0-bc5c-4ce9-bbdc-febba60c2658', CAST(N'2015-02-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2664, N'MERCUROCLEAR (Topical)', 916460, N'Benzalkonium', N'e3428aa5-d13a-497c-b21f-4bb30b6154e4', CAST(N'2013-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2665, N'Meropenem (Injectable)', 1709170, N'meropenem', N'7a68d899-2678-43a9-a9c1-ef8f916b562f', CAST(N'2015-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2666, N'Mesalamine (Oral Pill)', 968426, N'mesalamine', N'07e5ac9c-a5b2-42dc-84fa-963dbc51ba21', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2667, N'Mesalamine (Rectal)', 968426, N'mesalamine', N'357e0e6b-cfbd-454c-82d7-cfc460dc0d68', CAST(N'2012-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2668, N'Mesalamine XR (Oral Pill)', 968426, N'mesalamine', N'ec53b1d4-b98d-4b4d-acc3-199f98031966', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2669, N'Mesna (Injectable)', 1354698, N'Mesna', N'26a12d79-fd1b-4e49-bbf0-0d55784379b8', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2670, N'MESNEX (Injectable)', 1354698, N'Mesna', N'49fdfbc3-69f8-4706-9d11-bf60e4e7811b', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2671, N'MESNEX (Oral Pill)', 1354698, N'Mesna', N'4a51ffdb-f59f-4e02-b3c4-f3457ab7b514', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2672, N'Mesquite pollen extract (Injectable)', 40161940, N'mesquite pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2673, N'Mestranol/Norethindrone (Oral Pill)', 1503184, N'Mestranol', N'a2b893ab-8ef1-4742-8026-7dfd69214840', CAST(N'2011-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2674, N'METAMUCIL (Oral Liquid)', 957797, N'Psyllium', N'7fb350de-624d-4765-a777-6c7efebd2b28', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2675, N'Metaproterenol (Oral Liquid)', 1123995, N'metaproterenol', N'66eb4b4d-2388-49d3-8ffa-0b9bca75a28e', CAST(N'2011-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2676, N'Metaproterenol (Oral Pill)', 1123995, N'metaproterenol', N'cf566e38-f6ff-4b86-9537-8684943b36eb', CAST(N'2013-07-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2677, N'Metaxalone (Oral Pill)', 780369, N'metaxalone', N'e8643c67-c531-4a4f-931d-0e3c91cfc0c8', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2678, N'metFORMIN (Oral Pill)', 1503297, N'Metformin', N'da99b8c4-f85e-409f-93a8-0e4758d74552', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2679, N'metFORMIN/Pioglitazone (Oral Pill)', 1503297, N'Metformin', N'c7dbc36d-3c84-488e-9b72-0593b5ed53a0', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2680, N'metFORMIN/Repaglinide (Oral Pill)', 1503297, N'Metformin', N'5be33711-b77d-4a01-87c8-3b2618c16e8f', CAST(N'2012-05-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2681, N'metFORMIN/Rosiglitazone (Oral Pill)', 1503297, N'Metformin', N'e77a8504-b49f-4343-beaf-6e4c2c59ab45', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2682, N'metFORMIN/sitaGLIPtin (Oral Pill)', 1503297, N'Metformin', N'e1af8ccb-ad50-452b-af44-022c9a0cb0ed', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2683, N'Methadone (Injectable)', 1103640, N'Methadone', N'9bbe219f-3bf1-44f4-a709-cd108c4fa9ef', CAST(N'2013-02-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2684, N'Methadone (Oral Liquid)', 1103640, N'Methadone', N'8c363f90-c378-48ae-abbc-aeb25c9bf5cb', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2685, N'Methadone (Oral Pill)', 1103640, N'Methadone', N'0b72a120-ca4e-4b90-7d89-52967a39adb3', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2686, N'Methamphetamine (Oral Pill)', 704053, N'Methamphetamine', N'f31f580f-1f08-4a0f-b078-0b9e3308f712', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2687, N'Methazolamide (Oral Pill)', 904250, N'Methazolamide', N'7731560b-dbe7-4912-814e-ef60629e5f07', CAST(N'2015-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2688, N'Methenamine (Oral Pill)', 904356, N'Methenamine', N'ad741dc5-816c-4ab2-9273-9b1a586149bc', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2689, N'METHERGINE (Oral Pill)', 1305637, N'Methylergonovine', N'94c9b1cf-ae12-45f3-8fcb-708a922cbc10', CAST(N'2012-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2690, N'Methimazole (Oral Pill)', 1504620, N'Methimazole', N'9e6b80b8-6780-da50-f18f-30e6fe7b01b9', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2691, N'METHITEST (Oral Pill)', 1506602, N'Methyltestosterone', N'77bb4ef4-c10e-4acc-8225-651d003f4561', CAST(N'2015-05-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2692, N'Methocarbamol (Injectable)', 704943, N'Methocarbamol', N'8f91e243-7395-4ec9-adf5-37520983daf2', CAST(N'2014-12-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2693, N'Methocarbamol (Oral Pill)', 704943, N'Methocarbamol', N'32863f21-30ff-4a8b-a2e6-8ab14a37af0d', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2694, N'Methohexital (Injectable)', 19005015, N'Methohexital', N'eccd8340-ead3-4363-8902-0c19d33aa2ac', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2695, N'Methotrexate (Injectable)', 1305058, N'Methotrexate', N'6cf2e15a-6286-41f7-aa7d-3968d735c864', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2696, N'Methotrexate (Oral Pill)', 1305058, N'Methotrexate', N'27dd39ca-207e-44db-8da1-a0689f0d6b6f', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2697, N'Methoxsalen (Injectable)', 905223, N'Methoxsalen', N'5ad333bd-845f-43f8-9ecf-43491f26c7c7', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2698, N'Methoxsalen (Oral Pill)', 905223, N'Methoxsalen', N'ae951dc4-9031-43bf-943c-cb2366951f23', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2699, N'Methscopolamine (Oral Pill)', 1158632, N'Methscopolamine', N'5c74bfb0-c80a-4a86-acd1-1e3a1b20255d', CAST(N'2013-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2700, N'Methyclothiazide (Oral Pill)', 905273, N'Methyclothiazide', N'4910dad2-c533-4232-85bf-e6b0235379c2', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2701, N'Methyl salicylate (Topical)', 909440, N'methyl salicylate', N'17d8e13d-daf8-4bf6-acd8-2ebbd2dd1d22', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2702, N'Methylcellulose (Oral Liquid)', 905371, N'Methylcellulose', N'9d5f2244-a610-4d45-b6e8-e79bb17a558f', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2703, N'Methylcellulose (Oral Pill)', 905371, N'Methylcellulose', N'8a4f9f08-45bc-4642-a382-bf1c623e2bcc', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2704, N'Methyldopa (Oral Pill)', 1305447, N'Methyldopa', N'00206aae-7db1-4ae9-8500-b03fd6788d74', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2705, N'Methylene blue (Injectable)', 905518, N'Methylene blue', N'fde64824-2be5-4d85-8d57-5098ca6890bb', CAST(N'2011-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2706, N'Methylergonovine (Injectable)', 1305637, N'Methylergonovine', N'a9a3079e-b62b-4858-920e-d8f5cb38481e', CAST(N'2013-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2707, N'Methylergonovine (Oral Pill)', 1305637, N'Methylergonovine', N'047d3ab6-1f93-4080-95c1-f938ce8d5532', CAST(N'2013-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2708, N'Methylphenidate (Chewable)', 705944, N'Methylphenidate', N'16508cc6-13c7-4088-927a-b7206eb7c633', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2709, N'Methylphenidate (Oral Liquid)', 705944, N'Methylphenidate', N'7b372d74-7ba7-437a-be8c-6e8335b78818', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2710, N'Methylphenidate (Oral Pill)', 705944, N'Methylphenidate', N'330e620f-4b7f-4101-91dd-feddb7a823ed', CAST(N'2015-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2711, N'methylPREDNISolone (Injectable)', 1506270, N'Methylprednisolone', N'9ac89740-8d4f-4d37-be69-df986d9da69f', CAST(N'2015-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2712, N'methylPREDNISolone (Oral Pill)', 1506270, N'Methylprednisolone', N'a82cafa3-f540-4c15-a2e0-faafe91d0820', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2713, N'methylPREDNISolone (Topical)', 1506270, N'Methylprednisolone', N'f8432414-d8a6-4597-a226-61fd09a80e0c', CAST(N'2011-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2714, N'methylTESTOSTERone (Oral Pill)', 1506602, N'Methyltestosterone', N'09db5a9d-9662-4bfb-824c-9c9aaad488dc', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2715, N'Methysergide (Oral Pill)', 1106740, N'Methysergide', N'3fae28ee-700e-4d4f-a040-02ef01a2aeb4', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2716, N'Metipranolol (Ophthalmic)', 905531, N'Metipranolol', N'699ce415-0798-4244-b5ec-bcdb383b50b3', CAST(N'2011-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2717, N'Metoclopramide (Injectable)', 906780, N'Metoclopramide', N'b78499dc-4d24-4226-be97-dc618d9da0cf', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2718, N'Metoclopramide (Oral Disintegrating)', 906780, N'Metoclopramide', N'3fb9a45e-48ba-45c5-86a7-03a8744888f6', CAST(N'2014-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2719, N'Metoclopramide (Oral Liquid)', 906780, N'Metoclopramide', N'4e12e98a-06fe-4b3c-bb64-f2701e195c74', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2720, N'Metoclopramide (Oral Pill)', 906780, N'Metoclopramide', N'c06f0098-193c-48e4-9629-8f4e69171bc6', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2721, N'Metolazone (Oral Pill)', 907013, N'Metolazone', N'c893c914-6195-45fa-a2bc-4e8b78004737', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2722, N'METOPIRONE (Oral Pill)', 19007490, N'Metyrapone', N'3a27d0ef-83a7-4e1c-9430-46a3326ee8d8', CAST(N'2014-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2723, N'Metoprolol (Injectable)', 1307046, N'Metoprolol', N'ffd837ea-551d-4b98-96e1-80c29ac32b20', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2724, N'Metoprolol (Oral Pill)', 1307046, N'Metoprolol', N'59019362-b71d-479b-ba90-7c4923a8a044', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2725, N'Metreleptin (Injectable)', 44814585, N'metreleptin', N'b6349e72-8bbb-40c6-ab31-89f7b1cce914', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2726, N'METROCREAM (Topical)', 1707164, N'Metronidazole', N'43d5e570-f359-564d-9bb4-51784ad97b6f', CAST(N'2011-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2727, N'METROGEL (Topical)', 1707164, N'Metronidazole', N'ab3a8a2d-714a-4beb-af8a-99bc3ac3ebbe', CAST(N'2012-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2728, N'METROGEL (Vaginal)', 1707164, N'Metronidazole', N'bd3b62b6-4a80-495b-a1d3-d54eb15baf79', CAST(N'2011-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2729, N'METROLOTION (Topical)', 1707164, N'Metronidazole', N'c4e07c26-245d-3e51-6a47-fccde22334d2', CAST(N'2011-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2730, N'metroNIDAZOLE (Injectable)', 1707164, N'Metronidazole', N'a7276a00-bb2f-4876-b58b-f2e953d716e4', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2731, N'metroNIDAZOLE (Oral Pill)', 1707164, N'Metronidazole', N'5911e8f2-1b3a-4222-b997-d2a1c9a9f535', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2732, N'metroNIDAZOLE (Topical)', 1707164, N'Metronidazole', N'5f6014f9-4a54-47c6-a290-01472e6c0fe7', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2733, N'metroNIDAZOLE (Vaginal)', 1707164, N'Metronidazole', N'526c226a-099b-4eb3-943d-c88b2763b2c1', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2734, N'Metyrapone (Oral Pill)', 19007490, N'Metyrapone', N'3a27d0ef-83a7-4e1c-9430-46a3326ee8d8', CAST(N'2014-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2735, N'Metyrosine (Oral Pill)', 1401581, N'Metyrosine', N'32fb2f2f-34b5-4cd5-9145-c3ab37c5ca92', CAST(N'2011-03-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2736, N'Mexiletine (Oral Pill)', 1307542, N'Mexiletine', N'25b8c89e-450c-4a1d-9053-1eb97b868a98', CAST(N'2014-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2737, N'MIACALCIN (Injectable)', 1537655, N'salmon calcitonin', N'f9d5a587-e2bc-4001-987d-9b04731303cb', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2738, N'MIACALCIN (Nasal)', 1537655, N'salmon calcitonin', N'e147226d-7bf3-4f72-959b-8abd6464fbcd', CAST(N'2014-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2739, N'MI-ACID (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'cd711cb3-293b-42f1-a853-ab02d2054e4e', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2740, N'MI-ACID GAS RELIEF (Chewable)', 966991, N'Simethicone', N'f9f2b13c-6965-4971-8f93-fb1cdbaebc42', CAST(N'2012-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2741, N'Micafungin (Injectable)', 19018013, N'micafungin', N'bc234dd7-5221-4a68-b153-aa0393c75bbf', CAST(N'2014-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2742, N'MICARDIS (Oral Pill)', 1317640, N'telmisartan', N'3bb7bc69-7752-4c16-9c60-e61eb5355a4d', CAST(N'2012-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2743, N'MICARDIS-HCT (Oral Pill)', 974166, N'Hydrochlorothiazide', N'539cdfb4-b920-48fb-8176-fe23841e3d32', CAST(N'2012-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2744, N'MICATIN (Topical)', 907879, N'Miconazole', N'96c56ba1-c3a8-48ce-ab58-550959485e3c', CAST(N'2011-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2745, N'Miconazole (Buccal)', 907879, N'Miconazole', N'ef3b205e-8526-48a0-afce-ddcef865d907', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2746, N'Miconazole (Topical)', 907879, N'Miconazole', N'83c592b4-4b17-4fe1-91ec-778c949e6196', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2747, N'Miconazole (Vaginal)', 907879, N'Miconazole', N'79b61ece-7590-4448-86fa-28ab3d3cc074', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2748, N'Miconazole/Petrolatum/Zinc Oxide (Topical)', 907879, N'Miconazole', N'8d8aaac5-3203-4ade-ae74-e2ea469dae18', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2749, N'MICORT-HC (Topical)', 975125, N'Hydrocortisone', N'a08b5877-e83e-449f-865e-30fcfbde665f', CAST(N'2008-02-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2750, N'MICRO-GUARD (Topical)', 907879, N'Miconazole', N'a43a94d0-fec0-470f-bdb4-535dcce6d1e0', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2751, N'MICRO-K XR (Oral Pill)', 19049105, N'Potassium Chloride', N'cb128705-d8c7-4341-a976-d8fd7371df6d', CAST(N'2009-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2752, N'Midazolam (Injectable)', 708298, N'Midazolam', N'a91ce254-14a3-4cbf-8ab8-5da252aa3fdc', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2753, N'Midazolam (Oral Liquid)', 708298, N'Midazolam', N'a833c24b-6dca-44d7-a0d6-20012fa1ea77', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2754, N'Midodrine (Oral Pill)', 1308368, N'Midodrine', N'964e3631-bcd2-49dd-8dbf-9e1de42cebc4', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2755, N'MIDOL CRAMPS & BODYACHES (Oral Pill)', 1177480, N'Ibuprofen', N'59257aae-3057-4109-923c-8baf7ea3d07b', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2756, N'Mifepristone (Oral Pill)', 1508439, N'Mifepristone', N'542f3fae-8bc8-4f00-9228-e4b66c9ad6a9', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2757, N'MIGERGOT (Rectal)', 1134439, N'Caffeine', N'3a31ad0c-7bdd-544b-f5df-a99d04cf541c', CAST(N'2015-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2758, N'Miglitol (Oral Pill)', 1510202, N'miglitol', N'192e6ed7-9e8c-4772-9e3b-5912a1c63a31', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2759, N'Miglustat (Oral Pill)', 19045272, N'Miglustat', N'817892d1-ee12-4632-85fc-57ccdf16d7b8', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2760, N'MILLIPRED (Oral Liquid)', 1550557, N'prednisolone', N'12d46d10-00b9-45d5-81f9-e9b31083ae89', CAST(N'2014-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2761, N'MILLIPRED (Oral Pill)', 1550557, N'prednisolone', N'863ad743-eec0-46f0-beba-c1556384c636', CAST(N'2014-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2762, N'Milnacipran (Oral Pill)', 19080226, N'milnacipran', N'd4e56a10-3b29-4270-ab42-60dc74049cc5', CAST(N'2013-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2763, N'Milrinone (Injectable)', 1368671, N'Milrinone', N'88f78780-399f-4780-be19-205739db1682', CAST(N'2014-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2764, N'Miltefosine (Oral Pill)', 44816310, N'miltefosine', N'd6658aeb-7bc1-4eef-ad0d-0a873ddbecf5', CAST(N'2014-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2765, N'MINERAL ICE (Topical)', 901656, N'Menthol', N'aa7e4592-76d4-43cd-9e4b-3a112672c305', CAST(N'2011-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2766, N'Mineral Oil (Oral Liquid)', 908523, N'Mineral Oil', N'd1228aa1-3c25-4290-abe2-dd2640125280', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2767, N'Mineral Oil (Rectal)', 908523, N'Mineral Oil', N'df5976d2-5e06-47f3-9173-66c290d10b3a', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2768, N'Mineral Oil (Topical)', 908523, N'Mineral Oil', N'4ecd873b-b915-4132-ae78-b8826293a906', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2769, N'Mineral Oil, Light (Oral Liquid)', 978577, N'Mineral Oil, Light', N'fad02e6f-4735-4e6b-8afd-d61db6533c2a', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2770, N'Mineral Oil/Petrolatum (Ophthalmic)', 908523, N'Mineral Oil', N'6a4a2053-f947-4ce3-a885-a1c1465c8b0b', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2771, N'Mineral Oil/Petrolatum/Phenylephrine (Rectal)', 908523, N'Mineral Oil', N'edf9f8d5-f55d-4c31-adfb-ba77ca24cc3d', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2772, N'Mineral Oil/Petrolatum/Phenylephrine/Shark liver oil (Rectal)', 908523, N'Mineral Oil', N'c249615a-65a3-49bb-a512-445d18ccf125', CAST(N'2012-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2773, N'Mineral Oil/Pramoxine/Zinc Oxide (Rectal)', 908523, N'Mineral Oil', N'347ff421-3ad9-409f-8731-af0183682e12', CAST(N'2012-08-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2774, N'MINIDROPS (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'4c3cfc48-cb7d-4b11-9b3c-11610e82d551', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2775, N'MINIPRESS (Oral Pill)', 1350489, N'Prazosin', N'36c4da56-502e-4da1-acf7-8e81ee453dcc', CAST(N'2015-04-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2776, N'MINIPRIN (Oral Pill)', 1112807, N'Aspirin', N'5a38a643-55b0-4a6c-84e1-ee2374435114', CAST(N'2012-05-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2777, N'MINIZIDE (Oral Pill)', 948787, N'Polythiazide', N'17367e1c-a4ad-451b-92c4-95565312e51a', CAST(N'2008-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2778, N'MINOCIN (Oral Pill)', 1708880, N'Minocycline', N'b1a6939e-8d77-449d-b55f-0fd9a500352a', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2779, N'Minocycline (Injectable)', 1708880, N'Minocycline', N'84acbae4-d385-49d0-9e7b-5ae0e8de3053', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2780, N'Minocycline (Oral Pill)', 1708880, N'Minocycline', N'174d642b-70b1-45b0-ad33-a4847feb1a8f', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2781, N'Minocycline (Oral Powder)', 1708880, N'Minocycline', N'8515df41-1936-4f3b-86ba-d2bb2a8441fb', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2782, N'Minoxidil (Oral Pill)', 1309068, N'Minoxidil', N'02d7399f-94cc-f718-f214-587301edd138', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2783, N'Minoxidil (Topical)', 1309068, N'Minoxidil', N'5768ad6b-9ca9-4fa9-9fc9-a703c4bd7718', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2784, N'MINTOX PLUS (Chewable)', 985247, N'Aluminum Hydroxide', N'a9d41e6e-2a8c-43aa-8b88-221a8d172d13', CAST(N'2012-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2785, N'MINTOX PLUS (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'536b143d-a1d7-4972-a90b-248e41937070', CAST(N'2013-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2786, N'MIOCHOL (Injectable)', 19037624, N'Acetylcholine', N'e701ef07-9499-4b56-931f-f4eb3eedbe24', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2787, N'MIOSTAT (Injectable)', 940183, N'Carbachol', N'f28d7a56-e079-4a8b-ad81-9a97c780de67', CAST(N'2011-07-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2788, N'MIRALAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'1771d3bf-954d-49ea-b260-3d356e5dcfa5', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2789, N'MIRAPEX (Oral Pill)', 720810, N'Pramipexole', N'3736d691-e8b9-4fdd-aeca-9e96cf907c51', CAST(N'2011-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2790, N'Mirtazapine (Oral Disintegrating)', 725131, N'Mirtazapine', N'73b7bbd9-7dba-4559-890f-3f8dd821e215', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2791, N'Mirtazapine (Oral Pill)', 725131, N'Mirtazapine', N'ee6c42d0-f92c-4361-8b98-5375b1fbd44c', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2792, N'Misoprostol (Oral Pill)', 1150871, N'Misoprostol', N'83554310-3991-4a9d-92f1-d71ccfd0fb3a', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2793, N'MITIGARE (Oral Pill)', 1101554, N'Colchicine', N'cb5f9d85-6b81-49f8-bcd6-17b7bfbc10f2', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2794, N'mitoMYcin (Injectable)', 1389036, N'Mitomycin', N'd80c6dc0-5f26-4d7a-a0f7-7698ab4f249a', CAST(N'2013-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2795, N'mitoMYcin (Ophthalmic)', 1389036, N'Mitomycin', N'244002c6-c61d-43fe-9326-072797113979', CAST(N'2012-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2796, N'MITOSOL (Ophthalmic)', 1389036, N'Mitomycin', N'244002c6-c61d-43fe-9326-072797113979', CAST(N'2012-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2797, N'Mitotane (Oral Pill)', 1309161, N'Mitotane', N'e9fba7d4-a0ec-4bfa-9b5b-ec97a9710fd3', CAST(N'2014-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2798, N'mitoXANtrone (Injectable)', 1309188, N'Mitoxantrone', N'c101cb05-faaa-44cb-9666-c8214628c844', CAST(N'2015-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2799, N'Mivacurium (Injectable)', 19010459, N'mivacurium', N'98ca2c17-43e2-49af-abbc-f870877e5786', CAST(N'2009-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2800, N'MOBIC (Oral Liquid)', 1150345, N'meloxicam', N'676e73fb-51d2-449a-8749-1a7bcc257b11', CAST(N'2012-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2801, N'MOBIC (Oral Pill)', 1150345, N'meloxicam', N'dbbc6373-e9ae-4215-8d08-5f6667a936d1', CAST(N'2012-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2802, N'MOBISYL (Topical)', 943116, N'trolamine salicylate', N'4d3e0e75-cd77-4174-9316-163f5fe05349', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2803, N'Modafinil (Oral Pill)', 710650, N'modafinil', N'9f3b0bd2-72a3-411f-aeec-b533373f1a97', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2804, N'Moexipril (Oral Pill)', 1310756, N'moexipril', N'e16c2ad3-1ce5-48fc-96b2-5d63dc6b68d5', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2805, N'Molindone (Oral Pill)', 709699, N'Molindone', N'138e8ca3-9a12-4c48-95c0-85bd01c79b13', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2806, N'Molybdenum (Injectable)', 19009896, N'Molybdenum', N'43558add-4c7e-4fe6-ad36-cdceaff99bfb', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2807, N'Mometasone (Implant)', 905233, N'Mometasone', N'6befbf16-3f60-4ce8-94ec-5ce6a2b7f4e1', CAST(N'2015-01-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2808, N'Mometasone (Topical)', 905233, N'Mometasone', N'c337bce8-27e9-48fd-85fa-381d0242a36a', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2809, N'MONISTAT (Topical)', 907879, N'Miconazole', N'cb161d23-bc41-4cec-9e42-dfeef861d161', CAST(N'2007-05-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2810, N'MONISTAT (Vaginal)', 907879, N'Miconazole', N'a0cb19fd-fd7e-4b19-9b35-092878dd52a7', CAST(N'2014-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2811, N'MONISTAT SOOTHING CARE (Topical)', 916662, N'dimethicone', N'07d7c883-1fa3-4786-905c-a1fab649765e', CAST(N'2014-04-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2812, N'MONOCLATE-P (Injectable)', 1352213, N'Factor VIII', N'd9c17023-cbff-4d95-8f44-ef842d59d938', CAST(N'2014-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2813, N'Monofluorophosphate (Toothpaste)', 19068715, N'monofluorophosphate', N'5c92500d-d151-44c9-9cea-81e89adae9dd', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2814, N'MONOKET (Oral Pill)', 1383815, N'Isosorbide', N'd8f4202c-5103-40dc-9309-dcf72da02d0d', CAST(N'2014-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2815, N'Montelukast (Chewable)', 1154161, N'montelukast', N'09692f56-468c-4884-ae95-d2fb9d984e4c', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2816, N'Montelukast (Oral Granules)', 1154161, N'montelukast', N'67070e4e-f755-46b3-b900-fcc1993a0546', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2817, N'Montelukast (Oral Pill)', 1154161, N'montelukast', N'2f90a573-27fd-cc16-f3d1-8c4d630224a0', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2818, N'MORGIDOX (Oral Pill)', 1738521, N'Doxycycline', N'd95bdf63-69a2-47b9-b909-97c74b6d7731', CAST(N'2011-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2819, N'morphine (Injectable)', 1110410, N'Morphine', N'ebb18761-e5c4-4238-bb84-f9549f500210', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2820, N'morphine (Oral Liquid)', 1110410, N'Morphine', N'9740d1b2-d140-4959-a94b-843d4bf139c2', CAST(N'2014-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2821, N'morphine (Oral Pill)', 1110410, N'Morphine', N'67b3273e-af71-4dac-8e49-8bc134d4c591', CAST(N'2014-07-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2822, N'morphine (Rectal)', 1110410, N'Morphine', N'649d731b-962a-45df-b043-7e0781e8a530', CAST(N'2012-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2823, N'Morphine Liposomal (Injectable)', 19112635, N'Morphine Liposomal', N'cc8f105c-c8ee-4c57-86ee-ee6bf917cf78', CAST(N'2008-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2824, N'morphine XR (Oral Pill)', 1110410, N'Morphine', N'6c826b0a-ac87-48cc-a780-9a4a2118e8a8', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2825, N'morphine/Naltrexone XR (Oral Pill)', 1110410, N'Morphine', N'dfe97a3d-247d-4dda-a641-1a95196cd8d8', CAST(N'2010-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2826, N'MOTRIN (Oral Liquid)', 1177480, N'Ibuprofen', N'f2609308-17bf-4bcb-84b2-d17f3fd35958', CAST(N'2012-07-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2827, N'MOTRIN (Oral Pill)', 1177480, N'Ibuprofen', N'5715910e-33be-49bd-8a1f-eeb46320e28d', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2828, N'MOTRIN PM (Oral Pill)', 1129625, N'Diphenhydramine', N'55403f19-58ae-450b-8a7b-0bc544088f20', CAST(N'2013-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2829, N'Mountain cedar pollen extract (Injectable)', 40161989, N'mountain cedar pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2830, N'MOVANTIK (Oral Pill)', 45774613, N'naloxegol', N'f49c6978-ca7b-4a66-919b-757f8f92ef64', CAST(N'2015-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2831, N'MOXATAG XR (Oral Pill)', 1713332, N'Amoxicillin', N'35e9aa4c-fd8d-4444-9d1a-62723ba29491', CAST(N'2015-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2832, N'Moxifloxacin (Injectable)', 1716903, N'moxifloxacin', N'a4e28b09-714b-46e7-b4e6-0163cad78fc5', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2833, N'Moxifloxacin (Ophthalmic)', 1716903, N'moxifloxacin', N'750fd60e-c0c4-4f32-8301-6baa3516aef2', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2834, N'Moxifloxacin (Oral Pill)', 1716903, N'moxifloxacin', N'fe9226f8-64f4-4eff-8339-ed3fce0896f2', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2835, N'MOZOBIL (Injectable)', 19017581, N'Plerixafor', N'0ed08d2b-5051-46b2-aa37-1d6275bf9003', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2836, N'MS CONTIN XR (Oral Pill)', 1110410, N'Morphine', N'989a17e2-b7fd-478c-a584-327d368247ce', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2837, N'MUCINEX (Oral Granules)', 1163944, N'Guaifenesin', N'fd8a69aa-eb75-4e7a-8b6e-3361f810c578', CAST(N'2012-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2838, N'MUCINEX (Oral Liquid)', 1163944, N'Guaifenesin', N'99af22e4-35a2-4a98-ab38-22a649d5c356', CAST(N'2014-11-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2839, N'MUCINEX CHILDREN''S COUGH (Oral Granules)', 1119510, N'Dextromethorphan', N'a6617fb9-aee1-4f4b-8888-792338861564', CAST(N'2014-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2840, N'MUCINEX COUGH (Oral Liquid)', 1119510, N'Dextromethorphan', N'ce565113-e9e3-46de-84f7-3a432acb0e4b', CAST(N'2014-11-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2841, N'MUCINEX NASAL SPRAY (Nasal)', 925636, N'Oxymetazoline', N'2627d0a0-7382-4e90-ba00-911d3be11195', CAST(N'2012-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2842, N'MUCINEX STUFFY NOSE & COLD (Oral Liquid)', 1163944, N'Guaifenesin', N'8d0f2a01-f58b-43c0-b3f6-a88f9eb39c52', CAST(N'2013-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2843, N'Mucor extract (Injectable)', 40161334, N'Mucor extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2844, N'Mulberry pollen extract (Injectable)', 40172305, N'mulberry pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2845, N'MULTAQ (Oral Pill)', 40163615, N'dronedarone', N'236d4549-f44b-4677-b857-acedd10b9920', CAST(N'2011-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2846, N'MULTITRACE-4 (Injectable)', 19049877, N'chromic chloride', N'9f5b05b4-194d-4630-9218-3db8543b125b', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2847, N'Mupirocin (Nasal)', 951511, N'Mupirocin', N'b5777cde-7cd5-4fc8-a5a1-0ef4ddf6b5b1', CAST(N'2013-03-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2848, N'Mupirocin (Topical)', 951511, N'Mupirocin', N'e2ddaea4-d914-4bc7-8913-351e7bf2e2f7', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2849, N'MURO 128 (Ophthalmic)', 967823, N'Sodium Chloride', N'93fafa27-5031-4d95-b4b8-5574b7204ae2', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2850, N'Muromonab-CD3 (Injectable)', 19051865, N'Muromonab-CD3', N'2a1f1c18-fa95-45e6-bd00-ac53c73f4747', CAST(N'2011-06-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2851, N'MY WAY (Oral Pill)', 1589505, N'Levonorgestrel', N'c749c15a-2c92-4db9-a6b9-fdf18da5b7da', CAST(N'2014-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2852, N'MYALEPT (Injectable)', 44814585, N'metreleptin', N'b6349e72-8bbb-40c6-ab31-89f7b1cce914', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2853, N'MYAMBUTOL (Oral Pill)', 1749301, N'Ethambutol', N'92e486cf-3a07-4178-b4df-52226e0401e1', CAST(N'2014-12-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2854, N'MYCAMINE (Injectable)', 19018013, N'micafungin', N'bc234dd7-5221-4a68-b153-aa0393c75bbf', CAST(N'2014-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2855, N'MYCELEX TROCHES (Oral Lozenge)', 1000632, N'Clotrimazole', N'7464e883-6286-4f04-ae38-b7ddc3fec754', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2856, N'Mycophenolate mofetil (Oral Pill)', 19003999, N'mycophenolate mofetil', N'085fa99c-8795-4abf-83cd-b0864f033d19', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2857, N'Mycophenolic Acid (Oral Pill)', 19012565, N'Mycophenolic Acid', N'26b31126-4262-4a15-8a16-234c86763176', CAST(N'2015-03-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2858, N'MYDRIACYL (Ophthalmic)', 906072, N'Tropicamide', N'0d4f4a2e-eb00-4c65-b3fa-baf5738d468d', CAST(N'2011-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2859, N'MYKROX (Oral Pill)', 907013, N'Metolazone', N'dffb4544-0e47-40cd-9baa-d622075838cc', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2860, N'MYLERAN (Oral Pill)', 1333357, N'Busulfan', N'bf456fc7-3a79-47f7-8acc-600b5e2f0dc2', CAST(N'2012-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2861, N'MYOCHRYSINE (Injectable)', 1152134, N'Aurothiomalate', N'a29045b5-ba4f-407a-a0fd-3ef7e1ce64ee', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2862, N'MYOFLEX (Topical)', 943116, N'trolamine salicylate', N'94baa7ac-b84b-4ca7-ac4a-c915ad8bf2e3', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2863, N'MYTAB GAS (Chewable)', 966991, N'Simethicone', N'7feddfe6-15a2-4049-8635-860e9b0d2f80', CAST(N'2012-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2864, N'Nabilone (Oral Pill)', 913440, N'nabilone', N'a7a2a4e1-9ecd-4e59-82b5-2068b5e50164', CAST(N'2015-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2865, N'Nabumetone (Oral Pill)', 1113648, N'nabumetone', N'b2ab77f7-4637-4977-8b4b-02ea01fee183', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2866, N'Nadolol (Oral Pill)', 1313200, N'Nadolol', N'd208918b-a356-4924-91d9-9593981fe0a6', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2867, N'Nafcillin (Injectable)', 1713930, N'Nafcillin', N'90717878-64cb-4ffc-90bc-7b4e81e3d1cd', CAST(N'2015-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2868, N'Naftifine (Topical)', 914053, N'naftifine', N'ee46c902-8a59-40f7-ac99-e96a8b981d60', CAST(N'2015-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2869, N'NAFTIN (Topical)', 914053, N'naftifine', N'e516fb5a-5c9b-4a74-9beb-423f2b345dde', CAST(N'2013-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2870, N'NALFON (Oral Pill)', 1153928, N'Fenoprofen', N'dfc2ab1e-0d75-4eff-9489-2afb51b02702', CAST(N'2012-09-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2871, N'Naloxegol (Oral Pill)', 45774613, N'naloxegol', N'f49c6978-ca7b-4a66-919b-757f8f92ef64', CAST(N'2015-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2872, N'Naloxone (Injectable)', 1114220, N'Naloxone', N'3ce7dbb4-3d14-43f0-80d6-0deb79a7aea6', CAST(N'2014-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2873, N'Naloxone/Pentazocine (Oral Pill)', 1114220, N'Naloxone', N'05a17f16-c982-4a54-80cd-079959ab49a7', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2874, N'Naltrexone (Oral Pill)', 1714319, N'Naltrexone', N'81e25c6a-81b6-4cfb-91bf-be20c3ae546b', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2875, N'NAMENDA (Oral Liquid)', 701322, N'Memantine', N'b9f27baf-aa2a-443a-9ef5-e002d23407ba', CAST(N'2013-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2876, N'NAMENDA (Oral Pill)', 701322, N'Memantine', N'1e3c74c9-0017-4d7a-a716-2b5366286a67', CAST(N'2015-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2877, N'Nandrolone (Injectable)', 1514412, N'Nandrolone', N'a586b484-1b46-40b9-9508-fd28002ad383', CAST(N'2007-02-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2878, N'Naphazoline (Nasal)', 914533, N'Naphazoline', N'ec2bb7d7-d014-46ed-a836-453e921da4c5', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2879, N'Naphazoline (Ophthalmic)', 914533, N'Naphazoline', N'0f25812f-96ab-44f4-bacf-2eb012cbddc7', CAST(N'2015-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2880, N'Naphazoline/Pheniramine (Ophthalmic)', 914533, N'Naphazoline', N'78c5250c-b27c-4b1d-a4b8-571973ac3ae4', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2881, N'NAPHCON (Ophthalmic)', 914533, N'Naphazoline', N'9951c888-4b6a-4c76-a9c1-dc3a0c777191', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2882, N'NAPHCON A (Ophthalmic)', 914533, N'Naphazoline', N'b83701b9-9331-484f-8e84-6e241e621ff3', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2883, N'NAPROSYN (Oral Pill)', 1115008, N'Naproxen', N'523b3f51-1d52-46ea-85a9-9d01cd29b4f8', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2884, N'Naproxen (Oral Pill)', 1115008, N'Naproxen', N'a92bf444-0ae7-4365-831e-9fd37d59d5fa', CAST(N'2015-09-30 00:00:00.000' AS DateTime), 494, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2885, N'Naratriptan (Oral Pill)', 1118117, N'naratriptan', N'41c29652-32f8-48dc-9038-0e2195aa2084', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2886, N'NAROPIN (Injectable)', 1136487, N'ropivacaine', N'56dfabf7-f7a8-4601-b17a-cb16fb995b0f', CAST(N'2014-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2887, N'NASCOBAL (Nasal)', 1308738, N'Vitamin B 12', N'ee2b4869-cd13-489b-b12f-1ce4fe081157', CAST(N'2007-05-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2888, N'NASOPEN PE (Oral Liquid)', 1135766, N'Phenylephrine', N'5e133352-255f-41cc-aacc-0508d634368d', CAST(N'2014-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2889, N'NATACYN (Ophthalmic)', 915392, N'Natamycin', N'd262661c-860d-482e-aa8d-3cf1f252b32a', CAST(N'2011-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2890, N'Natamycin (Ophthalmic)', 915392, N'Natamycin', N'd262661c-860d-482e-aa8d-3cf1f252b32a', CAST(N'2011-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2891, N'Nateglinide (Oral Pill)', 1502826, N'nateglinide', N'f7b28951-76d2-cabd-64a1-b74aa225c6e9', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2892, N'NATRECOR (Injectable)', 1338985, N'Nesiritide', N'44c45bfe-461f-4398-8f20-ea771b2403ee', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2893, N'NATROBA (Shampoo)', 40172543, N'spinosad', N'fa90ccc8-2df0-49f7-8878-2b33e34cd272', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2894, N'NATURE''S TEARS (Ophthalmic)', 902251, N'hypromellose', N'3bb70d72-f763-4486-8f6a-d37ece21292b', CAST(N'2011-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2895, N'NAUZENE (Chewable)', 956691, N'Fructose', N'a60660b2-c5db-45a0-885f-de93e655380d', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2896, N'NAUZENE (Oral Liquid)', 956691, N'Fructose', N'728376f5-6cab-404e-b519-f6c595291d6f', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2897, N'Nebivolol (Oral Pill)', 1314577, N'nebivolol', N'673f5ad2-c09b-4a89-9407-efdadd007917', CAST(N'2015-05-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2898, N'NEBUPENT (Inhalant)', 1730370, N'Pentamidine', N'e2ad9d3c-b6c3-4f70-87e0-722a8ff94ccb', CAST(N'2011-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2899, N'Nedocromil (Ophthalmic)', 1114620, N'Nedocromil', N'2fe8d7ad-2158-4169-94b0-719ad20242b7', CAST(N'2013-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2900, N'Nefazodone (Oral Pill)', 714684, N'nefazodone', N'4afee435-ae60-4260-a1df-e52abf7a043d', CAST(N'2014-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2901, N'Nelfinavir (Oral Pill)', 1715472, N'Nelfinavir', N'84948e6a-971f-4e86-928e-7d32a1883a23', CAST(N'2013-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2902, N'NEMBUTAL SODIUM (Injectable)', 730729, N'Pentobarbital', N'5c380ab0-4386-48b6-80ab-ca594b23bc74', CAST(N'2012-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2903, N'NEOBENZ MICRO WASH (Soap)', 918172, N'Benzoyl Peroxide', N'375bf717-5d70-457e-8b74-1f66f4f08b79', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2904, N'NEOCIDIN OINTMENT (Ophthalmic)', 915175, N'Bacitracin', N'0ea2cee7-197e-405b-a7d4-f470a69a5178', CAST(N'2010-11-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2905, N'NEOCIDIN SOLUTION (Ophthalmic)', 963742, N'Gramicidin', N'b7aa0bae-255b-4792-a963-6606370a175f', CAST(N'2009-11-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2906, N'Neomycin (Oral Liquid)', 915981, N'Neomycin', N'aea1d3e4-604a-4680-91e2-cce6a128a1b5', CAST(N'2013-04-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2907, N'Neomycin (Oral Pill)', 915981, N'Neomycin', N'777dbfab-f83e-4738-ae1e-78619a9f82a7', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2908, N'Neomycin/Polymyxin B (Irrigation)', 915981, N'Neomycin', N'1a9f81d8-277d-4f2c-39b0-412e01954f8a', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2909, N'Neomycin/Polymyxin B (Ophthalmic)', 915981, N'Neomycin', N'7218af16-9378-472a-a033-4c9f9d5524db', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2910, N'Neomycin/Polymyxin B/Pramoxine (Topical)', 915981, N'Neomycin', N'a325abf1-f239-4824-ba6c-cf1029ae1326', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2911, N'NEO-POLYCIN (Ophthalmic)', 915175, N'Bacitracin', N'cf18b051-b656-4f46-8b69-a1df6f5d8d29', CAST(N'2015-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2912, N'NEOSPORIN ECZEMA (Topical)', 975125, N'Hydrocortisone', N'dc9e9509-c2d4-4480-bbaa-009fc5ccf9fc', CAST(N'2011-11-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2913, N'NEOSPORIN G. U. IRRIGANT (Irrigation)', 915981, N'Neomycin', N'1a9f81d8-277d-4f2c-39b0-412e01954f8a', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2914, N'NEOSPORIN MOISTURIZING (Topical)', 986261, N'Colloidal oatmeal', N'5173b0c9-25b3-44e0-83a2-83079b5b0c03', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2915, N'NEOSPORIN NEO TO GO (Topical)', 916460, N'Benzalkonium', N'a092b2ff-18fb-481a-a17d-984a91cbaec7', CAST(N'2013-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2916, N'NEOSPORIN OINTMENT (Topical)', 915175, N'Bacitracin', N'76d1c487-8974-4fe1-a874-d7313c960456', CAST(N'2011-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2917, N'NEOSPORIN PLUS MAXIMUM STRENGTH (Topical)', 915175, N'Bacitracin', N'fd3a35c9-428a-4136-9833-531413e9ec35', CAST(N'2012-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2918, N'NEOSPORIN PLUS MAXIMUM STRENGTH CREAM (Topical)', 915981, N'Neomycin', N'8398f0d1-cb06-4b69-ba16-b8073faed8e4', CAST(N'2013-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2919, N'NEOSPORIN SOLUTION (Ophthalmic)', 963742, N'Gramicidin', N'33e9b6d3-2b2b-4036-dd89-47177e23fcfe', CAST(N'2011-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2920, N'Neostigmine (Injectable)', 717136, N'Neostigmine', N'9dde8277-e2e8-4733-b18d-60124cde070e', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2921, N'NEO-SYNALAR (Topical)', 996541, N'fluocinolone', N'e96ae9cf-e829-466f-b66d-ede83b4d8b3d', CAST(N'2014-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2922, N'NEO-SYNEPHRINE (Nasal)', 1135766, N'Phenylephrine', N'03d3ecdf-782a-44d2-bd59-1b010552c4fb', CAST(N'2015-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2923, N'NEOVA COMPLEX HQ PLUS (Topical)', 976778, N'hydroquinone', N'dd3ce6f2-ed6e-448b-9924-bb1632a83c69', CAST(N'2014-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2924, N'Nepafenac (Ophthalmic)', 909795, N'nepafenac', N'4c9ae54a-97a0-4613-a092-31e86d9bfc91', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2925, N'NEPTAZANE (Oral Pill)', 904250, N'Methazolamide', N'7731560b-dbe7-4912-814e-ef60629e5f07', CAST(N'2015-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2926, N'NESACAINE (Injectable)', 19049410, N'chloroprocaine', N'a844e68a-1462-40e4-be5e-f56214906eb9', CAST(N'2014-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2927, N'NESINA (Oral Pill)', 43013884, N'alogliptin', N'a3768c7e-aa4c-44d3-bc53-43bb7346c0b0', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2928, N'Nesiritide (Injectable)', 1338985, N'Nesiritide', N'44c45bfe-461f-4398-8f20-ea771b2403ee', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2929, N'NEUAC (Topical)', 918172, N'Benzoyl Peroxide', N'22109c02-910d-4bec-bd79-50e391634c38', CAST(N'2014-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2930, N'NEURONTIN (Oral Pill)', 797399, N'gabapentin', N'ea6016be-2f5d-4bd0-a228-fa8f455abeae', CAST(N'2013-02-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2931, N'NEUTRAMAXX (Toothpaste)', 19069022, N'Sodium Fluoride', N'fcbe6baa-2827-49df-9316-42cc86595203', CAST(N'2012-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2932, N'NEUTRAPHOR (Topical)', 916662, N'dimethicone', N'0f3a5ca3-c4bd-4496-bb62-816d1ed9f01f', CAST(N'2011-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2933, N'NEUTRAPHORUS REX SKIN PROTECTANT (Topical)', 916662, N'dimethicone', N'b43c4b7a-c176-4c36-a8cf-32cb6e99cc04', CAST(N'2012-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2934, N'NEUTREXIN (Injectable)', 1750928, N'Trimetrexate', N'ad0f8925-f817-4460-aa6b-172a043a440b', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2935, N'NEUTROGENA ACNE WASH OIL FREE (Soap)', 964407, N'Salicylic Acid', N'cbdd144e-09fa-45e5-beb9-166e0654c013', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2936, N'NEUTROGENA RAPID CLEAR GEL (Topical)', 964407, N'Salicylic Acid', N'38005d41-8ed7-4de5-afcb-cce1496c3811', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2937, N'NEUTROGENA T/GEL EXTRA STRENGTH (Shampoo)', 1000995, N'Coal Tar', N'615d83a0-52a4-4365-aef3-320480c0b5cd', CAST(N'2012-04-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2938, N'NEUTROGENA T/SAL (Shampoo)', 964407, N'Salicylic Acid', N'c67a7d3f-1aff-4753-a64a-d06618e2ddda', CAST(N'2011-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2939, N'NEVANAC (Ophthalmic)', 909795, N'nepafenac', N'3ad48650-75e3-4c74-9302-01b0088f164e', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2940, N'Nevirapine (Oral Liquid)', 1769389, N'Nevirapine', N'8dfe86aa-ea5d-48d2-94a8-1a5506055d70', CAST(N'2015-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2941, N'Nevirapine (Oral Pill)', 1769389, N'Nevirapine', N'4f065674-4719-4c79-ba0d-549040d77f17', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2942, N'NexIUM (Injectable)', 904453, N'Esomeprazole', N'dce12085-d6c4-48a5-959b-e771c413c9c5', CAST(N'2012-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2943, N'NexIUM (Oral Pill)', 904453, N'Esomeprazole', N'b533b80b-2e68-4c5c-aaba-159d96a1b2f0', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2944, N'NEXT CHOICE ONE DOSE (Oral Pill)', 1589505, N'Levonorgestrel', N'eb8c1837-d5e5-4ba2-a4b5-8c4f4be029cd', CAST(N'2014-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2945, N'Niacin (Oral Pill)', 1517824, N'Niacin', N'ce739d68-d89c-437c-90fb-3c0c45140f22', CAST(N'2013-03-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2946, N'Niacin XR (Oral Pill)', 1517824, N'Niacin', N'1bafcb0b-3564-4f3b-8ffb-d916d112fae9', CAST(N'2015-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2947, N'NIACOR (Oral Pill)', 1517824, N'Niacin', N'ce739d68-d89c-437c-90fb-3c0c45140f22', CAST(N'2013-03-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2948, N'niCARdipine (Injectable)', 1318137, N'Nicardipine', N'0a7c6372-a22b-4501-a6c6-539457a6cd9d', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2949, N'niCARdipine (Oral Pill)', 1318137, N'Nicardipine', N'4a423bba-3bc1-4323-abbb-ef6c5c315784', CAST(N'2015-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2950, N'NICAZEL (Oral Pill)', 986790, N'Azelate', N'fc729ca5-3846-48fd-8d8c-d2b6a7563741', CAST(N'2014-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2951, N'N''ICE (Oral Lozenge)', 901656, N'Menthol', N'f8abfa42-896b-46c8-9d78-b9730f54d120', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2952, N'NICOMIDE (Oral Pill)', 19073229, N'Cupric oxide', N'91d306d7-ef63-4f35-84a4-36e8469eac98', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2953, N'NICORELIEF (Chewable)', 718583, N'Nicotine', N'50bdf838-436d-44eb-9fbd-7966ec436f36', CAST(N'2015-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2954, N'NICORELIEF (Oral Lozenge)', 718583, N'Nicotine', N'2025c71d-d752-4bea-bc4c-7beff1b63ff9', CAST(N'2012-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2955, N'NICORETTE (Oral Lozenge)', 718583, N'Nicotine', N'fdee1637-8049-4bc5-b196-b6d854c9f9f3', CAST(N'2014-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2956, N'Nicotine (Chewable)', 718583, N'Nicotine', N'020f4342-c821-4749-83eb-fbf330886acf', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2957, N'Nicotine (Inhalant)', 718583, N'Nicotine', N'2d75cdad-0a7b-4297-80aa-7942ecaea30e', CAST(N'2011-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2958, N'Nicotine (Oral Lozenge)', 718583, N'Nicotine', N'17cf8f3d-6491-4cd8-a447-3c7533f76daf', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2959, N'NICOTROL (Inhalant)', 718583, N'Nicotine', N'a887a129-fcb4-417e-80a5-38eca69dc74d', CAST(N'2011-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2960, N'NIFEdipine (Oral Pill)', 1318853, N'Nifedipine', N'776ccac6-471d-4c41-8c52-a8e90bd832c5', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2961, N'NILANDRON (Oral Pill)', 1315286, N'nilutamide', N'a682f5ef-c79f-419e-94b6-b1a84b7b6651', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2962, N'Nilutamide (Oral Pill)', 1315286, N'nilutamide', N'a682f5ef-c79f-419e-94b6-b1a84b7b6651', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2963, N'niMODipine (Oral Liquid)', 1319133, N'Nimodipine', N'9e48dba7-c706-44fc-b04b-0fdcb2d72bc4', CAST(N'2014-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2964, N'niMODipine (Oral Pill)', 1319133, N'Nimodipine', N'26730ffb-7c80-4c54-bded-8e519bffe12f', CAST(N'2012-08-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2965, N'NINJACOF (Oral Liquid)', 1150886, N'chlophedianol', N'e2bca40f-9c27-ec8b-2ff0-ef9847ba2037', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2966, N'Nintedanib (Oral Pill)', 45775396, N'nintedanib', N'da1c9f37-779e-4682-816f-93d0faa4cfc9', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2967, N'NIPENT (Injectable)', 19031224, N'Pentostatin', N'151c6d2e-1af1-4c13-96ec-de3228c6efb3', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2968, N'NIRAVAM (Oral Disintegrating)', 781039, N'Alprazolam', N'd956367b-fd7d-46fc-9533-38a6e02b0b59', CAST(N'2013-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2969, N'Nitazoxanide (Oral Liquid)', 1715315, N'nitazoxanide', N'56b1575a-dff4-4c5a-a159-2f858e7a0cb8', CAST(N'2013-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2970, N'Nitazoxanide (Oral Pill)', 1715315, N'nitazoxanide', N'56b1575a-dff4-4c5a-a159-2f858e7a0cb8', CAST(N'2013-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2971, N'Nitisinone (Oral Pill)', 1586640, N'nitisinone', N'5d449b73-d503-4132-b978-d890491975df', CAST(N'2014-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2972, N'NITRO-BID (Topical)', 1361711, N'Nitroglycerin', N'30934ddc-0823-4097-8699-d10988011d7c', CAST(N'2014-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2973, N'Nitrofurantoin (Oral Liquid)', 920293, N'Nitrofurantoin', N'11dcea9c-0c62-4153-976b-bd1f8ef1f6d9', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2974, N'Nitrofurantoin (Oral Pill)', 920293, N'Nitrofurantoin', N'09d16de0-e11e-4ca1-8073-cc0bb0677aa9', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2975, N'Nitrofurazone (Topical)', 920378, N'Nitrofurazone', N'2f25d07e-31ca-43a2-a8b6-622c1f122d25', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2976, N'Nitrogen (Inhalant)', 19020477, N'Nitrogen', N'273511c2-2b84-4373-a0e5-3961eb19af8c', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2977, N'Nitrogen/Oxygen (Inhalant)', 19020477, N'Nitrogen', N'4340fd9c-a7e7-4eb1-bd99-0927faeafe07', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2978, N'Nitroglycerin (Injectable)', 1361711, N'Nitroglycerin', N'368a60fa-6cf0-4036-970e-e3a482f244ba', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2979, N'Nitroglycerin (Mucosal)', 1361711, N'Nitroglycerin', N'de06a4da-ea70-441e-bba2-e40eb51a8c3a', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2980, N'Nitroglycerin (Rectal)', 1361711, N'Nitroglycerin', N'603aa9ed-54c4-4a35-ade4-690fa44850e4', CAST(N'2014-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2981, N'Nitroglycerin (Sublingual)', 1361711, N'Nitroglycerin', N'79ba021e-183c-4b4d-822e-4ff5ef54ca61', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2982, N'Nitroglycerin (Topical)', 1361711, N'Nitroglycerin', N'e464e9bb-48e8-4b9f-9fff-e220cfbac0c5', CAST(N'2014-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2983, N'Nitroglycerin XR (Oral Pill)', 1361711, N'Nitroglycerin', N'04fa3e36-e782-4b33-bc1d-a3ca0990f490', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2984, N'NITROLINGUAL (Mucosal)', 1361711, N'Nitroglycerin', N'11cb2671-d3d5-425f-8509-f973b6cac876', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2985, N'NITROMIST (Mucosal)', 1361711, N'Nitroglycerin', N'f9eb07a2-5ebc-40ea-9890-1a0b03e859ff', CAST(N'2007-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2986, N'NITRONAL (Injectable)', 1361711, N'Nitroglycerin', N'b82a7e93-d697-419a-8b02-dc05c5ab302e', CAST(N'2014-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2987, N'NITROPRESS (Injectable)', 19020994, N'Nitroprusside', N'bf27f0a9-e64b-492a-b08f-2448bf097988', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2988, N'Nitroprusside (Injectable)', 19020994, N'Nitroprusside', N'6a44bcac-a0e1-4069-5691-db7b83dbb4b7', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2989, N'NITROSTAT (Sublingual)', 1361711, N'Nitroglycerin', N'dcb552c1-310a-48af-81ad-a74530531dee', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2990, N'Nitrous Oxide (Inhalant)', 19021129, N'Nitrous Oxide', N'571a0c51-076f-48a2-835c-b3ee9c7c98ed', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2991, N'NIX CREAM RINSE (Topical)', 922868, N'Permethrin', N'9b44bf94-62c9-49d8-97ec-cf475824eb35', CAST(N'2013-11-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2992, N'Nizatidine (Oral Pill)', 950696, N'Nizatidine', N'9a148542-e478-422a-b8fb-88047c30534b', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2993, N'NIZORAL (Oral Pill)', 985708, N'Ketoconazole', N'090660c1-6e6d-457f-adb5-046ddfcd1465', CAST(N'2014-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2994, N'NIZORAL (Shampoo)', 985708, N'Ketoconazole', N'efbc6388-90ce-11de-b92c-8b7156d89593', CAST(N'2013-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2995, N'NO DOZ (Oral Pill)', 1134439, N'Caffeine', N'7ef8b03c-245a-424f-bf75-438559c4418b', CAST(N'2013-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2996, N'NODOLOR (Oral Pill)', 1125315, N'Acetaminophen', N'08442901-bb74-4516-9574-86b3dfeeabb1', CAST(N'2013-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2997, N'NOLVADEX (Oral Pill)', 1436678, N'Tamoxifen', N'063fa789-4570-4715-c3bd-1bad0449fb26', CAST(N'2007-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2998, N'Nonoxynol-9 (Vaginal)', 969444, N'Nonoxynol-9', N'eaf86a36-0573-4c39-9324-88919c4d009b', CAST(N'2013-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (2999, N'NORCO (Oral Pill)', 1125315, N'Acetaminophen', N'2f1c9e91-e5e7-4b07-8f56-e3719573ef23', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3000, N'Norepinephrine (Injectable)', 1321341, N'Norepinephrine', N'd2b5320e-e6a6-4a43-8f3c-9c21195ceb4a', CAST(N'2015-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3001, N'Norethindrone (Oral Pill)', 1521369, N'Norethindrone', N'ac4ab968-c536-45d8-bb85-dc692afd7cee', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3002, N'NORFLEX (Injectable)', 724394, N'Orphenadrine', N'8768cd6b-e79d-4b6d-8981-2f01ce28047b', CAST(N'2007-05-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3003, N'NORGESIC (Oral Pill)', 1112807, N'Aspirin', N'a7fa86b5-2154-4b17-9265-8a5411c88d5d', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3004, N'NORITATE (Topical)', 1707164, N'Metronidazole', N'1787c491-d92c-4239-9d9f-6a91b629835d', CAST(N'2011-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3005, N'NORLYROC (Oral Pill)', 1521369, N'Norethindrone', N'97fcc28a-7e00-4ce4-9976-bcb90e3dba64', CAST(N'2014-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3006, N'NORPACE (Oral Pill)', 1335606, N'Disopyramide', N'f5e0c230-db38-4476-8357-9a227ccff1bc', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3007, N'NORTHERA (Oral Pill)', 44814542, N'Droxidopa', N'2179f02c-48d7-48eb-8007-5ae43d8d16bc', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3008, N'Nortriptyline (Oral Liquid)', 721724, N'Nortriptyline', N'ced93eb0-e8b6-44b8-9d2c-e2afa92500f7', CAST(N'2009-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3009, N'Nortriptyline (Oral Pill)', 721724, N'Nortriptyline', N'a203a396-f64b-4e2d-a57e-47ea7e83c3bf', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3010, N'NORVASC (Oral Pill)', 1332418, N'Amlodipine', N'fb0bdb7f-1041-4c73-bdf9-02679b32c3ce', CAST(N'2013-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3011, N'NORVIR (Oral Pill)', 1748921, N'Ritonavir', N'624120b3-0a32-42a7-abfc-324e6b6c93df', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3012, N'NOSTRILLA (Nasal)', 925636, N'Oxymetazoline', N'e16acd65-8163-4410-b645-db9bdee63b2d', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3013, N'NOTUSS PE (Oral Liquid)', 1201620, N'Codeine', N'e2d73253-1777-4993-b693-323f0450c1c4', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3014, N'NOTUSS-NX (Oral Liquid)', 990413, N'chlorcyclizine', N'3cd16900-fc6d-440a-9060-1f5c92c9fedf', CAST(N'2011-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3015, N'NOVACORT (Topical)', 975125, N'Hydrocortisone', N'c5b94bde-6982-48e5-ab68-13bb91d3d112', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3016, N'NOVAFERRUM IRON (Oral Liquid)', 1300751, N'Polysaccharide iron complex', N'17cd83ec-8779-45f9-8c8d-0aaa8c7b9b42', CAST(N'2014-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3017, N'NOVAFERRUM IRON (Oral Pill)', 1300751, N'Polysaccharide iron complex', N'46abb133-711c-4219-ba6e-42cb64abf451', CAST(N'2013-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3018, N'NOVOCAINE (Injectable)', 751698, N'Procaine', N'999625d5-3a6b-4753-059a-4f19d04c85a5', CAST(N'2007-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3019, N'NovoLIN (Injectable)', 1596914, N'NPH Insulin, Human', N'508a2763-3cb7-4be5-9e53-544e84cd9b1f', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3020, N'NOVOLIN N (Injectable)', 1596914, N'NPH Insulin, Human', N'99c995f1-522e-42aa-b45a-117e0af77d81', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3021, N'NOVOLIN R (Injectable)', 1596977, N'Regular Insulin, Human', N'78dadbee-c3b6-4d62-a338-731b24cc7ef0', CAST(N'2014-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3022, N'NovoLOG (Injectable)', 1567198, N'Insulin, Aspart, Human', N'66472b3d-32c1-4803-aff4-b621aa5430b3', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3023, N'NOVOTHYROX (Oral Pill)', 1501700, N'Thyroxine', N'b5c93ab1-317e-4f99-9ec5-e47b30faf650', CAST(N'2009-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3024, N'NUCORT (Topical)', 975125, N'Hydrocortisone', N'cc51030b-ece9-4b6e-9bf8-032a1e552711', CAST(N'2013-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3025, N'NUCYNTA (Oral Liquid)', 19026459, N'tapentadol', N'e921054f-b3f1-4624-8edd-f6628c6f0fd9', CAST(N'2014-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3026, N'NUCYNTA (Oral Pill)', 19026459, N'tapentadol', N'da748c7a-d2ae-1cbc-6f1a-8a6fc0402560', CAST(N'2014-03-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3027, N'NULECIT (Injectable)', 1399177, N'Sodium ferric gluconate complex', N'72153161-a533-4e90-b9b8-54090b8816be', CAST(N'2011-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3028, N'NULEV (Oral Disintegrating)', 923672, N'Hyoscyamine', N'ae2a78b2-b811-11e2-9e96-0800200c9a66', CAST(N'2013-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3029, N'NULL', 19018384, N'4-Aminobenzoic Acid', N'fe274cab-a945-4379-a92c-c8f18bd63c1e', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3030, N'NULOJIX (Injectable)', 40239665, N'belatacept', N'c16ac648-d5d2-9f7d-8637-e2328572754e', CAST(N'2014-10-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3031, N'NULYTELY (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'b630fb8f-b6aa-4b94-a93c-d79f1626c05b', CAST(N'2014-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3032, N'NUPERCAINAL (Rectal)', 923840, N'Dibucaine', N'bcf33951-d3a4-46c5-b208-56adc0011047', CAST(N'2013-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3033, N'NUQUIN HP (Topical)', 976778, N'hydroquinone', N'5d257efa-4287-4957-b409-004ea39ad17b', CAST(N'2014-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3034, N'NUTRALOX (Chewable)', 19035704, N'Calcium Carbonate', N'263e20ca-1ca6-4f7c-bae5-525a1184b744', CAST(N'2012-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3035, N'NUTRESTORE (Oral Liquid)', 19060985, N'Glutamine', N'cd3fb572-c5b1-43da-aea2-31208985f544', CAST(N'2014-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3036, N'NUTROPIN (Injectable)', 1584910, N'Somatropin', N'e6574a25-1ad5-4946-b750-501ce745574f', CAST(N'2012-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3037, N'NUVIGIL (Oral Pill)', 19090984, N'armodafinil', N'10f918f7-4782-470e-a50e-35c7c66bfd79', CAST(N'2013-05-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3038, N'NYMALIZE (Oral Liquid)', 1319133, N'Nimodipine', N'9e48dba7-c706-44fc-b04b-0fdcb2d72bc4', CAST(N'2014-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3039, N'Nystatin (Oral Liquid)', 922570, N'Nystatin', N'ba531b47-6a96-432b-ae01-6d8e18634463', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3040, N'Nystatin (Oral Pill)', 922570, N'Nystatin', N'fc0cc939-3ad1-47f2-87b9-cdd91712e0db', CAST(N'2014-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3041, N'Nystatin (Topical)', 922570, N'Nystatin', N'bb68ae89-8a87-4ff7-a71b-f47ed4da1808', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3042, N'Nystatin/Triamcinolone (Topical)', 922570, N'Nystatin', N'47b09171-bc17-4f32-a08e-6546bd48f78a', CAST(N'2014-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3043, N'NYSTOP (Topical)', 922570, N'Nystatin', N'e1b4622c-0f9f-4c00-b42c-2aa85a5e3d4f', CAST(N'2014-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3044, N'NYTOL (Oral Pill)', 1129625, N'Diphenhydramine', N'c81d018a-0170-4396-81e9-2e13a53f868a', CAST(N'2013-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3045, N'OASIS TEARS (Ophthalmic)', 961145, N'Glycerin', N'00071697-4ac6-4962-8eee-388b8b52bd40', CAST(N'2010-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3046, N'Oat loose smut extract (Injectable)', 40175872, N'oat loose smut extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3047, N'OBIZUR (Injectable)', 1352213, N'Factor VIII', N'a69ccbb3-7648-4978-8c6d-7ca6b95a9b01', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3048, N'OC 8 ADULT ACNE (Topical)', 918172, N'Benzoyl Peroxide', N'9d84b8f4-432b-44fa-9c4d-362615454fe6', CAST(N'2012-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3049, N'OCTAGAM (Injectable)', 19117912, N'Immunoglobulin G', N'810c8752-a7cb-0bce-777d-8539429773c2', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3050, N'Octreotide (Injectable)', 1522957, N'Octreotide', N'5d3095a8-e5c7-4705-8c4f-9fca8afd5847', CAST(N'2015-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3051, N'OCUFEN (Ophthalmic)', 1156378, N'Flurbiprofen', N'5a4d5684-b20a-4fde-a808-404c7b9d25b3', CAST(N'2012-08-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3052, N'OCUFLOX (Ophthalmic)', 923081, N'Ofloxacin', N'7aab4449-3dda-4e2c-8e40-b3244a548bf5', CAST(N'2012-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3053, N'OCUPRESS (Ophthalmic)', 950370, N'Carteolol', N'5f82e53e-d6db-432f-af68-9de88d1b1720', CAST(N'2006-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3054, N'OFEV (Oral Pill)', 45775396, N'nintedanib', N'da1c9f37-779e-4682-816f-93d0faa4cfc9', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3055, N'Ofloxacin (Ophthalmic)', 923081, N'Ofloxacin', N'7882f70e-d228-4c52-9390-0d927c51af1f', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3056, N'Ofloxacin (Oral Pill)', 923081, N'Ofloxacin', N'1d19a6db-6da5-e7de-f929-2d18bdfa2cf5', CAST(N'2015-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3057, N'Ofloxacin (Otic)', 923081, N'Ofloxacin', N'75d8099b-4e08-43c0-811e-589d4fb52932', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3058, N'OLANZapine (Injectable)', 785788, N'olanzapine', N'3b3bc948-161e-49ee-b67f-4bbb63af23d6', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3059, N'OLANZapine (Oral Disintegrating)', 785788, N'olanzapine', N'35b52ceb-5c07-49c5-9b1d-4708db66eaff', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3060, N'OLANZapine (Oral Pill)', 785788, N'olanzapine', N'3347d1c8-04c9-5ce1-8cda-b38e0412b709', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3061, N'Olmesartan (Oral Pill)', 40226742, N'olmesartan', N'ae3e0a4e-3a0c-4589-adb0-8fc3a5510f5b', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3062, N'Olopatadine (Ophthalmic)', 915855, N'olopatadine', N'ae8b4a9d-4308-4a3c-8ec9-1e8d9060db68', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3063, N'Olsalazine (Oral Pill)', 916282, N'olsalazine', N'75a96561-6f52-4c11-a105-391fbbfe4827', CAST(N'2007-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3064, N'OLUX (Topical)', 998415, N'Clobetasol', N'6a53f8c0-458b-4f5d-9679-ccf667461613', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3065, N'Omacetaxine mepesuccinate (Injectable)', 19069046, N'omacetaxine mepesuccinate', N'83a504ef-cf92-467d-9ecf-d251194a3484', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3066, N'Omega-3 Acid Ethyl Esters (USP) (Oral Pill)', 1560305, N'Omega-3 Acid Ethyl Esters (USP)', N'5fe15bdb-f59f-4b87-8e5d-8a3d5683eb3d', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3067, N'Omeprazole (Oral Pill)', 923645, N'Omeprazole', N'54394aec-a36b-427f-9be4-76e3768595c6', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3068, N'Omeprazole/Sodium Bicarbonate (Oral Pill)', 923645, N'Omeprazole', N'c43b7c1e-1eb6-48b4-ba73-56e274239ae2', CAST(N'2015-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3069, N'OMNI GEL (Oral Gel)', 1036094, N'Stannous Fluoride', N'0f1afc36-f699-4072-b90b-c9f5be989a49', CAST(N'2011-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3070, N'OMNIPRED (Ophthalmic)', 1550557, N'prednisolone', N'4bbb4356-b4b3-4497-a3a3-8f4b65d326fe', CAST(N'2011-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3071, N'OMTRYG (Oral Pill)', 1560305, N'Omega-3 Acid Ethyl Esters (USP)', N'5fe15bdb-f59f-4b87-8e5d-8a3d5683eb3d', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3072, N'ONCASPAR (Injectable)', 1326481, N'pegaspargase', N'd046ec54-9ac8-4c9f-87a7-69e9900d8016', CAST(N'2008-08-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3073, N'Ondansetron (Injectable)', 1000560, N'Ondansetron', N'e0050959-c14c-41b6-9a92-fadc5f6feff3', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3074, N'Ondansetron (Oral Disintegrating)', 1000560, N'Ondansetron', N'e5950fac-27c8-49b8-81d5-046ec065621b', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3075, N'Ondansetron (Oral Liquid)', 1000560, N'Ondansetron', N'38435346-d505-4bdd-bbc6-a7bcba411033', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3076, N'Ondansetron (Oral Pill)', 1000560, N'Ondansetron', N'2c94fed2-f880-44a9-8d10-93fa5713dcb4', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3077, N'Ondansetron (Oral Strip)', 1000560, N'Ondansetron', N'ed036bdb-b832-440f-82c7-ade2956b73ee', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3078, N'ONE TOUCH REFORMULATED APR 2009 (Topical)', 917006, N'Benzocaine', N'a75b6e20-a180-4a8d-be08-de54812c4f5e', CAST(N'2011-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3079, N'Oneseed juniper pollen extract (Injectable)', 40172384, N'oneseed juniper pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3080, N'ONGLYZA (Oral Pill)', 40166035, N'saxagliptin', N'ba48ac4b-9503-4006-f6e2-3b8a83059c03', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3081, N'ONMEL (Oral Pill)', 1703653, N'Itraconazole', N'fb8a2e5b-fd23-4977-81de-a95f4af168e2', CAST(N'2013-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3082, N'ONTAK (Injectable)', 19051642, N'denileukin diftitox', N'42dfffb1-d0f3-42d5-944c-64f092fc436e', CAST(N'2013-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3083, N'OPANA (Oral Pill)', 1125765, N'Oxymorphone', N'9be700c1-937a-180d-fb38-bc2aa85d20cf', CAST(N'2012-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3084, N'OPCON-A (Ophthalmic)', 914533, N'Naphazoline', N'90a05c13-5b87-415b-9892-10d2edbc1943', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3085, N'Opium (Oral Liquid)', 923829, N'Opium', N'3ad95865-a77c-41da-b572-e5c0bb404c79', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3086, N'OPSUMIT (Oral Pill)', 44507580, N'Macitentan', N'1e484a50-55db-4b85-8c57-6cd1b0353abd', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3087, N'OPTIVAR (Ophthalmic)', 934075, N'azelastine', N'f4b9597c-5b50-4889-be41-20bd1f13aaa5', CAST(N'2014-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3088, N'ORABASE (Oral Paste)', 917006, N'Benzocaine', N'387f52e1-157a-4b9e-8f98-9001c6880786', CAST(N'2013-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3089, N'ORACEA (Oral Pill)', 1738521, N'Doxycycline', N'4e954825-3f60-4dbb-a1be-b146fe1acae4', CAST(N'2010-02-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3090, N'ORACIT (Oral Liquid)', 950435, N'Citric Acid', N'bc26abed-8e6e-475d-8ab3-abf7d0377003', CAST(N'2012-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3091, N'ORAJEL (Mucosal)', 917006, N'Benzocaine', N'707d27da-731c-4726-9c77-63fcc071d09d', CAST(N'2013-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3092, N'ORAJEL (Oral Gel)', 917006, N'Benzocaine', N'574c7911-e24b-4b52-b01f-df89d58fd505', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3093, N'ORAJEL (Topical)', 917006, N'Benzocaine', N'8c2e436a-9d32-4dd5-ba5f-712bc39d36c4', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3094, N'ORAJEL BLEEDING GUM RINSE (Mucosal)', 989301, N'Cetylpyridinium', N'48b1f5b8-69b1-4d50-960b-733151beef91', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3095, N'ORAJEL DRY MOUTH (Oral Gel)', 961145, N'Glycerin', N'0d371e48-d722-4b77-b354-5a44179247bc', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3096, N'ORAJEL MOUTH SORE RINSE (Mucosal)', 1776430, N'Hydrogen Peroxide', N'f82230e0-a6eb-4d1e-8fea-0bf386d97c58', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3097, N'ORAJEL ULTRA (Oral Gel)', 917006, N'Benzocaine', N'c7936cbc-b132-4025-8439-8227b928c2fd', CAST(N'2013-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3098, N'ORAL B ANTI-CAVITY (Mouthwash)', 19069022, N'Sodium Fluoride', N'd8336ad5-d1fb-4290-9433-d852405d1409', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3099, N'ORALONE (Oral Paste)', 903963, N'Triamcinolone', N'ac1e2116-795e-4c20-974d-11fa07cf0fa7', CAST(N'2010-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3100, N'Orange pollen extract (Injectable)', 40172688, N'orange pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3101, N'ORAP (Oral Pill)', 745790, N'Pimozide', N'90c0086a-b62c-4cdd-a6af-2efed69cfd4d', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3102, N'ORAPRED (Oral Disintegrating)', 1550557, N'prednisolone', N'1e379543-c4cf-4e72-953b-db15b7f0c2a1', CAST(N'2014-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3103, N'ORAQIX (Mucosal)', 989878, N'Lidocaine', N'b501d239-923b-48b2-82ed-6c5c253a67e2', CAST(N'2012-08-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3104, N'ORASEP REFORMULATED DEC 2013 (Mucosal)', 917006, N'Benzocaine', N'ed70911b-9da8-4e1d-97fa-66b18d28516a', CAST(N'2012-04-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3105, N'ORAVERSE (Injectable)', 1335539, N'Phentolamine', N'38be9414-87c4-4a8a-9f17-99be0d0a33fa', CAST(N'2011-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3106, N'ORAVIG (Buccal)', 907879, N'Miconazole', N'a1bf6bf0-9197-4fc1-af9f-df7b9a1ad6ce', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3107, N'ORBACTIV (Injectable)', 45776147, N'oritavancin', N'085d6d1a-21c2-11e4-8c21-0800200c9a66', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3108, N'ORBIVAN (Oral Pill)', 1125315, N'Acetaminophen', N'd3c69436-a681-4e00-8db0-8cbfaac9627e', CAST(N'2010-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3109, N'Orchard grass pollen extract (Injectable)', 40161896, N'orchard grass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3110, N'Oregon ash pollen extract (Injectable)', 40173249, N'Oregon ash pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3111, N'ORFADIN (Oral Pill)', 1586640, N'nitisinone', N'5d449b73-d503-4132-b978-d890491975df', CAST(N'2014-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3112, N'ORIS (Mouthwash)', 1790812, N'Chlorhexidine', N'8d90c38e-e241-4f73-877d-ff314408a510', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3113, N'Oritavancin (Injectable)', 45776147, N'oritavancin', N'085d6d1a-21c2-11e4-8c21-0800200c9a66', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3114, N'Orlistat (Oral Pill)', 741530, N'orlistat', N'a9c47f08-bd02-4731-aaf7-42173155b2d0', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3115, N'Orphenadrine (Injectable)', 724394, N'Orphenadrine', N'8768cd6b-e79d-4b6d-8981-2f01ce28047b', CAST(N'2011-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3116, N'ORTHOCLONE OKT3 (Injectable)', 19051865, N'Muromonab-CD3', N'2a1f1c18-fa95-45e6-bd00-ac53c73f4747', CAST(N'2011-06-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3117, N'ORTHO-NESIC (Topical)', 938205, N'Camphor', N'52db0aec-be7c-4342-a414-60f594f57b3c', CAST(N'2011-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3118, N'ORTHOWASH (Mouthwash)', 19069022, N'Sodium Fluoride', N'37d407ae-d5b1-4c67-8894-1d419ae36c69', CAST(N'2011-10-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3119, N'OSCIMIN (Oral Pill)', 923672, N'Hyoscyamine', N'8504adad-f6d0-4671-b655-4b62bf29a516', CAST(N'2014-07-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3120, N'Oseltamivir (Oral Liquid)', 1799139, N'Oseltamivir', N'03a2a7f0-406c-4784-84c1-5fd5f5be4773', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3121, N'Oseltamivir (Oral Pill)', 1799139, N'Oseltamivir', N'1948cafd-b5b3-4212-9d5d-8c293b1baad5', CAST(N'2013-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3122, N'OSENI (Oral Pill)', 43013884, N'alogliptin', N'4c619ed9-fe3e-4158-9938-80c6c3493d55', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3123, N'OSMITROL (Injectable)', 994058, N'Mannitol', N'0d914965-7001-45cb-ba51-d7c5964b05bc', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3124, N'OSMOPREP (Oral Pill)', 939871, N'sodium phosphate', N'983ce15f-cd37-4f3a-9e51-205860e80976', CAST(N'2010-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3125, N'OTOZIN (Otic)', 1036059, N'Antipyrine', N'cd77f88e-8714-45ca-a385-1ca75b8c94bb', CAST(N'2011-05-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3126, N'OVACE (Shampoo)', 1036252, N'Sulfacetamide', N'6a034465-e600-49cb-91bd-7b9ceee6ffc6', CAST(N'2012-10-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3127, N'OVACE (Soap)', 1036252, N'Sulfacetamide', N'a77aed6c-355f-44ed-ae95-78b4d1549c2b', CAST(N'2014-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3128, N'OVACE (Topical)', 1036252, N'Sulfacetamide', N'06876575-edf2-4844-8f20-3eb6e74ccc8e', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3129, N'OVIDE (Topical)', 993979, N'Malathion', N'2024030e-b00d-4fcc-b51d-45dc86933749', CAST(N'2012-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3130, N'Oxacillin (Injectable)', 1724703, N'Oxacillin', N'f3bee4d7-82d8-4e2d-8fc8-4446e6fbf999', CAST(N'2015-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3131, N'Oxaliplatin (Injectable)', 1318011, N'oxaliplatin', N'd9400bde-4da8-49c8-a61e-15d2be58e73d', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3132, N'OXANDRIN (Oral Pill)', 1524769, N'Oxandrolone', N'f622616e-4c11-4149-bf00-5ea5ce97800b', CAST(N'2007-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3133, N'Oxandrolone (Oral Pill)', 1524769, N'Oxandrolone', N'8e6af85f-e44e-4c47-8a1a-7c5cb7893167', CAST(N'2015-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3134, N'Oxaprozin (Oral Pill)', 1118045, N'oxaprozin', N'755ca241-0d01-41ba-a735-e37365352a71', CAST(N'2015-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3135, N'Oxazepam (Oral Pill)', 724816, N'Oxazepam', N'52488349-1c84-4cdc-89d1-c841a68e904f', CAST(N'2014-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3136, N'OXcarbazepine (Oral Liquid)', 718122, N'oxcarbazepine', N'ca6bfbbb-fcca-4c15-a160-ee5791ed2f6e', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3137, N'OXcarbazepine (Oral Pill)', 718122, N'oxcarbazepine', N'd9741f36-0abd-49b7-9f43-e9700663122b', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3138, N'OXECTA (Oral Pill)', 1124957, N'Oxycodone', N'dd9f9d6d-9a59-4f74-8fe7-685e0c3c5fd4', CAST(N'2014-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3139, N'Oxiconazole (Topical)', 918222, N'oxiconazole', N'094d5b1e-ccf6-4384-b208-fd70360ffda2', CAST(N'2009-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3140, N'OXISTAT (Topical)', 918222, N'oxiconazole', N'094d5b1e-ccf6-4384-b208-fd70360ffda2', CAST(N'2009-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3141, N'OXSORALEN-ULTRA (Oral Pill)', 905223, N'Methoxsalen', N'ae951dc4-9031-43bf-943c-cb2366951f23', CAST(N'2015-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3142, N'OXY (Topical)', 918172, N'Benzoyl Peroxide', N'9f408142-dc98-4cd9-9060-64c42984ee9a', CAST(N'2013-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3143, N'OXY CLEAN (Topical)', 964407, N'Salicylic Acid', N'c1086120-8eb3-4ba6-ac8e-ae868ddc27a7', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3144, N'OXY DAILY WASH (Soap)', 918172, N'Benzoyl Peroxide', N'89cdc287-e374-4254-b867-97e9f9b6bdd1', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3145, N'OXY FACE SCRUB (Soap)', 964407, N'Salicylic Acid', N'4cc02e46-bfae-4f53-8aa4-4662a32339f9', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3146, N'Oxybutynin (Oral Liquid)', 918906, N'oxybutynin', N'17d61203-a462-4393-b261-72bf48d51942', CAST(N'2015-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3147, N'Oxybutynin (Oral Pill)', 918906, N'oxybutynin', N'b15f1a2c-dcae-4c3e-923f-ec81078ba3c4', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3148, N'Oxybutynin (Topical)', 918906, N'oxybutynin', N'c6754623-b14c-4fc3-8719-48eee3119156', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3149, N'oxyCODONE (Oral Liquid)', 1124957, N'Oxycodone', N'73eb3e1f-7706-4688-9e75-1050b4a8a533', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3150, N'oxyCODONE (Oral Pill)', 1124957, N'Oxycodone', N'3efb2cf8-9b0e-4d76-afb1-c4ecd514d534', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3151, N'Oxygen (Inhalant)', 19025274, N'Oxygen', N'dfcc57ba-4b9f-458c-9b8a-7ab4f3e68eb2', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3152, N'Oxymetazoline (Nasal)', 925636, N'Oxymetazoline', N'46256806-7d8e-4e97-906e-ae5c41b3b7e2', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3153, N'Oxymetholone (Oral Pill)', 1525741, N'Oxymetholone', N'4b9c6c34-9cb2-4d70-b70e-c7ce2fda4212', CAST(N'2012-10-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3154, N'Oxymorphone (Oral Pill)', 1125765, N'Oxymorphone', N'2c4b8fab-3112-43a0-994a-591e5089f619', CAST(N'2015-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3155, N'Oxytetracycline (Oral Pill)', 925952, N'Oxytetracycline', N'd30ffe60-a418-4425-883e-58d10417b9bf', CAST(N'2014-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3156, N'Oxytocin (Injectable)', 1326115, N'Oxytocin', N'c7fd585a-99b7-4309-b003-a6cbef05372c', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3157, N'PACERONE (Oral Pill)', 1309944, N'Amiodarone', N'a13a7632-74ea-4e2f-b791-190a4765c295', CAST(N'2014-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3158, N'PACNEX (Soap)', 918172, N'Benzoyl Peroxide', N'764ef37b-7ead-4a64-89eb-67321320138f', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3159, N'Paecilomyces variotii extract (Injectable)', 40175309, N'Paecilomyces variotii extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3160, N'Pale dock pollen extract (Injectable)', 42709315, N'pale dock pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3161, N'Palonosetron (Oral Pill)', 911354, N'palonosetron', N'bd06f321-bb42-4748-92f3-d59626b540e0', CAST(N'2014-11-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3162, N'Pamabrom (Oral Pill)', 1172206, N'pamabrom', N'22122002-c367-480b-b9f5-0504f918cc98', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3163, N'Pamidronate (Injectable)', 1511646, N'pamidronate', N'ad1b83f9-ddf7-44b7-9234-77d6872e4825', CAST(N'2015-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3164, N'PAMINE (Oral Pill)', 1158632, N'Methscopolamine', N'2981e734-2a20-4b45-8521-8c13ff2b6578', CAST(N'2012-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3165, N'PAMINE FORTE (Oral Pill)', 1158632, N'Methscopolamine', N'2981e734-2a20-4b45-8521-8c13ff2b6578', CAST(N'2012-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3166, N'P-Aminohippurate (Injectable)', 19053177, N'p-Aminohippurate', N'a1975215-25f1-4c5a-878d-bcbf5326bb92', CAST(N'2011-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3167, N'PAMPRIN CRAMP FORMULA (Oral Pill)', 1125315, N'Acetaminophen', N'5f2e9d2a-4c7b-4339-8be7-3711a73fdbe9', CAST(N'2012-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3168, N'PAMPRIN MAX FORMULA (Oral Pill)', 1125315, N'Acetaminophen', N'109f5b3f-689a-4ca4-a621-bf5c2d41d7af', CAST(N'2012-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3169, N'PAMPRIN MULTI-SYMPTOM (Oral Pill)', 1125315, N'Acetaminophen', N'169704f1-3953-4857-93d0-ddca3359356d', CAST(N'2012-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3170, N'PANADOL (Oral Pill)', 1125315, N'Acetaminophen', N'62920a3f-c662-4db2-a4aa-8170a23ed3b6', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3171, N'PANCREAZE (Oral Pill)', 919204, N'Amylases', N'e1431edd-0fc5-4ebc-8c10-53deb0db0d23', CAST(N'2013-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3172, N'Pancuronium (Injectable)', 19026674, N'Pancuronium', N'a95893be-9df7-4f3e-ad72-3298dab8b187', CAST(N'2012-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3173, N'PANDEL (Topical)', 975125, N'Hydrocortisone', N'361338e6-d719-4bea-aca0-7dd591fcfa08', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3174, N'PANOXYL (Soap)', 918172, N'Benzoyl Peroxide', N'41aac3a5-ce01-435f-948a-668e68802bb9', CAST(N'2014-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3175, N'PANRETIN (Topical)', 941052, N'alitretinoin', N'9cf04dad-e312-4b8f-a297-1e002d43e151', CAST(N'2006-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3176, N'Pantoprazole (Injectable)', 948078, N'pantoprazole', N'5b5ddedd-d429-41a7-8573-10c3e9ad4e52', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3177, N'Pantoprazole (Oral Granules)', 948078, N'pantoprazole', N'189b7b6a-9717-44eb-b87b-fd3e985b2268', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3178, N'Pantoprazole (Oral Pill)', 948078, N'pantoprazole', N'd132d29d-723e-4357-87f2-0d760afa50a4', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3179, N'Papaverine (Injectable)', 1326901, N'Papaverine', N'9e5e2ce4-7a57-4c61-a826-64c8d11d038e', CAST(N'2011-08-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3180, N'Paper birch pollen extract (Injectable)', 40172798, N'paper birch pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3181, N'Para grass pollen extract (Injectable)', 40170840, N'para grass pollen extract', N'34c8c68c-9a78-42ea-89f8-cac82981881e', CAST(N'2010-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3182, N'PARAFON FORTE DSC (Oral Pill)', 795113, N'Chlorzoxazone', N'a8d84a0a-aa31-4ebe-bdf8-5b09b2df69a9', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3183, N'PARCOPA (Oral Disintegrating)', 740560, N'Carbidopa', N'dcb0fb25-ad60-4ab6-bc0f-ebc356357d93', CAST(N'2013-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3184, N'PAREMYD (Ophthalmic)', 19026274, N'p-Hydroxyamphetamine', N'da8a8a19-ac1b-4160-aac4-c4c57598eb5d', CAST(N'2012-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3185, N'Paricalcitol (Injectable)', 1517740, N'paricalcitol', N'b2e4eaa9-bf4d-4fe8-ab2e-d2b1a3a555ca', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3186, N'Paricalcitol (Oral Pill)', 1517740, N'paricalcitol', N'ac3028be-d563-4b0c-86d3-5a7e1c92758c', CAST(N'2015-04-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3187, N'PARLODEL (Oral Pill)', 730548, N'Bromocriptine', N'fc2a08dd-4fb6-4ac4-9082-f99552fae25c', CAST(N'2014-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3188, N'PARNATE (Oral Pill)', 703470, N'Tranylcypromine', N'2e7350bd-ab32-4619-a3f9-12fdf56fc5e2', CAST(N'2013-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3189, N'PAROEX (Mouthwash)', 1790812, N'Chlorhexidine', N'4e137308-6a21-4bf9-802f-23ff78ee6797', CAST(N'2014-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3190, N'Paromomycin (Oral Pill)', 1727443, N'Paromomycin', N'cc0f4113-e627-4caf-b2d4-95b4106e57f5', CAST(N'2014-01-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3191, N'PARoxetine (Oral Liquid)', 722031, N'Paroxetine', N'584ace29-6e40-432f-950f-ab7e98653d32', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3192, N'PARoxetine (Oral Pill)', 722031, N'Paroxetine', N'fce8fb27-554b-43e2-8ec9-fc4ca0b0ab8b', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3193, N'PARoxetine XR (Oral Pill)', 722031, N'Paroxetine', N'21b3b8a2-bfed-4945-954d-6a42ea61888f', CAST(N'2013-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3194, N'PASER D/R (Oral Granules)', 1726228, N'aminosalicylic acid', N'6f2753dc-5f0c-4f49-9335-e519afb69ba6', CAST(N'2010-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3195, N'Pasireotide (Injectable)', 43012417, N'pasireotide', N'442f0d9d-5c7d-4b81-b329-d71be8cf2be2', CAST(N'2015-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3196, N'Passalora fulva extract (Injectable)', 40176152, N'Passalora fulva extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3197, N'PATADAY (Ophthalmic)', 915855, N'olopatadine', N'ee6e2161-789b-4ba0-b234-d4b36fe41c94', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3198, N'PATANOL (Ophthalmic)', 915855, N'olopatadine', N'ae8b4a9d-4308-4a3c-8ec9-1e8d9060db68', CAST(N'2011-09-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3199, N'PAXIL (Oral Liquid)', 722031, N'Paroxetine', N'584ace29-6e40-432f-950f-ab7e98653d32', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3200, N'PAXIL (Oral Pill)', 722031, N'Paroxetine', N'584ace29-6e40-432f-950f-ab7e98653d32', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3201, N'PAXIL XR (Oral Pill)', 722031, N'Paroxetine', N'a73cf8ee-f99b-4972-8939-0d394a527134', CAST(N'2013-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3202, N'PAZOL XS (Shampoo)', 1000995, N'Coal Tar', N'ec7873bb-288a-4671-b649-1d5d5ced6476', CAST(N'2011-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3203, N'PCE (Oral Pill)', 1746940, N'Erythromycin', N'28a270f4-f713-4d88-b83a-f5b5e9b26746', CAST(N'2014-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3204, N'PCXX NEUTRAL FOAM (Oral Foam)', 19069022, N'Sodium Fluoride', N'9f9f36e7-ec66-473d-af17-09d4b492ded5', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3205, N'Pecan pollen extract (Injectable)', 40161960, N'pecan pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3206, N'Pecan pollen extract/White hickory pollen extract (Injectable)', 40161960, N'pecan pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3207, N'Pectin (Oral Lozenge)', 922191, N'pectin', N'9d04885b-d866-4eb3-8685-420d0464d004', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3208, N'PEDIACARE CHILDREN''S 24-HR ALLERGY (Oral Liquid)', 1149196, N'Cetirizine', N'6855116e-ba31-4373-a410-256c38519330', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3209, N'PEDIACARE CHILDREN''S ALLERGY & COLD (Oral Liquid)', 1129625, N'Diphenhydramine', N'e349f954-c331-4493-ae0b-543af66bd1ae', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3210, N'PEDIACARE CHILDREN''S ALLERGY (Oral Liquid)', 1129625, N'Diphenhydramine', N'eff380b3-0bbf-431b-bbd1-354c05c6deb2', CAST(N'2011-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3211, N'PEDIACARE CHILDREN''S COUGH AND CONGESTION (Oral Liquid)', 1119510, N'Dextromethorphan', N'4772d9a5-85f1-4ca9-a240-84d733dcd86e', CAST(N'2010-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3212, N'PEDIACARE CHILDREN''S FEVER REDUCER PAIN RELIEVER (Oral Liquid)', 1125315, N'Acetaminophen', N'08eaf987-f6d8-4313-a775-052f9d51327c', CAST(N'2010-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3213, N'PEDIACARE FEVER (Oral Liquid)', 1177480, N'Ibuprofen', N'8d904483-5a90-4271-b69f-b33c7e875245', CAST(N'2014-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3214, N'PEDIACARE INFANT FEVER PAIN RELIEVER (Oral Liquid)', 1125315, N'Acetaminophen', N'89c78619-2ab0-486a-9f8e-8a17c6362740', CAST(N'2011-11-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3215, N'PEDIACARE INFANT FEVER REDUCER (Oral Liquid)', 1125315, N'Acetaminophen', N'da488d88-ad6c-460f-b030-daf3827753f8', CAST(N'2010-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3216, N'PEDIACARE INFANT GAS RELIEF (Oral Liquid)', 966991, N'Simethicone', N'467af525-ea12-4261-a164-b262f1a017b2', CAST(N'2012-07-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3217, N'PEDIACARE MULTI SYMPTOM COLD (Oral Liquid)', 1119510, N'Dextromethorphan', N'cb6fa9c2-0a9f-4955-beb2-02dbf891aa4b', CAST(N'2014-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3218, N'PEDIACARE NIGHTTIME MULTI-SYMPTOM COLD (Oral Liquid)', 1129625, N'Diphenhydramine', N'e9432ccf-e0c6-4286-82f2-5a6a10bb5893', CAST(N'2014-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3219, N'PEDIADERM AF (Topical)', 922570, N'Nystatin', N'bb68ae89-8a87-4ff7-a71b-f47ed4da1808', CAST(N'2013-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3220, N'PEDIADERM TA (Topical)', 903963, N'Triamcinolone', N'df864d69-bd2d-4fe2-8619-f2e93ab767f6', CAST(N'2013-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3221, N'PEDIA-LAX CHEWABLE (Chewable)', 992956, N'Magnesium Hydroxide', N'975f24d8-218c-40f4-84a5-558acf34329d', CAST(N'2012-05-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3222, N'PEDIA-LAX LIQUID GLYCERIN SUPPOSITORIES (Rectal)', 961145, N'Glycerin', N'9edbb46d-0b50-42e9-b9bb-c78bb10aaba3', CAST(N'2012-11-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3223, N'Pegademase bovine (Injectable)', 581480, N'pegademase bovine', N'9880b900-ea23-11dc-ad56-0002a5d5c51b', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3224, N'Pegaspargase (Injectable)', 1326481, N'pegaspargase', N'd046ec54-9ac8-4c9f-87a7-69e9900d8016', CAST(N'2008-08-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3225, N'Peginterferon alfa-2b (Injectable)', 1797155, N'peginterferon alfa-2b', N'b70816bb-913a-467f-acb8-67ef62cf8dac', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3226, N'PEGINTRON (Injectable)', 1797155, N'peginterferon alfa-2b', N'b70816bb-913a-467f-acb8-67ef62cf8dac', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3227, N'Pegloticase (Injectable)', 40226208, N'Pegloticase', N'5f4574d1-401f-4647-83e5-28c0f4a122a7', CAST(N'2013-04-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3228, N'PEGYLAX (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'bcd57d3c-e1c4-474f-a757-ca89b020278b', CAST(N'2014-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3229, N'Penciclovir (Topical)', 981654, N'penciclovir', N'936c7c51-a286-405f-9aa4-ad910f2e8782', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3230, N'Penicillamine (Oral Pill)', 19028050, N'Penicillamine', N'80e736d3-2017-4d68-94b4-38255c3c59c6', CAST(N'2012-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3231, N'Penicillin G benzathine/Penicillin G procaine (Injectable)', 1728416, N'Penicillin G', N'9a595f58-21e3-4b82-aa4c-8697682bff80', CAST(N'2013-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3232, N'Penicillin G Potassium (Injectable)', 1728416, N'Penicillin G', N'd8aaefb6-3f7d-4bc5-b40a-1c58c3054320', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3233, N'Penicillin G procaine (Injectable)', 1728416, N'Penicillin G', N'04f90445-9426-41f4-a467-f0e3245740d7', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3234, N'Penicillin V Potassium (Oral Liquid)', 1729720, N'Penicillin V', N'2bfee83c-4f38-440e-9061-58036490d009', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3235, N'Penicillin V Potassium (Oral Pill)', 1729720, N'Penicillin V', N'e3b6a3b4-a61a-4432-9e90-c1ba9e210939', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3236, N'Penicillium chrysogenum var. chrysogenum extract (Injectable)', 40161349, N'Penicillium chrysogenum var. chrysogenum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3237, N'Penicillium expansum extract (Injectable)', 40174478, N'Penicillium expansum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3238, N'Penicillium italicum extract (Injectable)', 40176125, N'Penicillium italicum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3239, N'PENLAC NAIL LACQUER (Topical)', 950098, N'ciclopirox', N'9793245c-c3e0-4351-a2ab-b54b46aecb43', CAST(N'2013-05-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3240, N'PENNSAID (Topical)', 1124300, N'Diclofenac', N'4732a181-9fe0-49b4-b486-e2da9ad66e31', CAST(N'2015-01-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3241, N'Pentamidine (Inhalant)', 1730370, N'Pentamidine', N'e2ad9d3c-b6c3-4f70-87e0-722a8ff94ccb', CAST(N'2011-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3242, N'PENTASA XR (Oral Pill)', 968426, N'mesalamine', N'1bdf3222-469c-44b0-bbcd-25faeaeff178', CAST(N'2014-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3243, N'PENTobarbital (Injectable)', 730729, N'Pentobarbital', N'5c380ab0-4386-48b6-80ab-ca594b23bc74', CAST(N'2012-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3244, N'Pentostatin (Injectable)', 19031224, N'Pentostatin', N'151c6d2e-1af1-4c13-96ec-de3228c6efb3', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3245, N'Pentoxifylline XR (Oral Pill)', 1331247, N'Pentoxifylline', N'e09702d1-43d4-47ed-9563-5af3cd667727', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3246, N'PEP-BACK (Oral Pill)', 1134439, N'Caffeine', N'f9759c55-5d57-4fc4-9fa4-97fc117ab42e', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3247, N'PEPCID (Oral Pill)', 953076, N'Famotidine', N'2854047f-c5c4-43c3-8ef2-5c0a84a307f2', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3248, N'PEPCID COMPLETE (Chewable)', 19035704, N'Calcium Carbonate', N'e874118f-b4fe-4c80-aece-99ea20e7e805', CAST(N'2014-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3249, N'PEPTO-BISMOL (Chewable)', 937791, N'bismuth subsalicylate', N'a1785301-3d4d-4c47-bfa1-b51f54201c53', CAST(N'2014-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3250, N'PEPTO-BISMOL (Oral Liquid)', 937791, N'bismuth subsalicylate', N'f2ed9662-687a-4091-b097-dec865af09aa', CAST(N'2014-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3251, N'PEPTO-BISMOL (Oral Pill)', 937791, N'bismuth subsalicylate', N'0f02f1a4-3ea4-43de-bfdb-b9cb7626f92a', CAST(N'2014-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3252, N'PEPTO-BISMOL CHILDREN''S (Chewable)', 19035704, N'Calcium Carbonate', N'2231d2e1-db04-4efb-9b68-76cd83df67e8', CAST(N'2012-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3253, N'PERCOCET (Oral Pill)', 1125315, N'Acetaminophen', N'db8d5c93-7d59-4995-b388-d55ba90d6acb', CAST(N'2013-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3254, N'PERCODAN REFORMULATED MAY 2009 (Oral Pill)', 1112807, N'Aspirin', N'599803dc-7595-482f-aa7e-70d349fbe699', CAST(N'2010-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3255, N'PERCOGESIC REFORMULATED JAN 2011 (Oral Pill)', 1125315, N'Acetaminophen', N'85f0a6c8-30c8-4a1f-ac35-542c77a6522a', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3256, N'PERCY MEDICINE (Oral Liquid)', 937791, N'bismuth subsalicylate', N'08dd53b7-8345-4849-9155-60429cbe2c51', CAST(N'2013-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3257, N'PERDIEM OVERNIGHT (Oral Pill)', 938268, N'sennosides, USP', N'7374ae02-74d4-4250-9116-21872e9545ed', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3258, N'Perennial rye grass pollen extract (Injectable)', 40161976, N'perennial rye grass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3259, N'PERFECT CHOICE ONE MINUTE (Oral Gel)', 976309, N'Hydrofluoric Acid', N'2b678081-29cd-4311-a9fa-d884734778e2', CAST(N'2012-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3260, N'Pergolide (Oral Pill)', 732309, N'Pergolide', N'a26390e8-eb86-4623-8cdd-45b24b14df74', CAST(N'2011-10-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3261, N'PERI-COLACE REFORMULATED FEB 2008 (Oral Pill)', 941258, N'Docusate', N'f63ecf22-fb2b-8677-5bfe-c6ac368977a3', CAST(N'2013-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3262, N'PERIDEX (Mouthwash)', 1790812, N'Chlorhexidine', N'6ea1691d-5379-f0c0-1b37-ecf08f6dbc00', CAST(N'2013-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3263, N'PERIGIENE (Soap)', 949459, N'chloroxylenol', N'4f6e8610-f474-450e-a385-eaea58f649c8', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3264, N'PERIGUARD (Topical)', 911064, N'Zinc Oxide', N'6e4a7df5-684d-4fe4-bf55-05ce9b5685e6', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3265, N'Perindopril (Oral Pill)', 1373225, N'Perindopril', N'87768fbf-7c63-47da-8925-0316f343d6ef', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3266, N'PERIO MED (Mouthwash)', 1036094, N'Stannous Fluoride', N'7f79eb00-86df-4284-b415-47f45e4849da', CAST(N'2011-10-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3267, N'PERIOCHIP (Implant)', 1790812, N'Chlorhexidine', N'c40ab6ac-8987-42d2-a95b-95fbfd3b0162', CAST(N'2010-03-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3268, N'PERIOGARD (Mouthwash)', 1790812, N'Chlorhexidine', N'6e537d5f-bce1-41ce-9984-9b3c2861b7c9', CAST(N'2010-03-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3269, N'PERMAX (Oral Pill)', 732309, N'Pergolide', N'a26390e8-eb86-4623-8cdd-45b24b14df74', CAST(N'2007-09-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3270, N'Permethrin (Shampoo)', 922868, N'Permethrin', N'9f4cad52-e1fe-4c7b-ab08-deeef4a86ca9', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3271, N'Permethrin (Topical)', 922868, N'Permethrin', N'a8d4eb78-4556-4315-815c-7f05e691b7aa', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3272, N'Perphenazine (Oral Pill)', 733008, N'Perphenazine', N'20c06f4c-639a-4de3-846f-7754537dc935', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3273, N'PERSA-GEL (Topical)', 918172, N'Benzoyl Peroxide', N'2af69b7d-258a-4cc2-b3f3-a108ccf99458', CAST(N'2015-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3274, N'PERSANTINE (Oral Pill)', 1331270, N'Dipyridamole', N'ca68879c-0214-4d7c-93b0-bdaf8ef23f8e', CAST(N'2011-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3275, N'Petrolatum (Topical)', 19033354, N'Petrolatum', N'8068b6e6-2bb7-4262-acaf-05e7a60249a6', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3276, N'Petrolatum/Resorcinol (Topical)', 19033354, N'Petrolatum', N'03f57a4a-f94b-4ba6-b709-41cfb6e16261', CAST(N'2014-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3277, N'Petrolatum/Zinc Oxide (Paste)', 19033354, N'Petrolatum', N'f830a0e4-dba5-4a5f-af35-3832ec70d4d3', CAST(N'2014-04-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3278, N'PEXEVA (Oral Pill)', 722031, N'Paroxetine', N'6c4d4603-190a-496f-a40f-bc09853b9820', CAST(N'2014-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3279, N'PFIZERPEN (Injectable)', 1728416, N'Penicillin G', N'efef4846-9497-41af-8dd6-518f86eca7f2', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3280, N'PHAZYME (Oral Pill)', 966991, N'Simethicone', N'740fd60b-ebb8-493b-aadb-55eee80f09fe', CAST(N'2014-12-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3281, N'PHENADOZ (Rectal)', 1153013, N'Promethazine', N'c293895b-1010-4283-9228-1184f01a0ef0', CAST(N'2013-12-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3282, N'PHENAZO (Oral Pill)', 933724, N'Phenazopyridine', N'78506c63-8061-499c-a57e-bdd88f805591', CAST(N'2012-02-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3283, N'Phenazopyridine (Oral Pill)', 933724, N'Phenazopyridine', N'efabc3b6-395b-4a39-8e46-01240f26e016', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3284, N'Phendimetrazine (Oral Pill)', 723344, N'phendimetrazine', N'112cbc20-15ab-5ac1-e054-00144ff8d46c', CAST(N'2015-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3285, N'Phenelzine (Oral Pill)', 733896, N'Phenelzine', N'afd48e96-a64e-4e5a-ba21-504a53855397', CAST(N'2014-10-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3286, N'PHENERGAN (Injectable)', 1153013, N'Promethazine', N'6f7e47cc-f823-4336-8107-f980e3049617', CAST(N'2012-10-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3287, N'PHENERGAN (Rectal)', 1153013, N'Promethazine', N'd24e400d-e781-a0a4-b629-e99c32736b8a', CAST(N'2014-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3288, N'PHENobarbital (Oral Liquid)', 734275, N'Phenobarbital', N'ff602c63-870a-4a32-b14e-27dbfb34151f', CAST(N'2015-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3289, N'PHENobarbital (Oral Pill)', 734275, N'Phenobarbital', N'1c97b14f-b6a9-4f34-891c-f84280729a89', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3290, N'Phenol (Mucosal)', 923540, N'phenol', N'74122093-83c0-4049-a2c8-fb557dacc7c5', CAST(N'2015-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3291, N'Phenol (Oral Lozenge)', 923540, N'phenol', N'6f4402aa-3f6e-4469-b512-868dba734d2b', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3292, N'Phenol (Topical)', 923540, N'phenol', N'3e7d3299-dad2-401d-a81c-5653f44de3ba', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3293, N'Phentermine (Oral Pill)', 735340, N'Phentermine', N'efa6398d-fd9c-48f4-a91f-5a91b4ae5b5e', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3294, N'Phentermine XR (Oral Pill)', 735340, N'Phentermine', N'7ca86c66-409b-4852-8631-c3ada6e60738', CAST(N'2013-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3295, N'Phentolamine (Injectable)', 1335539, N'Phentolamine', N'4025cf98-ea87-4531-b0fc-6283c84f63f3', CAST(N'2011-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3296, N'Phenylbutazone (Injectable)', 1135710, N'Phenylbutazone', N'340d310d-7987-4f9c-ae39-eab2340d8f74', CAST(N'2014-04-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3297, N'Phenylbutyrate (Oral Pill)', 1539954, N'phenylbutyrate', N'aa638c13-3048-42b2-8a8b-79dae040ea35', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3298, N'Phenylbutyrate (Oral Powder)', 1539954, N'phenylbutyrate', N'aa638c13-3048-42b2-8a8b-79dae040ea35', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3299, N'Phenylephrine (Injectable)', 1135766, N'Phenylephrine', N'1651c487-5454-49f7-af45-71bfb9c9c56b', CAST(N'2011-09-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3300, N'Phenylephrine (Nasal)', 1135766, N'Phenylephrine', N'887562bf-1b9d-4980-8859-5d8d8a723994', CAST(N'2015-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3301, N'Phenylephrine (Ophthalmic)', 1135766, N'Phenylephrine', N'a4d3fe20-f063-11e0-ac29-0002a5d5c51b', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3302, N'Phenylephrine (Oral Liquid)', 1135766, N'Phenylephrine', N'4dfd46e4-b9f9-464d-aa47-e8fa9e526a5d', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3303, N'Phenylephrine (Oral Pill)', 1135766, N'Phenylephrine', N'22feef40-6b75-48a9-827c-f7925cf1f695', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3304, N'Phenylephrine (Rectal)', 1135766, N'Phenylephrine', N'a95c678f-84f7-13db-f5b5-05d4d8761fc4', CAST(N'2012-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3305, N'Phenylephrine/Pramoxine (Rectal)', 1135766, N'Phenylephrine', N'e144fb04-db3c-4e22-9c9f-8378c7f0ce1f', CAST(N'2014-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3306, N'Phenylephrine/Promethazine (Oral Liquid)', 1135766, N'Phenylephrine', N'1ed2a01c-6521-451e-819f-7464562314a3', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3307, N'Phenylephrine/Pyrilamine (Oral Liquid)', 1135766, N'Phenylephrine', N'1089fc64-2296-4c80-a0db-efd50e693a25', CAST(N'2012-12-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3308, N'Phenylephrine/Pyrilamine (Oral Pill)', 1135766, N'Phenylephrine', N'fd6ab993-d4ca-490b-a07c-61b0910ea657', CAST(N'2013-10-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3309, N'Phenylephrine/Thonzylamine (Oral Liquid)', 1135766, N'Phenylephrine', N'5e133352-255f-41cc-aacc-0508d634368d', CAST(N'2014-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3310, N'Phenylephrine/Triprolidine (Oral Liquid)', 1135766, N'Phenylephrine', N'26c2117e-804e-4132-8707-fc0302fb9090', CAST(N'2014-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3311, N'Phenylephrine/Witch Hazel (Rectal)', 1135766, N'Phenylephrine', N'126d0cf5-4619-45c5-88dc-7028a11787fb', CAST(N'2014-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3312, N'PHENYLHISTINE DH (Oral Liquid)', 1192710, N'Chlorpheniramine', N'6ca7c4ff-ba0d-490f-b8b8-9518955424e1', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3313, N'PHENYTEK XR (Oral Pill)', 740910, N'Phenytoin', N'fc10b6de-3dbd-4f8a-8049-def272d0a2f1', CAST(N'2014-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3314, N'Phenytoin (Chewable)', 740910, N'Phenytoin', N'708599c8-6d55-4765-94b6-0c8229dd1379', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3315, N'Phenytoin (Oral Liquid)', 740910, N'Phenytoin', N'9ce9adc8-6fa2-4444-8386-14cd576ac63d', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3316, N'Phenytoin (Oral Pill)', 740910, N'Phenytoin', N'a0663e35-fb54-4267-81eb-a7165be54465', CAST(N'2014-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3317, N'Phenytoin XR (Oral Pill)', 740910, N'Phenytoin', N'f46729db-f841-4bfc-8a29-7a09a48fc9d6', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3318, N'PHISOHEX (Soap)', 1768734, N'Hexachlorophene', N'e9c6f5b4-8374-491a-9b7c-fe008f20e3d1', CAST(N'2013-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3319, N'PHOS-FLUR (Mouthwash)', 19069022, N'Sodium Fluoride', N'84de9ca9-7959-4d5f-9bb0-884cee1b8038', CAST(N'2011-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3320, N'PHOS-FLUR (Toothpaste)', 19069022, N'Sodium Fluoride', N'540306ab-083a-4129-9c66-7ff5e425d9dc', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3321, N'PHOSLO (Oral Pill)', 951469, N'calcium acetate', N'34a29fae-b549-41ed-bd7d-e98fe2110bef', CAST(N'2014-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3322, N'PHOSPHOLINE IODIDE (Ophthalmic)', 958368, N'Echothiophate', N'c4adbc81-6681-4e12-f8ab-5d1cb7723aad', CAST(N'2013-12-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3323, N'PHOTOFRIN (Injectable)', 19089602, N'Dihematoporphyrin Ether', N'5c4841b4-fbc0-4163-8ee1-cb28629cbfbf', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3324, N'P-Hydroxyamphetamine/Tropicamide (Ophthalmic)', 19026274, N'p-Hydroxyamphetamine', N'da8a8a19-ac1b-4160-aac4-c4c57598eb5d', CAST(N'2012-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3325, N'Physostigmine (Injectable)', 19044337, N'Physostigmine', N'b81350a6-715b-451c-87e9-3674ec29ffd8', CAST(N'2014-10-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3326, N'Pignut hickory pollen extract (Injectable)', 40172636, N'pignut hickory pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3327, N'Pilocarpine (Ophthalmic)', 945286, N'Pilocarpine', N'd87192c5-c6b4-4d56-95b1-bb242afed3c1', CAST(N'2013-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3328, N'Pilocarpine (Oral Pill)', 945286, N'Pilocarpine', N'610022b7-7dc9-405a-a580-104657f43bdf', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3329, N'Pimecrolimus (Topical)', 915935, N'Pimecrolimus', N'e4027e5a-0f9b-4070-b196-f60172f45c4c', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3330, N'Pimozide (Oral Pill)', 745790, N'Pimozide', N'fd9729c3-545f-4d34-9bc7-72b61e028fc4', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3331, N'Pin oak pollen extract (Injectable)', 40172640, N'pin oak pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3332, N'Pindolol (Oral Pill)', 1345858, N'Pindolol', N'07fe9cc3-1ef2-420c-b45d-7f1e894b6ef9', CAST(N'2014-10-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3333, N'PIN-X (Chewable)', 1759270, N'Pyrantel', N'8c37db7c-a73e-4d99-a8a9-d55da1a74a3e', CAST(N'2011-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3334, N'Pioglitazone (Oral Pill)', 1525215, N'pioglitazone', N'd2ddc491-88a9-4063-9150-443b4fa4330c', CAST(N'2015-05-01 00:00:00.000' AS DateTime), 296, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3335, N'Piperacillin (Injectable)', 1746114, N'Piperacillin', N'fac0c875-111e-4af2-d186-ed4d4ee9de59', CAST(N'2007-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3336, N'Piperacillin/Tazobactam (Injectable)', 1746114, N'Piperacillin', N'7b3ba6b9-59e1-454a-9ddc-ab3592221627', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3337, N'Piperonyl Butoxide/Pyrethrins (Shampoo)', 946340, N'Piperonyl Butoxide', N'4954a3f2-8d27-4955-ab88-2518b8a05252', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3338, N'Piperonyl Butoxide/Pyrethrins (Topical)', 946340, N'Piperonyl Butoxide', N'7509990f-0bc8-44dc-9678-05b27f2c1368', CAST(N'2013-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3339, N'PIPRACIL (Injectable)', 1746114, N'Piperacillin', N'fac0c875-111e-4af2-d186-ed4d4ee9de59', CAST(N'2007-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3340, N'Piroxicam (Oral Pill)', 1146810, N'Piroxicam', N'6047dd25-8419-42ce-bd58-9e568ae7b50f', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3341, N'Pitavastatin (Oral Pill)', 40165636, N'pitavastatin', N'44dcbf97-99ec-427c-ba50-207e0069d6d2', CAST(N'2013-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3342, N'Pitch pine pollen extract (Injectable)', 40172710, N'pitch pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3343, N'PITOCIN (Injectable)', 1326115, N'Oxytocin', N'969d5b35-0add-4c23-9605-6a5b6ab65c95', CAST(N'2013-11-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3344, N'Plains cottonwood pollen extract (Injectable)', 40167516, N'plains cottonwood pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3345, N'PLAN B ONE-STEP (Oral Pill)', 1589505, N'Levonorgestrel', N'e53e3f9a-d359-4c5a-aceb-d002ed367849', CAST(N'2013-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3346, N'PLAQUENIL (Oral Pill)', 1777087, N'Hydroxychloroquine', N'631ed616-f23c-43c9-b63b-f53707c077cb', CAST(N'2013-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3347, N'PLASBUMIN (Injectable)', 1344143, N'Albumin Human, USP', N'5b334e41-5297-540c-5fc1-cd7b845c5685', CAST(N'2015-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3348, N'Plasma protein fraction (Injectable)', 19025693, N'plasma protein fraction', N'679bbaf2-b082-5948-8400-ece5340eabc1', CAST(N'2014-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3349, N'PLASMA-LYTE 56 (Injectable)', 19013986, N'magnesium acetate', N'94c12711-d672-450d-baae-06e24a72aace', CAST(N'2006-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3350, N'PLASMA-LYTE 56 IN 5 % DEXTROSE (Injectable)', 1560524, N'Glucose', N'85c08b62-8de0-42d2-8cdc-fe42e6b605d7', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3351, N'PLASMANATE (Injectable)', 19025693, N'plasma protein fraction', N'679bbaf2-b082-5948-8400-ece5340eabc1', CAST(N'2014-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3352, N'PLAVIX (Oral Pill)', 1322184, N'clopidogrel', N'10360cf0-1671-3cbe-cd7c-2c8e8753bd1b', CAST(N'2013-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3353, N'Pleospora herbarum extract (Injectable)', 40176165, N'Pleospora herbarum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3354, N'Plerixafor (Injectable)', 19017581, N'Plerixafor', N'0ed08d2b-5051-46b2-aa37-1d6275bf9003', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3355, N'PLETAL (Oral Pill)', 1350310, N'cilostazol', N'24d75b58-bafb-4440-b8d7-4f4079c08b0b', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3356, N'PLEXION (Soap)', 1036252, N'Sulfacetamide', N'817a486f-7668-42fa-8f7c-d67ffc647da5', CAST(N'2014-05-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3357, N'PLEXION (Topical)', 1036252, N'Sulfacetamide', N'f4ad79c1-bdac-40aa-af75-476826c7f009', CAST(N'2014-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3358, N'PLURATUSS (Oral Liquid)', 1130863, N'Brompheniramine', N'08fb676a-9df6-435f-90f1-9b0b2de453ce', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3359, N'Podofilox (Topical)', 947705, N'podofilox', N'6af07697-5203-43e0-ba35-83683af851c3', CAST(N'2014-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3360, N'Polidocanol (Injectable)', 40175900, N'polidocanol', N'dfd6b4a0-b0dc-11e2-9e96-0800200c9a66', CAST(N'2015-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3361, N'POLOCAINE (Injectable)', 702774, N'Mepivacaine', N'007fcf17-f78a-40a7-d494-af93bbb40032', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3362, N'POLY HIST CB (Oral Liquid)', 1140640, N'carbetapentane', N'c3a1a47a-27ce-4565-9d6a-a2d8314357a6', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3363, N'POLY HIST FORTE REFORMULATED NOV 2013 (Oral Pill)', 1192710, N'Chlorpheniramine', N'8f6622e1-b40d-4d1c-9322-463775728a25', CAST(N'2015-02-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3364, N'POLY HIST NC (Oral Liquid)', 1201620, N'Codeine', N'96a2f945-bace-431e-8fd6-d73a6dc1baea', CAST(N'2015-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3365, N'POLY HIST PD (Oral Liquid)', 1192710, N'Chlorpheniramine', N'8728160d-6172-4f4e-b512-46f5d9bca733', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3366, N'POLY TUSSIN EX (Oral Liquid)', 1189596, N'dihydrocodeine', N'a3d94294-e66b-4384-9e9a-489a98bd5964', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3367, N'POLYCIN-B (Ophthalmic)', 915175, N'Bacitracin', N'7eee57e9-b09c-4316-add2-66b5b06b6e79', CAST(N'2011-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3368, N'POLYETHYLENE GLYCOL 3350 (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'bcd57d3c-e1c4-474f-a757-ca89b020278b', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3369, N'POLYETHYLENE GLYCOL 3350/Potassium Chloride/Sodium Bicarbonate/Sodium Chloride (Oral Liquid)', 986417, N'POLYETHYLENE GLYCOL 3350', N'444c83ae-ac3a-467c-be05-e2bcbfbaaba1', CAST(N'2014-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3370, N'Polyethylene Glycol 400 (Ophthalmic)', 948490, N'Polyethylene Glycol 400', N'10fcf407-6eaf-4730-9ed0-9b7715cf5701', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3371, N'Polyethylene Glycol 400/Propylene glycol (Ophthalmic)', 948490, N'Polyethylene Glycol 400', N'46288fea-f448-4a9e-b3da-f9fc54614ffd', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3372, N'Polyethylene Glycol 400/Tetrahydrozoline (Ophthalmic)', 948490, N'Polyethylene Glycol 400', N'36136ce4-9d66-4e56-bd51-0616a79a42a7', CAST(N'2013-02-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3373, N'Polymyxin B (Injectable)', 948582, N'Polymyxin B', N'805caef0-89df-4bcf-876d-9f6b7a89c9a3', CAST(N'2015-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3374, N'Polymyxin B/Trimethoprim (Ophthalmic)', 948582, N'Polymyxin B', N'1a01d41b-3da1-4938-9e71-499320c72dd2', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3375, N'Polysaccharide iron complex (Oral Liquid)', 1300751, N'Polysaccharide iron complex', N'17cd83ec-8779-45f9-8c8d-0aaa8c7b9b42', CAST(N'2014-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3376, N'Polysaccharide iron complex (Oral Pill)', 1300751, N'Polysaccharide iron complex', N'968c74e0-0510-4a0e-add2-37af97fc6928', CAST(N'2014-03-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3377, N'Polysorbate 80 (Ophthalmic)', 948760, N'Polysorbate 80', N'dbb0d312-c79a-4c89-acb1-b895b52c05d5', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3378, N'POLYSPORIN (Topical)', 915175, N'Bacitracin', N'dd7aceb6-0666-4059-b2a9-8e7fe5f3f0ac', CAST(N'2013-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3379, N'Polythiazide/Reserpine (Oral Pill)', 948787, N'Polythiazide', N'b503fa5e-5726-426d-867c-e8fe59ed3ead', CAST(N'2006-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3380, N'Polyvinyl Alcohol (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'556e7de7-e0ae-4ddb-a190-599238355443', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3381, N'Polyvinyl Alcohol/Povidone (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'ecaa0eba-1662-4394-b26f-a765f422dcea', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3382, N'Polyvinyl Alcohol/Povidone/Tetrahydrozoline (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'9b5a7220-33ae-4bee-b7d3-65cf2ef86c88', CAST(N'2011-11-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3383, N'Pomalidomide (Oral Pill)', 43014237, N'pomalidomide', N'2b25ef01-5c9e-11e1-b86c-0800200c9a66', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3384, N'POMALYST (Oral Pill)', 43014237, N'pomalidomide', N'2b25ef01-5c9e-11e1-b86c-0800200c9a66', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3385, N'Ponatinib (Oral Pill)', 43013182, N'ponatinib', N'807f988e-117b-4497-934d-73aa78baac71', CAST(N'2014-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3386, N'Post oak pollen extract (Injectable)', 40172774, N'post oak pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3387, N'Potassium Acetate (Injectable)', 19076414, N'Potassium Acetate', N'0f2af08c-8dbb-46ce-9582-13239a47b546', CAST(N'2014-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3388, N'Potassium bicarbonate (Effervescent)', 19027080, N'potassium bicarbonate', N'98c778f9-5a3d-4b4f-9c9e-8a5f0b84b2a6', CAST(N'2015-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3389, N'Potassium bitartrate/Sodium Bicarbonate (Rectal)', 19086788, N'Potassium bitartrate', N'd868de56-ac3b-4e44-8aa5-031661f0ac25', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3390, N'Potassium Chloride (Effervescent)', 19049105, N'Potassium Chloride', N'd5a02700-b888-43b0-85c5-ac8938438c9e', CAST(N'2012-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3391, N'Potassium Chloride (Injectable)', 19049105, N'Potassium Chloride', N'7c390c7c-1a1d-4f8a-a83b-097179278b2a', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3392, N'Potassium Chloride (Oral Liquid)', 19049105, N'Potassium Chloride', N'bae3548f-40fe-4ef5-adb3-eb4cef6f735d', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3393, N'Potassium Chloride XR (Oral Pill)', 19049105, N'Potassium Chloride', N'74883ca9-e9cf-4556-929d-72c53f0478ac', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3394, N'Potassium Chloride/Sodium Chloride (Injectable)', 19049105, N'Potassium Chloride', N'becc7410-0a25-49f5-b0c3-240078479dc8', CAST(N'2014-11-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3395, N'Potassium citrate XR (Oral Pill)', 976545, N'potassium citrate', N'2215dc1d-0b5a-469e-9b51-4d7480a51078', CAST(N'2014-11-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3396, N'Potassium gluconate (Oral Pill)', 19059547, N'Potassium gluconate', N'10e2e633-9bc5-41d7-89ab-a10a928e89ce', CAST(N'2015-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3397, N'Potassium Iodide (Oral Pill)', 19049909, N'Potassium Iodide', N'566c8453-bae5-4f96-bc82-30d4543c9895', CAST(N'2014-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3398, N'Potassium nitrate (Oral Strip)', 927322, N'potassium nitrate', N'ac99f344-f0a7-4502-a06f-888a1b382edd', CAST(N'2010-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3399, N'Potassium nitrate/Silver Nitrate (Topical)', 927322, N'potassium nitrate', N'b7634e27-3c75-4e56-ab42-3e5796edb0c7', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3400, N'Potassium nitrate/Sodium Fluoride (Toothpaste)', 927322, N'potassium nitrate', N'1b6618ea-6533-41d7-be2c-13bb9e108dc5', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3401, N'Potassium phosphate/Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Oral Pill)', 19027362, N'potassium phosphate', N'83376725-ee0f-40ad-bd90-31a61b9445cf', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3402, N'Potassium phosphate/Sodium Phosphate, Monobasic (Oral Pill)', 19027362, N'potassium phosphate', N'9f446400-c403-4971-879e-1341f7f7d9da', CAST(N'2014-10-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3403, N'Povidone-Iodine (Ophthalmic)', 1750087, N'Povidone-Iodine', N'b026de1b-9949-4557-ac49-c7b0038c24cd', CAST(N'2011-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3404, N'Povidone-Iodine (Soap)', 1750087, N'Povidone-Iodine', N'4779974e-c149-489d-9cce-a0e9e0e921c9', CAST(N'2012-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3405, N'Povidone-Iodine (Topical)', 1750087, N'Povidone-Iodine', N'6ebacffc-e42c-4e8a-a87c-684881460742', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3406, N'Povidone-Iodine (Vaginal)', 1750087, N'Povidone-Iodine', N'ebd9aa34-6b66-4645-bbaa-51e087b54bbd', CAST(N'2014-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3407, N'PRADAXA (Oral Pill)', 40228152, N'dabigatran etexilate', N'5db7f199-8752-4d24-85f7-e34ca8f4d02e', CAST(N'2011-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3408, N'Pralidoxime (Injectable)', 1727468, N'pralidoxime', N'2741d8fd-51c2-46be-880b-99f2b20a6137', CAST(N'2014-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3409, N'PRAMEGEL REFORMULATED APR 2012 (Topical)', 901656, N'Menthol', N'848cfd76-aa0a-427b-959f-66d2cf5f9a34', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3410, N'Pramipexole (Oral Pill)', 720810, N'Pramipexole', N'04bf2b80-5371-4641-bbf5-e19587c0e9cf', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3411, N'PRAMOSONE (Topical)', 975125, N'Hydrocortisone', N'f55fbf9a-cfab-4612-ba40-140e1339ca00', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3412, N'Pramoxine (Rectal)', 927478, N'pramoxine', N'0494f952-de65-49d8-a8a6-5ee5abd53619', CAST(N'2012-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3413, N'Pramoxine (Soap)', 927478, N'pramoxine', N'c0cd4ef5-860f-4035-9f91-fe4f78c33ae2', CAST(N'2015-06-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3414, N'Pramoxine (Topical)', 927478, N'pramoxine', N'cb1d2724-dfaa-4c70-8222-124f9db14488', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3415, N'Pramoxine/Zinc Acetate (Topical)', 927478, N'pramoxine', N'95a66433-6a68-4f3c-9aaa-4d27443aa7e5', CAST(N'2015-06-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3416, N'Pramoxine/Zinc Oxide (Rectal)', 927478, N'pramoxine', N'0d5ba4f1-1178-490d-8524-143d0aa2f0ef', CAST(N'2015-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3417, N'PRANDIMET (Oral Pill)', 1503297, N'Metformin', N'5be33711-b77d-4a01-87c8-3b2618c16e8f', CAST(N'2012-05-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3418, N'PRANDIN (Oral Pill)', 1516766, N'repaglinide', N'e2a07020-a596-4282-bb7c-c9ebe6edcd61', CAST(N'2015-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3419, N'PRASCION (Soap)', 1036252, N'Sulfacetamide', N'c3aeca7e-4b7d-431c-a0c9-f7f5b05ad5a8', CAST(N'2011-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3420, N'PRASCION (Topical)', 1036252, N'Sulfacetamide', N'49052371-e1d6-4665-b82e-442bdf4b177d', CAST(N'2010-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3421, N'Prasugrel (Oral Pill)', 40163718, N'prasugrel', N'cb684ad9-0b72-406f-8a07-a419254ccd36', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3422, N'PRAVACHOL (Oral Pill)', 1551860, N'Pravastatin', N'897ad8b7-921d-eb02-a61c-3419e662a2da', CAST(N'2013-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3423, N'Pravastatin (Oral Pill)', 1551860, N'Pravastatin', N'88295e57-9167-48a0-b52f-6ec9cef61109', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3424, N'PRAX (Topical)', 927478, N'pramoxine', N'35ca8ff5-79da-4e7c-be71-91d7b8a6d977', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3425, N'Praziquantel (Oral Pill)', 1750461, N'Praziquantel', N'34ce1cdd-648e-4f1e-8512-bf3d4cc22eb9', CAST(N'2015-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3426, N'Prazosin (Oral Pill)', 1350489, N'Prazosin', N'14a764d2-6142-443e-9598-414f11cbb627', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3427, N'PRECOSE (Oral Pill)', 1529331, N'Acarbose', N'e2158832-ad0b-4b9c-bbf0-1608a177bf85', CAST(N'2015-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3428, N'PRED FORTE (Ophthalmic)', 1550557, N'prednisolone', N'00a5aa88-e361-4ea7-8922-530c738b726e', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3429, N'PRED MILD (Ophthalmic)', 1550557, N'prednisolone', N'90fba723-51b1-4404-a30b-816f35001d91', CAST(N'2014-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3430, N'Prednicarbate (Topical)', 928110, N'prednicarbate', N'ccc7985a-da29-475f-8a53-0f76ba20b86d', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3431, N'prednisoLONE (Ophthalmic)', 1550557, N'prednisolone', N'dbcab023-8a71-4c66-ac6b-b98b20a493f9', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3432, N'prednisoLONE (Oral Disintegrating)', 1550557, N'prednisolone', N'1e379543-c4cf-4e72-953b-db15b7f0c2a1', CAST(N'2014-12-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3433, N'prednisoLONE (Oral Liquid)', 1550557, N'prednisolone', N'9f4b181e-2675-40c6-a3d7-a8fe671230c1', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3434, N'prednisoLONE (Oral Pill)', 1550557, N'prednisolone', N'b8fadaec-9985-4f17-9b2f-b2f6a28cae1c', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3435, N'PrednisoLONE/Sulfacetamide (Ophthalmic)', 1550557, N'prednisolone', N'e5a2f3a5-2b9d-4d02-ad5c-e6a890569363', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3436, N'predniSONE (Oral Pill)', 1551099, N'Prednisone', N'd3abe47f-8ad5-4752-b772-97b56cca19f2', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3437, N'Pregabalin (Oral Pill)', 734354, N'pregabalin', N'59cf1b6b-eaae-4bd8-abca-8e68aeb30ee6', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3438, N'PREGNYL (Injectable)', 1563600, N'Chorionic Gonadotropin', N'dc604794-6dd6-43a7-85fa-2f04ed325c33', CAST(N'2012-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3439, N'PREMARIN (Oral Pill)', 1549080, N'Estrogens, Conjugated (USP)', N'701acf2c-fffe-451a-9b94-82d825e5a47c', CAST(N'2014-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3440, N'PREMSYN PMS (Oral Pill)', 1125315, N'Acetaminophen', N'ce280f7d-ca22-473d-b276-de44933e7957', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3441, N'PREPARATION H COOLING GEL (Rectal)', 1135766, N'Phenylephrine', N'cebee3f7-8591-e4f7-e66a-e43b4ba3aaf4', CAST(N'2014-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3442, N'PREPARATION H MEDICATED WIPES (Topical)', 959196, N'Witch Hazel', N'1953ec64-20ce-488b-8f14-44e15cc9e720', CAST(N'2015-03-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3443, N'PREPARATION H REFORMULATED JUN 2013 (Rectal)', 908523, N'Mineral Oil', N'ce789c2a-1d38-4c5f-923e-9d4dab751c01', CAST(N'2015-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3444, N'PREVACID (Oral Disintegrating)', 929887, N'lansoprazole', N'7140f8d9-e478-4f69-a4eb-3fd4c9414576', CAST(N'2015-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3445, N'PREVACID (Oral Pill)', 929887, N'lansoprazole', N'2f4c571b-a27e-40ef-b0cd-e6e44ac9a15e', CAST(N'2015-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3446, N'PREVIDENT (Toothpaste)', 19069022, N'Sodium Fluoride', N'5b67ae9e-129a-43ab-8eca-d4a38fbbfcf6', CAST(N'2012-09-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3447, N'PREVIDENT 5000 SENSITIVE (Toothpaste)', 927322, N'potassium nitrate', N'b028cfff-4946-49e8-b8bb-197ab99d0d35', CAST(N'2011-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3448, N'PREVIDENT DENTAL RINSE (Mouthwash)', 19069022, N'Sodium Fluoride', N'714c38d1-e018-47a2-9160-6c79ee8c2dc5', CAST(N'2012-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3449, N'PREZISTA (Oral Pill)', 1756831, N'darunavir', N'69b6f72d-fe6b-4347-8801-99ece7e2a29b', CAST(N'2013-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3450, N'PriLOSEC (Oral Pill)', 923645, N'Omeprazole', N'd970b074-957a-4036-92d3-1712386f3858', CAST(N'2015-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3451, N'PRIMACOR (Injectable)', 1368671, N'Milrinone', N'2a0a2d3a-1900-4c73-89c5-c4bde1b61553', CAST(N'2008-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3452, N'Primaquine (Oral Pill)', 1751310, N'Primaquine', N'222f3d0a-7649-44ad-99b2-b2dc8c298e7b', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3453, N'PRIMATENE (Oral Pill)', 1143374, N'Ephedrine', N'9005482c-25ae-d365-33d1-29269532c74d', CAST(N'2013-02-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3454, N'PRIMAXIN (Injectable)', 1797258, N'Cilastatin', N'7aa0ce90-156c-4583-ae6d-9ed3595960c8', CAST(N'2013-04-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3455, N'Primidone (Oral Pill)', 751347, N'Primidone', N'a90d5ba6-4170-0b97-5ae3-fc707c9e4f1b', CAST(N'2015-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3456, N'PRIMLEV (Oral Pill)', 1125315, N'Acetaminophen', N'94679f29-d63a-41a5-bdda-3aa3fc2db531', CAST(N'2015-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3457, N'PRIMSOL (Oral Liquid)', 1705674, N'Trimethoprim', N'a06ea7d8-a884-4b62-a87f-c36d824f2aa4', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3458, N'Privet pollen extract (Injectable)', 40162001, N'privet pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3459, N'PRIVINE (Nasal)', 914533, N'Naphazoline', N'ec2bb7d7-d014-46ed-a836-453e921da4c5', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3460, N'PROAMATINE (Oral Pill)', 1308368, N'Midodrine', N'171543e7-a592-4676-88ef-d68f14701d13', CAST(N'2009-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3461, N'Probenecid (Oral Pill)', 1151422, N'Probenecid', N'8459857e-1a52-45de-81e6-e06ce18508bb', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3462, N'Procainamide (Injectable)', 1351461, N'Procainamide', N'dfd657ec-aaf5-4f9e-85d0-0a2a081ceaf7', CAST(N'2014-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3463, N'Procaine (Injectable)', 751698, N'Procaine', N'999625d5-3a6b-4753-059a-4f19d04c85a5', CAST(N'2007-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3464, N'PROCARDIA (Oral Pill)', 1318853, N'Nifedipine', N'e04aa152-b08d-47f7-b976-f8bee4c386db', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3465, N'PROCENTRA (Oral Liquid)', 719311, N'Dextroamphetamine', N'1548cce2-fb6b-4f17-8a3b-868933f6c9d6', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3466, N'PROCHIEVE (Vaginal)', 1552310, N'Progesterone', N'9f8dc923-65d7-42ff-b718-97e7a7e87822', CAST(N'2009-12-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3467, N'Prochlorperazine (Injectable)', 752061, N'Prochlorperazine', N'328bcba6-a2f8-4216-8f6f-c40959fe8779', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3468, N'Prochlorperazine (Oral Pill)', 752061, N'Prochlorperazine', N'718c6fee-77d5-4ba1-8a1d-f2ac059298b3', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3469, N'Prochlorperazine (Rectal)', 752061, N'Prochlorperazine', N'9bdba30b-53b4-427a-af74-7a39b52130b2', CAST(N'2013-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3470, N'PROCOMYCIN (Topical)', 915175, N'Bacitracin', N'a08ffd2b-6c78-4a1a-9ca4-08a72900119d', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3471, N'PROCORT (Rectal)', 975125, N'Hydrocortisone', N'9e899b72-a16e-4b55-93b5-ab5baec37d50', CAST(N'2013-04-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3472, N'PROCRIT (Injectable)', 1301125, N'Epoetin Alfa', N'9bbe9a5b-ad1d-41a4-9699-ff6dc776bce1', CAST(N'2013-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3473, N'PROCTOCORT (Rectal)', 975125, N'Hydrocortisone', N'a2e1222a-ab91-4382-a210-7dfdd6de1407', CAST(N'2011-02-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3474, N'PROCTOFOAM-HC (Rectal)', 975125, N'Hydrocortisone', N'3831e931-ec0a-11e3-ac10-0800200c9a66', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3475, N'PROCTO-PAK (Rectal)', 975125, N'Hydrocortisone', N'a1148e9e-061c-4070-8059-68ffe3d3b20a', CAST(N'2012-06-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3476, N'PROCTOSOL (Topical)', 975125, N'Hydrocortisone', N'565284e7-4994-486b-8267-18bd166655ac', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3477, N'PROCTOZONE HC (Topical)', 975125, N'Hydrocortisone', N'fcd4747b-3c54-4b2f-a6bc-eafa0cf7016e', CAST(N'2013-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3478, N'PROCYSBI (Oral Pill)', 910888, N'Cysteamine', N'b7b6e290-5168-46dc-9e7f-5995420ec1c1', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3479, N'PRODERM (Topical)', 950933, N'Castor Oil', N'6bf98ba3-d9f6-4872-8220-a1b403226223', CAST(N'2012-10-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3480, N'PRODRIN (Oral Pill)', 1125315, N'Acetaminophen', N'1d157217-d307-423c-8f50-965b23881330', CAST(N'2013-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3481, N'PROFENAL (Ophthalmic)', 1036636, N'Suprofen', N'8de2c303-5d99-46b6-ad6d-a4caadea3604', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3482, N'Progesterone (Injectable)', 1552310, N'Progesterone', N'83cfc12e-75d1-4284-bcc3-beadcbd27171', CAST(N'2014-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3483, N'Progesterone (Oral Pill)', 1552310, N'Progesterone', N'6e8d8c78-001b-00fb-6a03-3b4489198d25', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3484, N'Progesterone (Vaginal)', 1552310, N'Progesterone', N'9f8dc923-65d7-42ff-b718-97e7a7e87822', CAST(N'2009-12-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3485, N'PROGLYCEM (Oral Liquid)', 1523280, N'Diazoxide', N'b16c7832-2fd9-49af-b923-1dc0d91fd6e2', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3486, N'PROGRAF (Oral Pill)', 950637, N'Tacrolimus', N'1e56c550-1c2b-4177-8e49-26303e9e335f', CAST(N'2014-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3487, N'PROLENSA (Ophthalmic)', 1139179, N'bromfenac', N'4e072537-f73c-4a96-a65f-e2805ce112d8', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3488, N'Promethazine (Injectable)', 1153013, N'Promethazine', N'ed16846a-b054-4625-b4e4-4a951e95c92e', CAST(N'2015-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3489, N'Promethazine (Oral Liquid)', 1153013, N'Promethazine', N'e5be207b-122b-490f-a0d6-841132e45180', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3490, N'Promethazine (Oral Pill)', 1153013, N'Promethazine', N'0af133fc-a27d-4099-908a-0bdf7c64f22b', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3491, N'Promethazine (Rectal)', 1153013, N'Promethazine', N'9aa7b3f2-4429-4a61-ad8e-876afb14cc45', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3492, N'PROMETHEGAN (Rectal)', 1153013, N'Promethazine', N'bf9d28d7-0ce1-48bb-85e8-48676e35069c', CAST(N'2014-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3493, N'PROMETRIUM (Oral Pill)', 1552310, N'Progesterone', N'cf73c385-5173-4b54-af23-069581c5d560', CAST(N'2010-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3494, N'PROMOLAXIN (Oral Pill)', 941258, N'Docusate', N'9ff570c5-1d0e-47bb-aea2-347c7b24ca68', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3495, N'PRONTO PLUS (Shampoo)', 946340, N'Piperonyl Butoxide', N'3cdec6f3-4da6-467f-96c3-c8941ff46b56', CAST(N'2011-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3496, N'Propafenone (Oral Pill)', 1353256, N'Propafenone', N'a7c8f090-c48c-44f7-9973-2cf4b491e35c', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3497, N'Proparacaine (Ophthalmic)', 929504, N'proparacaine', N'37cde651-2549-43f3-97b9-cdc442a0aa7a', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3498, N'PROPECIA (Oral Pill)', 996416, N'Finasteride', N'9e7329eb-39f1-4f84-a0bb-91daffaba1c3', CAST(N'2013-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3499, N'PROPEL (Implant)', 905233, N'Mometasone', N'6befbf16-3f60-4ce8-94ec-5ce6a2b7f4e1', CAST(N'2015-01-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3500, N'Propofol (Injectable)', 753626, N'Propofol', N'e3105799-a4b6-f3f4-e6e2-b2b29bbdb538', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3501, N'Propoxyphene (Oral Pill)', 1153664, N'Propoxyphene', N'c6c48eee-240b-4425-8691-35462523652e', CAST(N'2012-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3502, N'Propranolol (Injectable)', 1353766, N'Propranolol', N'87688f92-a620-437d-904a-25c19d4270c8', CAST(N'2013-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3503, N'Propranolol (Oral Liquid)', 1353766, N'Propranolol', N'b6f9dd2a-632b-87eb-70f0-b2064d7ed48a', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3504, N'Propranolol (Oral Pill)', 1353766, N'Propranolol', N'6112d957-e39e-470d-9f66-0bce4b3455ee', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3505, N'Propylhexedrine (Nasal)', 954036, N'propylhexedrine', N'03a8ef3c-a808-6208-e054-00144ff8d46c', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3506, N'Propylthiouracil (Oral Pill)', 1554072, N'Propylthiouracil', N'ff603c99-6620-4945-acdc-c9150b6f77d4', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3507, N'PROSTIN E2 (Vaginal)', 1329415, N'Dinoprostone', N'fae013fc-e199-43f3-86ef-66d34017c534', CAST(N'2014-10-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3508, N'PROSTIN VR (Injectable)', 1381504, N'Alprostadil', N'dea460fa-d05e-4191-8461-f185a711ad89', CAST(N'2014-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3509, N'Protamine Sulfate (USP) (Injectable)', 19054242, N'Protamine Sulfate (USP)', N'8df0a819-9e1a-44ce-97a6-3ea82c867d44', CAST(N'2014-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3510, N'Protein C (Injectable)', 42801108, N'Protein C', N'926914a9-78b2-40ea-b37d-2a55c09bf275', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3511, N'PROTONIX (Injectable)', 948078, N'pantoprazole', N'3cde88e6-28f2-4cbe-8c3f-770b05cc0e1b', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3512, N'PROTONIX (Oral Granules)', 948078, N'pantoprazole', N'189b7b6a-9717-44eb-b87b-fd3e985b2268', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3513, N'PROTONIX (Oral Pill)', 948078, N'pantoprazole', N'e6238767-90da-4176-8ac6-d71c2025dcb5', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3514, N'PROTOPAM (Injectable)', 1727468, N'pralidoxime', N'2741d8fd-51c2-46be-880b-99f2b20a6137', CAST(N'2014-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3515, N'Protriptyline (Oral Pill)', 754270, N'Protriptyline', N'700abc58-9362-4ef5-9d7a-dd3c4d364d0a', CAST(N'2014-07-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3516, N'PROVENGE (Injectable)', 40224095, N'sipuleucel-T', N'8309b497-5d4e-4408-ac0c-2452c11c8a35', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3517, N'PROVIGIL (Oral Pill)', 710650, N'modafinil', N'8b79d52e-e6e5-4aaf-8835-242c72d6ee38', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3518, N'PROzac (Oral Pill)', 755695, N'Fluoxetine', N'4b8fcce1-abfc-4631-9975-9d66e178dab6', CAST(N'2010-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3519, N'PRUDOXIN (Topical)', 738156, N'Doxepin', N'64311378-2da2-4835-a222-5df5204c59c2', CAST(N'2015-02-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3520, N'Prussian blue (Oral Pill)', 19095769, N'Prussian blue', N'baa68c79-5f3d-468a-a510-58b9e978cd50', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3521, N'PSEUDODINE C (Oral Liquid)', 1201620, N'Codeine', N'dd62a5eb-dd5a-4329-8696-07acb555af10', CAST(N'2009-03-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3522, N'Pseudoephedrine (Oral Liquid)', 1154332, N'Pseudoephedrine', N'0ae49d7e-ceec-4ad6-a0b8-cb20237e2b70', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3523, N'Pseudoephedrine (Oral Pill)', 1154332, N'Pseudoephedrine', N'5377d4dd-aad1-4820-bc05-e7dbb152c0f5', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3524, N'Pseudoephedrine/Triprolidine (Oral Liquid)', 1154332, N'Pseudoephedrine', N'b7c62fdd-5709-4023-9c30-6970de4ad2b3', CAST(N'2010-12-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3525, N'Pseudoephedrine/Triprolidine (Oral Pill)', 1154332, N'Pseudoephedrine', N'7f1ff0eb-78e9-465d-9ec9-a900fe8bd9c4', CAST(N'2015-04-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3526, N'PSORCON (Topical)', 960988, N'Diflorasone', N'29c78a72-3dde-493f-b6a2-f286bec1f09e', CAST(N'2007-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3527, N'PSORIASIN (Topical)', 1000995, N'Coal Tar', N'33b9c589-5953-4c9f-bdd0-d827c3446240', CAST(N'2013-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3528, N'PSORIASIN WASH (Soap)', 964407, N'Salicylic Acid', N'3153a8b5-c027-4254-a61b-0c376a38d0f6', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3529, N'Psyllium (Oral Liquid)', 957797, N'Psyllium', N'bb6f5b6a-5111-4e50-8897-74e8ab859cfd', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3530, N'Psyllium (Oral Pill)', 957797, N'Psyllium', N'ea99f870-428a-4d36-8d2d-0eca0240fb54', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3531, N'Psyllium/Sennosides, USP (Oral Pill)', 957797, N'Psyllium', N'3b5e5397-fe64-48c5-8607-47c0a0900953', CAST(N'2013-12-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3532, N'Pullularia extract (Injectable)', 40161386, N'Pullularia extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3533, N'PULMICORT (Inhalant)', 939259, N'Budesonide', N'2e0fa140-85a0-42db-ba15-a068120076b4', CAST(N'2013-04-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3534, N'PULMOZYME (Inhalant)', 1125443, N'Dornase Alfa', N'd8c78a7e-ff99-48f3-8952-643ec2ea0f86', CAST(N'2015-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3535, N'PURALUBE (Ophthalmic)', 908523, N'Mineral Oil', N'6a4a2053-f947-4ce3-a885-a1c1465c8b0b', CAST(N'2014-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3536, N'Purified Protein Derivative of Tuberculin (Injectable)', 19058274, N'Purified Protein Derivative of Tuberculin', N'96d91ba3-9dfe-4420-a835-57647ea30b40', CAST(N'2013-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3537, N'PYLERA (Oral Pill)', 958134, N'bismuth subcitrate', N'7fe5d2db-c59d-4e15-acd7-f9df8eca45aa', CAST(N'2011-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3538, N'Pyrantel (Chewable)', 1759270, N'Pyrantel', N'8c37db7c-a73e-4d99-a8a9-d55da1a74a3e', CAST(N'2011-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3539, N'Pyrantel (Oral Liquid)', 1759270, N'Pyrantel', N'82a9fe66-7646-42cf-9be9-b9e181076e02', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3540, N'Pyrazinamide (Oral Pill)', 1759455, N'Pyrazinamide', N'dd5cde5a-4b8b-4b16-92f4-a4b77f5b4ba3', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3541, N'PYRIDIUM (Oral Pill)', 933724, N'Phenazopyridine', N'ae0f0808-51ed-43b9-86a3-b947c42da89f', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3542, N'Pyridostigmine (Oral Pill)', 759740, N'Pyridostigmine', N'9448c360-0ce2-42fe-9f0c-50f2159e8483', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3543, N'Pyridostigmine XR (Oral Pill)', 759740, N'Pyridostigmine', N'93454159-0c58-1980-34b9-4038a2260420', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3544, N'Pyridoxine (Oral Pill)', 19005046, N'pyridoxine', N'a524c0ff-4893-4df0-aaca-7f690b2bbb13', CAST(N'2012-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3545, N'Pyrimethamine (Oral Pill)', 1760039, N'Pyrimethamine', N'3e4d5027-7939-480f-ae19-82e764d9fa97', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3546, N'QLEARQUIL ALLERGY RELIEF (Oral Pill)', 1107830, N'Loratadine', N'486e5b2b-0456-4794-b263-004102f0795a', CAST(N'2014-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3547, N'QLEARQUIL DAYTIME SINUS & CONGESTION (Oral Pill)', 1125315, N'Acetaminophen', N'119ee51b-6a7f-451b-bf69-ecb92c6a352b', CAST(N'2014-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3548, N'QLEARQUIL NASAL DECONGESTANT (Nasal)', 925636, N'Oxymetazoline', N'9a10ca38-ac96-47ab-ab21-0519c034b8a3', CAST(N'2014-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3549, N'QUADRAMET (Injectable)', 1338558, N'SAMARIUM Sm153', N'61e84808-0999-4923-910c-2a480d5f971a', CAST(N'2013-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3550, N'QUALAQUIN (Oral Pill)', 1760616, N'Quinine', N'ce2ffee3-3048-43a0-ac45-ee32ce0c4c33', CAST(N'2010-05-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3551, N'Quazepam (Oral Pill)', 731188, N'quazepam', N'5d9472c0-e1df-4365-91c9-b54c7019fad3', CAST(N'2015-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3552, N'QUELICIN (Injectable)', 836208, N'Succinylcholine', N'c06156ae-b889-4250-bc85-1435b2635829', CAST(N'2014-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3553, N'QUESTRAN (Oral Liquid)', 19095309, N'Cholestyramine Resin', N'362ddd91-a63f-4ec6-841a-75785dd208c8', CAST(N'2015-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3554, N'QUEtiapine (Oral Pill)', 766814, N'quetiapine', N'03325ca1-4f51-41a1-92f3-ff7f96e01cc8', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3555, N'Quinapril (Oral Pill)', 1331235, N'quinapril', N'a2de05b9-d1aa-4fbb-a9a3-6918cc306f78', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3556, N'quiNIDine (Injectable)', 1360421, N'Quinidine', N'11d14362-8f69-4c30-b487-5d05f6462bd7', CAST(N'2014-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3557, N'quiNIDine (Oral Pill)', 1360421, N'Quinidine', N'a90a03b0-ffbe-4cf6-90b5-bfb0412a1cb2', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3558, N'quiNIDine XR (Oral Pill)', 1360421, N'Quinidine', N'a08a0f0b-6cf5-4fa4-a861-0b054d6fddfc', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3559, N'quiNINE (Oral Pill)', 1760616, N'Quinine', N'0b5bbefd-5b56-46f9-84f5-1456371577fd', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3560, N'QUIXIN (Ophthalmic)', 1742253, N'Levofloxacin', N'09b3a912-97f9-45ae-a162-9f45c860dc22', CAST(N'2011-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3561, N'RABEprazole (Oral Pill)', 911735, N'rabeprazole', N'5a1edab0-a602-4786-9ef5-40063f9efdb4', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3562, N'Rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated (Injectable)', 544505, N'rabies virus vaccine wistar strain PM-1503-3M (Human), Inactivated', N'ba8d4e72-f452-4859-ae6f-3644b4b0a78c', CAST(N'2013-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3563, N'Racepinephrine (Inhalant)', 1300153, N'Racepinephrine', N'5c6d98fe-3e86-4816-92f2-49d38a432e39', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3564, N'RADIOGARDASE (Oral Pill)', 19095769, N'Prussian blue', N'baa68c79-5f3d-468a-a510-58b9e978cd50', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3565, N'RADIUM CHLORIDE RA-223 (Injectable)', 43526934, N'RADIUM CHLORIDE RA-223', N'a398400e-bd31-41a9-9696-4f7c06569ede', CAST(N'2013-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3566, N'RAGWITEK (Sublingual)', 40171301, N'short ragweed pollen extract', N'986abfaf-67fc-47fb-8c86-d9f9cce6fa8b', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3567, N'Raloxifene (Oral Pill)', 1513103, N'Raloxifene', N'7f4bd906-2af7-4f93-af23-6f13b0f5d868', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3568, N'Raltegravir (Oral Pill)', 1712889, N'raltegravir', N'e463b253-ad05-4e5c-8a3b-595d55c56ed7', CAST(N'2013-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3569, N'Ramelteon (Oral Pill)', 781182, N'ramelteon', N'7a51d289-2013-4d37-adf2-91ea49df7932', CAST(N'2010-01-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3570, N'Ramipril (Oral Pill)', 1334456, N'Ramipril', N'2dbd4a0a-09f6-4295-8852-613bd3a0fbfb', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3571, N'Ranibizumab (Injectable)', 19080982, N'ranibizumab', N'de4e66cc-ca05-4dc9-8262-e00e9b41c36d', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3572, N'Ranitidine (Injectable)', 961047, N'Ranitidine', N'9268c1df-bcf3-4899-896d-044492802a33', CAST(N'2013-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3573, N'Ranitidine (Oral Liquid)', 961047, N'Ranitidine', N'dd7a6355-0341-4bce-a942-2a8bba3fb669', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3574, N'Ranitidine (Oral Pill)', 961047, N'Ranitidine', N'b8be814d-24ff-4b46-9b50-187aa1b4aaa0', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3575, N'RAPAMUNE (Oral Pill)', 19034726, N'Sirolimus', N'0f26220a-f4ab-4ceb-9a98-a13dbdeed81f', CAST(N'2011-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3576, N'Rasagiline (Oral Pill)', 715710, N'rasagiline', N'eb558270-1b12-4704-9b09-39f668f30529', CAST(N'2010-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3577, N'RASH RELIEF ANTIBACTERIAL (Topical)', 915175, N'Bacitracin', N'f439fb97-0722-42ee-bc90-67daf0497aa8', CAST(N'2011-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3578, N'RASH RELIEF ANTIFUNGAL (Topical)', 916662, N'dimethicone', N'4114c685-acd1-4c65-842b-1cb7840852dc', CAST(N'2011-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3579, N'RASH RELIEF CLEAR (Topical)', 916662, N'dimethicone', N'0b5753aa-b591-4d6e-8341-fcc9456299b6', CAST(N'2011-11-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3580, N'RASH RELIEF WITH ZINC OXIDE (Topical)', 916662, N'dimethicone', N'54d7250e-6aaa-4fc8-88b3-2fee58ebaf73', CAST(N'2011-11-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3581, N'RAYOS (Oral Pill)', 1551099, N'Prednisone', N'281ab967-7565-4bef-9c0c-a646589c671e', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3582, N'RAZADYNE (Oral Pill)', 757627, N'Galantamine', N'e62efb5a-d2cc-4e11-9e61-10e65ef3d897', CAST(N'2011-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3583, N'REA LO (Topical)', 906914, N'Urea', N'5fcff124-7709-4137-af94-539246e331f4', CAST(N'2014-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3584, N'REA-LO (Topical)', 906914, N'Urea', N'bac5d4a7-2819-48f4-a0de-00d1c2d5ed31', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3585, N'RECOMBINATE (Injectable)', 1352213, N'Factor VIII', N'2a569ec5-08d7-44ab-b649-384a496e173c', CAST(N'2012-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3586, N'RECOTHROM (Topical)', 1300673, N'Thrombin', N'af304504-85af-87ba-edb6-9bf35985cba8', CAST(N'2015-05-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3587, N'RECTICARE (Rectal)', 989878, N'Lidocaine', N'49cb48cf-7a26-4d7a-887f-2e98261d269d', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3588, N'RECTIV (Rectal)', 1361711, N'Nitroglycerin', N'af05dde8-1c06-4cd5-bcd0-8e318874536a', CAST(N'2014-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3589, N'Red mulberry pollen extract (Injectable)', 40161918, N'red mulberry pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3590, N'Red pine pollen extract (Injectable)', 40172530, N'red pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3591, N'Redberry juniper pollen extract (Injectable)', 40172534, N'redberry juniper pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3592, N'Redroot pigweed pollen extract (Injectable)', 40161926, N'redroot pigweed pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3593, N'Redtop grass pollen extract (Injectable)', 40161930, N'redtop grass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3594, N'Redwood pollen extract (Injectable)', 40228820, N'redwood pollen extract', N'3b904f52-6163-4095-a456-11b3018b227a', CAST(N'2009-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3595, N'REFENESEN (Oral Pill)', 1163944, N'Guaifenesin', N'8a172972-d5dd-4c0e-8359-b5fd9edc96d8', CAST(N'2010-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3596, N'REFENESEN PE (Oral Pill)', 1163944, N'Guaifenesin', N'5667fc64-88b5-4caa-87bb-f08808a1d35c', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3597, N'REFISSA (Topical)', 903643, N'Tretinoin', N'fda09c9d-efee-40dc-8030-065ceacd7a5c', CAST(N'2015-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3598, N'REFRESH DROPS (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'cd467181-9d56-4b11-9826-15b5357d0689', CAST(N'2014-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3599, N'REFRESH LACRI-LUBE (Ophthalmic)', 908523, N'Mineral Oil', N'd232a44b-516d-4cdf-a4e7-c3a9a50dc7af', CAST(N'2012-06-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3600, N'REFRESH LIQUIGEL (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'4b8b2f6a-4b89-446c-9e5b-9b83c453a01d', CAST(N'2014-04-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3601, N'REFRESH LUBRICANT (Ophthalmic)', 948856, N'Polyvinyl Alcohol', N'31bf1d6c-9719-4060-b6a3-409a2fe7b560', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3602, N'REFRESH OPTIVE SENSITIVE (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'7f8d88af-fd3b-4138-af61-f24c59ccebd7', CAST(N'2014-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3603, N'REFRESH PM (Ophthalmic)', 908523, N'Mineral Oil', N'24365d64-cd94-41cc-a7e1-033102d98114', CAST(N'2014-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3604, N'REGENECARE (Topical)', 989878, N'Lidocaine', N'c3eec066-38e8-4617-b34d-2f72ffb7a324', CAST(N'2013-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3605, N'REGIMEX (Oral Pill)', 719128, N'Benzphetamine', N'1a5d7233-4453-42a5-8144-a4276db39660', CAST(N'2013-03-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3606, N'REGITINE (Injectable)', 1335539, N'Phentolamine', N'6db10859-2a3f-4782-ac33-94300463658f', CAST(N'2006-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3607, N'REGLAN (Oral Pill)', 906780, N'Metoclopramide', N'55f1ee88-a455-44ba-b51a-2fcefe8eda65', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3608, N'REGRANEX (Topical)', 912476, N'Becaplermin', N'fd2c7d21-7b07-4ab3-8983-816ab3223771', CAST(N'2015-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3609, N'REGULOID (Oral Liquid)', 957797, N'Psyllium', N'f25f3b52-8ac4-4be5-8830-f0a50d19008b', CAST(N'2013-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3610, N'RELAGESIC (Oral Pill)', 1125315, N'Acetaminophen', N'8f1bb6e5-3de5-48b4-bf44-d4e881be5ab0', CAST(N'2012-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3611, N'RELCOF C (Oral Liquid)', 1201620, N'Codeine', N'357c9914-8d87-43d0-ba2f-516a0a455175', CAST(N'2011-03-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3612, N'RELPAX (Oral Pill)', 1189697, N'eletriptan', N'6bb510c8-2ae2-4159-b4c6-0aec5e64b4c9', CAST(N'2014-03-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3613, N'REMBRANDT (Toothpaste)', 19069022, N'Sodium Fluoride', N'11df694e-1594-4eb4-9318-05d6bab51335', CAST(N'2012-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3614, N'REMEDY ANTIFUNGAL (Topical)', 907879, N'Miconazole', N'c31bb2b7-f84b-4c58-8da9-78f3d305419d', CAST(N'2014-02-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3615, N'REMEDY ZINC SKIN PROTECTANT (Paste)', 19033354, N'Petrolatum', N'f830a0e4-dba5-4a5f-af35-3832ec70d4d3', CAST(N'2014-04-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3616, N'REMERON (Oral Pill)', 725131, N'Mirtazapine', N'8feda54f-a3fa-4108-bfc4-c15b0eab4396', CAST(N'2012-02-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3617, N'REMEVEN (Topical)', 906914, N'Urea', N'f5e87f91-e355-4347-ae9b-f38b41802cf3', CAST(N'2011-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3618, N'Remifentanil (Injectable)', 19016749, N'remifentanil', N'dbc63b6e-f8c5-4fd0-8ec3-4f5e19125313', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3619, N'RENACIDIN (Irrigation)', 950435, N'Citric Acid', N'bdb3cef8-79c4-4322-9a21-c13123abe0cc', CAST(N'2013-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3620, N'RENAGEL (Oral Pill)', 952004, N'sevelamer', N'ee835dc1-36b7-4447-a5c6-5ed9e06a839d', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3621, N'RENESE-R (Oral Pill)', 948787, N'Polythiazide', N'b503fa5e-5726-426d-867c-e8fe59ed3ead', CAST(N'2006-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3622, N'RENOVA (Topical)', 903643, N'Tretinoin', N'9f0a0e8d-1051-48a4-80c5-1bd260dd9c36', CAST(N'2014-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3623, N'RENVELA (Oral Pill)', 952004, N'sevelamer', N'6178c669-a2e5-4a82-9ca2-7dfef56b63b9', CAST(N'2011-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3624, N'Repaglinide (Oral Pill)', 1516766, N'repaglinide', N'457c2638-86cd-4afc-b562-eea925e9d42a', CAST(N'2015-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3625, N'REPREXAIN (Oral Pill)', 1174888, N'Hydrocodone', N'ae37a79e-ca8f-44d7-83a3-96cf2ebebedd', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3626, N'REQUIP (Oral Pill)', 713823, N'ropinirole', N'de0bb94f-4fd8-4f27-5ba6-6f392dd5160f', CAST(N'2014-09-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3627, N'RESCON TABLETS (Oral Pill)', 1188114, N'dexchlorpheniramine', N'9d08d801-6cca-4a1c-ab53-5979f16e3110', CAST(N'2012-03-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3628, N'RESCON-GG (Oral Liquid)', 1163944, N'Guaifenesin', N'af378f6d-d506-47b0-8044-5e184ebc5d6a', CAST(N'2013-02-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3629, N'RESCRIPTOR (Oral Pill)', 1747157, N'Delavirdine', N'992306f0-c612-41dd-a4df-35d1fd360033', CAST(N'2011-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3630, N'RESINOL (Topical)', 19033354, N'Petrolatum', N'03f57a4a-f94b-4ba6-b709-41cfb6e16261', CAST(N'2014-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3631, N'Resorcinol/Sulfur (Topical)', 935390, N'resorcinol', N'd30564d2-c27f-44ce-ac21-e24b45acac81', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3632, N'RESPAIRE (Oral Pill)', 1163944, N'Guaifenesin', N'bd8e9558-235a-42f6-81c3-f3c80b2b235d', CAST(N'2011-11-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3633, N'RETAINE (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'6b40c38e-31f8-4aca-9456-04128e6c2e93', CAST(N'2011-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3634, N'RETAINE HPMC (Ophthalmic)', 902251, N'hypromellose', N'ba8f8be3-4641-bc28-2ec0-2ff9f4f9be9f', CAST(N'2013-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3635, N'Retapamulin (Topical)', 991003, N'retapamulin', N'5da8f60f-c809-4161-a802-6fe823d532bb', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3636, N'RETAVASE (Injectable)', 19024191, N'Reteplase', N'e9ae6656-977c-4105-8528-bee664aab27a', CAST(N'2010-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3637, N'Reteplase (Injectable)', 19024191, N'Reteplase', N'e9ae6656-977c-4105-8528-bee664aab27a', CAST(N'2010-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3638, N'RETIN-A (Topical)', 903643, N'Tretinoin', N'0ee4fccd-087f-4134-9b66-1d5186c116c0', CAST(N'2014-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3639, N'REVATIO (Oral Pill)', 1316262, N'sildenafil', N'f757f066-8288-4d6c-8c5e-2471007c7966', CAST(N'2012-08-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3640, N'REVONTO (Injectable)', 711714, N'Dantrolene', N'0055d78a-9dc2-4267-8c9e-c3f2c98a66ff', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3641, N'REYATAZ (Oral Pill)', 1727223, N'Atazanavir', N'025876b6-f031-43ea-967a-b1d95b4685a6', CAST(N'2012-02-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3642, N'REZAMID (Topical)', 935390, N'resorcinol', N'd02ace0b-7244-45d4-987f-eb569303a426', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3643, N'REZIRA (Oral Liquid)', 1174888, N'Hydrocodone', N'7b873615-d90e-41a1-acc6-60f0526eeead', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3644, N'R-GENE 10 (Injectable)', 19006410, N'Arginine', N'6accf33f-9841-4327-8923-93c42020ef12', CAST(N'2014-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3645, N'RHEUMATREX (Oral Pill)', 1305058, N'Methotrexate', N'2cb70aa1-f73a-41c8-9a7f-edbcf1a06efd', CAST(N'2013-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3646, N'RIASTAP (Injectable)', 19044986, N'fibrinogen concentrate (human)', N'903dc8d0-39da-462c-9dac-004e0c7a26cc', CAST(N'2012-02-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3647, N'RIAX (Topical)', 918172, N'Benzoyl Peroxide', N'a585dbbe-a316-4183-bb6e-24a1b52966c3', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3648, N'Ribavirin (Oral Pill)', 1762711, N'Ribavirin', N'3b8b0c65-e466-4662-9e85-5a253d31ebe8', CAST(N'2015-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3649, N'RIDAURA (Oral Pill)', 1114771, N'Auranofin', N'05c34ddf-a0f7-4267-83f5-d02be3defc37', CAST(N'2011-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3650, N'Rifabutin (Oral Pill)', 1777417, N'Rifabutin', N'4be9cc3f-0016-4426-a700-574b45ce245b', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3651, N'RIFADIN (Injectable)', 1763204, N'Rifampin', N'036ab68e-5085-4edc-bd83-784b43d64eab', CAST(N'2014-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3652, N'RIFADIN (Oral Pill)', 1763204, N'Rifampin', N'036ab68e-5085-4edc-bd83-784b43d64eab', CAST(N'2014-07-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3653, N'RIFAMATE (Oral Pill)', 1782521, N'isoniazid', N'3cc36609-8e2d-4caa-a8e0-c0367e3e52df', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3654, N'Rifampin (Injectable)', 1763204, N'Rifampin', N'6f03bb2a-1527-42c7-ab43-f4b4f789e69d', CAST(N'2014-09-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3655, N'Rifampin (Oral Pill)', 1763204, N'Rifampin', N'26a2dbca-5090-4f6c-99ed-e11a70bb5af0', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3656, N'RIFATER (Oral Pill)', 1782521, N'isoniazid', N'429a2f62-9fe6-4299-b314-92a9d22b1381', CAST(N'2013-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3657, N'Rifaximin (Oral Pill)', 1735947, N'rifaximin', N'523f0320-cc73-445a-a48d-7a181c182307', CAST(N'2013-08-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3658, N'Rilonacept (Injectable)', 19023450, N'rilonacept', N'282f4099-e848-432a-bac1-e041c192a5ba', CAST(N'2015-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3659, N'RILUTEK (Oral Pill)', 735951, N'Riluzole', N'e49d207d-8e32-4183-94ba-cd264f124090', CAST(N'2014-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3660, N'Riluzole (Oral Pill)', 735951, N'Riluzole', N'4c851be4-f0d0-4b24-baf9-427ddfc6f7b0', CAST(N'2015-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3661, N'Rimantadine (Oral Liquid)', 1763339, N'Rimantadine', N'9c7bb7e7-a775-4f93-bd77-d08c48a86f7c', CAST(N'2007-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3662, N'Rimantadine (Oral Pill)', 1763339, N'Rimantadine', N'49f7d69a-820b-4c75-a31d-b2104c019c12', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3663, N'RI-MOX PLUS (Oral Liquid)', 985247, N'Aluminum Hydroxide', N'a21a94c5-7981-4cf9-af23-fc397b7ded1c', CAST(N'2013-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3664, N'RIMSO-50 (Irrigation)', 928980, N'Dimethyl Sulfoxide', N'58b25d79-78f2-4953-b0c6-61658dc4ef0d', CAST(N'2013-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3665, N'Risedronate (Oral Pill)', 1516800, N'Risedronate', N'ef2dbc86-b4f5-4990-a83f-0b121cfe2ec1', CAST(N'2015-06-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3666, N'RisperDAL (Oral Pill)', 735979, N'Risperidone', N'ccb70f90-9ef1-4eac-925f-0178cacdac6b', CAST(N'2013-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3667, N'risperiDONE (Oral Disintegrating)', 735979, N'Risperidone', N'7073b706-1946-4ff2-8788-fb9452a59cae', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3668, N'risperiDONE (Oral Liquid)', 735979, N'Risperidone', N'5ceafd11-de77-4a91-9873-3ce0ae688397', CAST(N'2015-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3669, N'risperiDONE (Oral Pill)', 735979, N'Risperidone', N'24a5d048-b351-4df5-89c8-f68147daba88', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3670, N'RITALIN (Oral Pill)', 705944, N'Methylphenidate', N'cd83fc91-47a3-4be4-9727-caf9ec0371e8', CAST(N'2012-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3671, N'Ritonavir (Oral Pill)', 1748921, N'Ritonavir', N'624120b3-0a32-42a7-abfc-324e6b6c93df', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3672, N'Rivaroxaban (Oral Pill)', 40241331, N'Rivaroxaban', N'10db92f9-2300-4a80-836b-673e1ae91610', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3673, N'Rivastigmine (Oral Pill)', 733523, N'rivastigmine', N'36b4f524-90e6-415c-8c0c-8983da2c7fd4', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3674, N'Rizatriptan (Oral Disintegrating)', 1154077, N'rizatriptan', N'57ed2505-28f1-4292-b3c3-a49bf0f7c683', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3675, N'Rizatriptan (Oral Pill)', 1154077, N'rizatriptan', N'2978b28c-91e1-4b17-9670-7b03717c1711', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3676, N'ROBAFEN (Oral Liquid)', 1163944, N'Guaifenesin', N'a925e169-a63d-4614-925e-e556daef9ec5', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3677, N'ROBAFEN AC (Oral Liquid)', 1201620, N'Codeine', N'e4bf6ada-e8b4-49e1-98aa-0fde1d0a7e47', CAST(N'2012-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3678, N'ROBAFEN COUGH (Oral Pill)', 1119510, N'Dextromethorphan', N'9b6295c7-377b-4392-83b1-13018b0bc295', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3679, N'ROBAFEN DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'c1c85b72-0883-4409-ba9c-d9f8d4f63825', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3680, N'ROBAXIN (Injectable)', 704943, N'Methocarbamol', N'8f91e243-7395-4ec9-adf5-37520983daf2', CAST(N'2012-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3681, N'ROBAXIN (Oral Pill)', 704943, N'Methocarbamol', N'5666ece8-9a10-4dcc-a7dc-3cd29df10e28', CAST(N'2012-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3682, N'ROBINUL (Injectable)', 963353, N'Glycopyrrolate', N'3adddbd4-0b17-4312-83a2-a8420caf045e', CAST(N'2012-03-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3683, N'ROBINUL (Oral Pill)', 963353, N'Glycopyrrolate', N'bd65ee5e-2000-423c-b0a6-72eb213455c4', CAST(N'2012-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3684, N'ROBITUSSIN CHEST CONGESTION (Oral Liquid)', 1163944, N'Guaifenesin', N'259c8b69-c625-4146-b888-34ef43b8385f', CAST(N'2015-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3685, N'ROBITUSSIN COUGH GELS (Oral Pill)', 1119510, N'Dextromethorphan', N'a19d233a-bc41-4603-dcbc-e15088045c2d', CAST(N'2012-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3686, N'ROBITUSSIN NIGHTTIME COUGH DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'598ea332-9cf3-403f-9fdc-991cbc62d744', CAST(N'2013-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3687, N'ROBITUSSIN PEAK COLD NASAL (Oral Pill)', 1125315, N'Acetaminophen', N'fb7e074d-4c4f-892e-f34e-13b9803fc436', CAST(N'2011-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3688, N'ROBITUSSIN PEDIATRIC COUGH & COLD LA (Oral Liquid)', 1192710, N'Chlorpheniramine', N'becb4025-b63e-f2ea-9d11-d51fdf4e5c13', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3689, N'ROBITUSSIN PEDIATRIC COUGH SUPPRESSANT (Oral Liquid)', 1119510, N'Dextromethorphan', N'75bc7827-4439-e6a8-a65c-7154d5592e58', CAST(N'2012-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3690, N'ROCALTROL (Oral Liquid)', 19035631, N'Calcitriol', N'd1013494-bf62-4e68-9f0c-e6571137f20f', CAST(N'2011-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3691, N'ROCALTROL (Oral Pill)', 19035631, N'Calcitriol', N'd1013494-bf62-4e68-9f0c-e6571137f20f', CAST(N'2011-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3692, N'Rocuronium (Injectable)', 19003953, N'Rocuronium', N'6ec8c417-6613-45e0-bc86-293a8b1ee83f', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3693, N'Roflumilast (Oral Pill)', 40236897, N'Roflumilast', N'c9a1d0a8-581f-4f91-a2b8-f419192d0ebf', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3694, N'ROGAINE (Topical)', 1309068, N'Minoxidil', N'88f17a5a-a8e3-488a-8a96-8bd6f150c043', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3695, N'ROLAIDS REFORMULATED AUG 2006 (Chewable)', 19035704, N'Calcium Carbonate', N'50aa27e4-00c9-477a-88c0-a10de1fa3f75', CAST(N'2014-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3696, N'ROMAZICON (Injectable)', 19055153, N'Flumazenil', N'69049fa6-7dc4-4ae7-99f4-06839af06498', CAST(N'2010-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3697, N'romiDEPsin (Injectable)', 40168385, N'romidepsin', N'6005c345-ccf9-4fff-8660-3fd73485b0d9', CAST(N'2010-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3698, N'rOPINIRole (Oral Pill)', 713823, N'ropinirole', N'de0bb94f-4fd8-4f27-5ba6-6f392dd5160f', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3699, N'Ropivacaine (Injectable)', 1136487, N'ropivacaine', N'05b3b09e-e54c-4933-8913-5279d04b521d', CAST(N'2014-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3700, N'ROSADAN (Topical)', 1707164, N'Metronidazole', N'99eaa138-0cfa-45e1-abbf-a88271707979', CAST(N'2012-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3701, N'Rosiglitazone (Oral Pill)', 1547504, N'rosiglitazone', N'dd8d7ec8-79b0-4152-8789-d247c77232ce', CAST(N'2015-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3702, N'Rosuvastatin (Oral Pill)', 1510813, N'rosuvastatin', N'2c1a3c18-fa77-401b-8784-8e18b0d862f1', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3703, N'Rough cocklebur pollen extract (Injectable)', 40222500, N'rough cocklebur pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3704, N'ROWASA (Rectal)', 968426, N'mesalamine', N'a666d21d-da21-498d-aea2-055326cafd70', CAST(N'2009-12-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3705, N'ROXICODONE (Oral Pill)', 1124957, N'Oxycodone', N'5a8157d3-ba20-4abf-b0d4-6ad141b31d63', CAST(N'2015-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3706, N'ROZEREM (Oral Pill)', 781182, N'ramelteon', N'7a51d289-2013-4d37-adf2-91ea49df7932', CAST(N'2010-01-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3707, N'RU HIST D (Oral Pill)', 1135766, N'Phenylephrine', N'ae3f15f0-d7ac-4be7-93c2-67d2ed82f4dc', CAST(N'2012-02-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3708, N'RYANODEX (Injectable)', 711714, N'Dantrolene', N'8f7b3ac0-604d-4c78-b545-5e0f8ea3d698', CAST(N'2014-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3709, N'RYMED-D (Oral Pill)', 1188114, N'dexchlorpheniramine', N'c1d6e914-74cc-4cdf-9587-7eaaa4a386e5', CAST(N'2013-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3710, N'RYNEZE (Oral Liquid)', 1192710, N'Chlorpheniramine', N'9aca3d25-d042-479b-a00e-63be5b5073fe', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3711, N'Sacrosidase (Oral Liquid)', 951980, N'Sacrosidase', N'd613bb7f-c3f4-462e-81a2-da2347cc4b6b', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3712, N'SAFETUSSIN DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'ac9f25a7-03cc-461b-af3e-8c16b7146a22', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3713, N'SAFETUSSIN PM (Oral Liquid)', 1119510, N'Dextromethorphan', N'0f7e2c22-0c59-4027-ad61-6bdd048a605c', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3714, N'SALACYN (Topical)', 964407, N'Salicylic Acid', N'ac10b92d-2103-41cd-a819-440d35818532', CAST(N'2010-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3715, N'SALAGEN (Oral Pill)', 945286, N'Pilocarpine', N'fb4810ec-d26f-429d-b87c-5898a7870169', CAST(N'2010-05-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3716, N'SALEX (Shampoo)', 964407, N'Salicylic Acid', N'bd9eca8a-87df-46c8-b731-9d8211296e0c', CAST(N'2013-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3717, N'SALEX (Topical)', 964407, N'Salicylic Acid', N'bd9eca8a-87df-46c8-b731-9d8211296e0c', CAST(N'2013-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3718, N'Salicylic Acid (Paste)', 964407, N'Salicylic Acid', N'6d3298e8-f623-4771-8497-fb43b5434923', CAST(N'2013-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3719, N'Salicylic Acid (Shampoo)', 964407, N'Salicylic Acid', N'a6b3a6ef-a285-4d77-b4c6-3372a3192ec3', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3720, N'Salicylic Acid (Soap)', 964407, N'Salicylic Acid', N'72f2fd8e-4d6c-4944-83a4-5f07f7726598', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3721, N'Salicylic Acid (Topical)', 964407, N'Salicylic Acid', N'b33d61f2-386b-4a8d-a4c9-8e1373eddd53', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3722, N'Salicylic Acid (Transdermal)', 964407, N'Salicylic Acid', N'fa2e95b5-fe90-4406-b981-05bca62fd25c', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3723, N'Salicylic Acid/Sulfur (Shampoo)', 964407, N'Salicylic Acid', N'7afc2219-712b-4a0c-b8a9-725f41cbf343', CAST(N'2013-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3724, N'Salmon calcitonin (Injectable)', 1537655, N'salmon calcitonin', N'2a27340f-26e7-4003-b817-60de6696088b', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3725, N'Salmon calcitonin (Nasal)', 1537655, N'salmon calcitonin', N'a6eaedb3-5c96-4859-be43-a48c9c818bc7', CAST(N'2014-09-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3726, N'SALONPAS (Transdermal)', 939881, N'Capsaicin', N'ef5373aa-9857-4d01-95af-2d7716e54ae4', CAST(N'2013-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3727, N'SALONPAS GEL-PATCH (Transdermal)', 939881, N'Capsaicin', N'ee0ec612-3abd-4365-bfd4-9fa69abf0186', CAST(N'2013-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3728, N'SALONPAS MASSAGE FOAM (Topical)', 901656, N'Menthol', N'bf478e06-408c-4958-b98f-68570b14a2de', CAST(N'2011-05-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3729, N'SALONPAS PAIN RELIEF PATCH (Transdermal)', 901656, N'Menthol', N'2e88c933-89e6-4a48-be7a-dc6a36e5c8f8', CAST(N'2013-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3730, N'SALONPAS PAIN RELIEVING PATCH (Transdermal)', 938205, N'Camphor', N'1ebe6a18-5247-4172-93ee-161416db060d', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3731, N'Salsalate (Oral Pill)', 1137460, N'Salsalate', N'ae3ee7d8-1a27-4148-8527-102d3d95d3d9', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3732, N'Saltbush pollen extract (Injectable)', 40172670, N'saltbush pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3733, N'SALURON (Oral Pill)', 1376289, N'Hydroflumethiazide', N'6153ef9e-77f0-4233-a5bc-3e3d1f732323', CAST(N'2006-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3734, N'SALVAX (Topical)', 964407, N'Salicylic Acid', N'879e31b4-3449-40ce-9b34-815563d4e272', CAST(N'2010-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3735, N'SAMARIUM Sm153 (Injectable)', 1338558, N'SAMARIUM Sm153', N'89cae12d-05fc-4d53-920f-e271b2940a5d', CAST(N'2013-12-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3736, N'SandoSTATIN (Injectable)', 1522957, N'Octreotide', N'4e2c9856-1836-49f0-9472-4dbeeb408f39', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3737, N'SANSERT (Oral Pill)', 1106740, N'Methysergide', N'3fae28ee-700e-4d4f-a040-02ef01a2aeb4', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3738, N'SANTYL (Topical)', 980311, N'COLLAGENASE', N'a7bf0341-49ff-4338-a339-679a3f3f953d', CAST(N'2014-02-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3739, N'SAPHRIS (Sublingual)', 40164052, N'Asenapine', N'5429f134-839f-4ffc-9944-55f51238def8', CAST(N'2015-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3740, N'Saquinavir (Oral Pill)', 1746244, N'Saquinavir', N'b8b53129-06ab-4143-b9b7-7675e49a52ef', CAST(N'2010-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3741, N'SARAPIN (Injectable)', 19030860, N'SARRACENIA PURPUREA preparation', N'2c51acbc-033b-40a2-93b1-81ba89223b13', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3742, N'Sargramostim (Injectable)', 1308432, N'sargramostim', N'c96afe62-f0cf-4d4b-b57d-194a8ec12389', CAST(N'2013-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3743, N'SARNA (Topical)', 938205, N'Camphor', N'a64e2fdb-54ba-4a5a-b31b-85a1d4d871eb', CAST(N'2014-08-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3744, N'SARNA SENSITIVE (Topical)', 927478, N'pramoxine', N'6fe48995-0b1c-48dd-bc6e-5d41b31a6486', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3745, N'SARRACENIA PURPUREA preparation (Injectable)', 19030860, N'SARRACENIA PURPUREA preparation', N'2c51acbc-033b-40a2-93b1-81ba89223b13', CAST(N'2015-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3746, N'SAVELLA (Oral Pill)', 19080226, N'milnacipran', N'9b3d078b-d12f-47ef-baa4-35b88b090ed4', CAST(N'2013-01-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3747, N'Saxagliptin (Oral Pill)', 40166035, N'saxagliptin', N'd45fc842-2563-4421-86af-a55b3191e19b', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3748, N'SCALPICIN ITCH RELIEF (Topical)', 975125, N'Hydrocortisone', N'7b1a29fa-b266-43e6-a87b-aa3c96ab4041', CAST(N'2012-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3749, N'SCALPICIN SCALP RELIEF (Topical)', 964407, N'Salicylic Acid', N'c072181f-827e-4e55-93e6-74929eabdbd1', CAST(N'2013-02-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3750, N'SCANDONEST (Injectable)', 702774, N'Mepivacaine', N'7215f107-d1ca-466d-8f4b-f86e5249d39b', CAST(N'2013-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3751, N'SCLEROSOL (Topical)', 1036667, N'Talc', N'c89eb8fd-6c31-4f8b-8103-1f559424eda1', CAST(N'2013-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3752, N'Scopolamine (Injectable)', 965748, N'Scopolamine', N'b85b3ca0-89ce-44fe-b748-62e160e8c349', CAST(N'2012-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3753, N'Scotch pine pollen extract (Injectable)', 40171787, N'Scotch pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3754, N'SCOT-TUSSIN (Oral Liquid)', 1163944, N'Guaifenesin', N'2cd6ab31-1fae-4737-b6af-50586323b751', CAST(N'2013-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3755, N'SCOT-TUSSIN DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'4f0aefe3-e80f-44b8-bc24-1a325f36c2d3', CAST(N'2013-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3756, N'SCOT-TUSSIN SUGAR FREE DM (Oral Liquid)', 1192710, N'Chlorpheniramine', N'17bfd444-32a5-4036-a5fc-eb11b977e1e5', CAST(N'2013-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3757, N'SCYTERA (Topical)', 1000995, N'Coal Tar', N'3637ca89-694d-4061-a23d-e691093276e7', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3758, N'SEBEX (Shampoo)', 964407, N'Salicylic Acid', N'aec81d61-1d28-490f-9654-f66bd4a30ffa', CAST(N'2013-01-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3759, N'SEB-PREV (Topical)', 1036252, N'Sulfacetamide', N'51e81749-8306-4e3e-9165-28c34cdcca62', CAST(N'2010-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3760, N'Secobarbital (Oral Pill)', 766067, N'Secobarbital', N'19647025-6c7b-4079-8040-51e26347b014', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3761, N'SECONAL SODIUM (Oral Pill)', 766067, N'Secobarbital', N'6698bc44-b971-49cc-a5de-11e569493c59', CAST(N'2015-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3762, N'SECTRAL (Oral Pill)', 1319998, N'Acebutolol', N'7eee95bf-0452-4d6e-9712-33403768695a', CAST(N'2012-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3763, N'Selegiline (Oral Disintegrating)', 766209, N'Selegiline', N'380d7717-2a79-42f3-a712-efe5e7696ba0', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3764, N'Selegiline (Oral Pill)', 766209, N'Selegiline', N'ed802863-bf91-46a4-9c44-a6c5ce905edc', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3765, N'Selenious Acid (Injectable)', 19038024, N'Selenious Acid', N'db7454bc-4f18-4632-b771-2e86db889bae', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3766, N'Selenium sulfide (Shampoo)', 938061, N'selenium sulfide', N'4a90c2c6-f2a5-4c0d-8879-b7d6863ea179', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3767, N'Selenium sulfide (Topical)', 938061, N'selenium sulfide', N'4b0c6317-7473-45de-b704-5d48d5c2dbe9', CAST(N'2010-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3768, N'SELRX (Shampoo)', 938061, N'selenium sulfide', N'44170482-124c-4d18-a4b5-fb5f39514689', CAST(N'2013-09-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3769, N'SELSUN BLUE (Shampoo)', 938061, N'selenium sulfide', N'f97e458c-cce3-498f-81fc-1b96a4e8f50a', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3770, N'SELSUN BLUE NATURALS (Shampoo)', 964407, N'Salicylic Acid', N'ed031a0f-7467-4b2c-a6b6-95306f6ee828', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3771, N'SELZENTRY (Oral Pill)', 1787101, N'maraviroc', N'2b5e5c5d-852a-413b-825c-8491d4539e67', CAST(N'2013-02-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3772, N'SEMPREX-D (Oral Pill)', 1140123, N'acrivastine', N'd86c6a13-9e5f-43c2-92f5-c7ed7bfcedfc', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3773, N'SENEXON (Oral Liquid)', 938268, N'sennosides, USP', N'90983cc4-04cf-4cfc-a705-5681b985e6a0', CAST(N'2014-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3774, N'SENEXON (Oral Pill)', 938268, N'sennosides, USP', N'ffc422f2-a3e0-4b48-8186-a11e4088c85e', CAST(N'2011-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3775, N'SENEXON S (Oral Pill)', 941258, N'Docusate', N'bb2064aa-b820-4e07-962a-a506145942df', CAST(N'2014-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3776, N'SENNA LAX (Oral Pill)', 938268, N'sennosides, USP', N'0398229e-2e65-43cf-9e76-cfdd6ac5da46', CAST(N'2015-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3777, N'Sennosides, USP (Chewable)', 938268, N'sennosides, USP', N'c8ea170b-57b5-4643-ba88-4cf2ae1bf6a0', CAST(N'2014-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3778, N'Sennosides, USP (Oral Liquid)', 938268, N'sennosides, USP', N'b2bf2d76-7dc0-4864-bfc2-ef41e155d316', CAST(N'2012-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3779, N'Sennosides, USP (Oral Pill)', 938268, N'sennosides, USP', N'da71f182-032f-4438-a6d4-e973b4cf6241', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3780, N'SENOKOT (Oral Pill)', 938268, N'sennosides, USP', N'f27cb405-9820-4fe9-8432-e50643f2c7f0', CAST(N'2014-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3781, N'SENOKOT-S (Oral Pill)', 941258, N'Docusate', N'c24cdc5e-62e0-41a6-8afb-512202a569f4', CAST(N'2015-08-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3782, N'SENSI-CARE BODY (Topical)', 916662, N'dimethicone', N'736a6d4e-852b-4611-9638-904979b94ad4', CAST(N'2013-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3783, N'SENSIPAR (Oral Pill)', 1548111, N'cinacalcet', N'e4d86a0f-7164-41c9-9838-ea51d91c43b0', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3784, N'SENSORCAINE (Injectable)', 732893, N'Bupivacaine', N'ab7d1ab1-3d58-4562-a3be-c8b2b12e99cf', CAST(N'2014-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3785, N'SENSORCAINE WITH EPINEPHRINE (Injectable)', 732893, N'Bupivacaine', N'bc61a9a6-0a4e-48a9-b908-e5e66b9f23eb', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3786, N'SEPTOCAINE (Injectable)', 19080512, N'Articaine', N'0eba0bd2-ccb6-4f7e-8d0c-e4b4e6cdce03', CAST(N'2011-07-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3787, N'SER-AP-ES (Oral Pill)', 1373928, N'Hydralazine', N'bdd0658e-38fb-4726-9720-09c502138ab0', CAST(N'2006-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3788, N'SEROMYCIN (Oral Pill)', 1710446, N'Cycloserine', N'e1e08327-4b90-463e-bb2a-22438cabcef2', CAST(N'2011-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3789, N'SEROquel (Oral Pill)', 766814, N'quetiapine', N'6d34c9a4-cf73-4e2d-82f6-a132412c20fe', CAST(N'2013-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3790, N'Sertaconazole (Topical)', 939134, N'sertaconazole', N'821073f7-33f6-464d-baed-f66d97987d6d', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3791, N'Sertraline (Oral Liquid)', 739138, N'Sertraline', N'7f144b68-ae90-483c-b030-f6824662a734', CAST(N'2014-12-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3792, N'Sertraline (Oral Pill)', 739138, N'Sertraline', N'250d998f-7100-495c-81ff-10fcfd5ba61d', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3793, N'Sevelamer (Oral Pill)', 952004, N'sevelamer', N'b2a373e4-110e-4f9a-9abe-e0c4374770d4', CAST(N'2014-07-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3794, N'Sevoflurane (Inhalant)', 19039298, N'sevoflurane', N'3b59360e-2b93-4fcb-b3a3-295f1fee4634', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3795, N'Shagbark hickory pollen extract (Injectable)', 40162231, N'shagbark hickory pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3796, N'Sheep sorrel pollen extract/Yellow dock pollen extract (Injectable)', 40162235, N'sheep sorrel pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3797, N'SHEER DESENZ (Oral Strip)', 927322, N'potassium nitrate', N'ac99f344-f0a7-4502-a06f-888a1b382edd', CAST(N'2010-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3798, N'Short ragweed pollen extract (Injectable)', 40171301, N'short ragweed pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3799, N'Short ragweed pollen extract (Sublingual)', 40171301, N'short ragweed pollen extract', N'986abfaf-67fc-47fb-8c86-d9f9cce6fa8b', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3800, N'Siberian elm pollen extract (Injectable)', 42801112, N'Siberian elm pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3801, N'SIGNIFOR (Injectable)', 43012417, N'pasireotide', N'442f0d9d-5c7d-4b81-b329-d71be8cf2be2', CAST(N'2015-03-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3802, N'SILADRYL (Oral Liquid)', 1129625, N'Diphenhydramine', N'717c622c-570e-47d4-be73-041a88e8ebf8', CAST(N'2011-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3803, N'Sildenafil (Injectable)', 1316262, N'sildenafil', N'bb92d686-a81e-4b91-8048-693af0534cb3', CAST(N'2015-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3804, N'Sildenafil (Oral Pill)', 1316262, N'sildenafil', N'47af30e9-a189-4721-8c8f-652256df75a1', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3805, N'SILENOR (Oral Pill)', 738156, N'Doxepin', N'1bec1223-5239-4eb6-a9e8-62444106d2c0', CAST(N'2014-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3806, N'SILTUSSIN (Oral Liquid)', 1163944, N'Guaifenesin', N'264abf3d-c466-4209-b911-29ce18b0b816', CAST(N'2015-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3807, N'SILTUSSIN DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'ad9916ec-633b-4dcd-a955-88d5f0ec439e', CAST(N'2014-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3808, N'SILVADENE (Topical)', 966956, N'Silver Sulfadiazine', N'c437213a-1cd4-445e-a39f-bbcacb9f746f', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3809, N'Silver sulfadiazine (Topical)', 966956, N'Silver Sulfadiazine', N'c2b6aaa5-3325-403c-9466-977c4f63f36f', CAST(N'2015-06-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3810, N'Simethicone (Chewable)', 966991, N'Simethicone', N'23005295-c5f2-4a76-8431-4a9b8d817d4d', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3811, N'Simethicone (Oral Liquid)', 966991, N'Simethicone', N'395be942-d883-4bcb-8811-6fe1521d5a92', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3812, N'Simethicone (Oral Pill)', 966991, N'Simethicone', N'dda3c826-143e-420c-817e-d46d0ee523fb', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3813, N'SIMPLY SLEEP (Oral Pill)', 1129625, N'Diphenhydramine', N'37c606b0-04d5-49f0-886a-3ee2c9b0e9cc', CAST(N'2013-09-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3814, N'SIMPONI (Injectable)', 19041065, N'golimumab', N'9e260a47-55af-4c92-8d88-a86ccc767fff', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3815, N'Simvastatin (Oral Disintegrating)', 1539403, N'Simvastatin', N'34b56f73-bea4-4265-8b2a-c57520cf8e70', CAST(N'2008-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3816, N'Simvastatin (Oral Pill)', 1539403, N'Simvastatin', N'c6985b00-59b5-4ff3-a940-478c616fc227', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3817, N'Sincalide (Injectable)', 19067803, N'Sincalide', N'c56a824b-a8ba-42db-b05c-49c731130879', CAST(N'2015-07-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3818, N'SINEMET XR (Oral Pill)', 740560, N'Carbidopa', N'69e575b9-f8a5-494f-b736-2520ef505cb0', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3819, N'SINE-OFF MAXIMUM STRENGTH REFORMULATED SEP 2008 (Oral Pill)', 1125315, N'Acetaminophen', N'e37237f4-20a0-4599-84c8-d96c62062861', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3820, N'SINEX LONG-ACTING (Nasal)', 925636, N'Oxymetazoline', N'a892608a-56d5-426e-b348-881099a4068d', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3821, N'SINGULAIR (Chewable)', 1154161, N'montelukast', N'e8d9021d-73aa-4c96-8b8a-e90069e78555', CAST(N'2012-02-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3822, N'SINGULAIR (Oral Pill)', 1154161, N'montelukast', N'10cd5ca5-6f8b-417c-af11-a2054a2dde34', CAST(N'2013-03-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3823, N'Sipuleucel-T (Injectable)', 40224095, N'sipuleucel-T', N'8309b497-5d4e-4408-ac0c-2452c11c8a35', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3824, N'Sirolimus (Oral Pill)', 19034726, N'Sirolimus', N'0f26220a-f4ab-4ceb-9a98-a13dbdeed81f', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3825, N'Sisal fiber extract (Injectable)', 40162251, N'sisal fiber extract', N'a363efb9-0817-4347-8c36-6630b5b99dc5', CAST(N'2009-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3826, N'sitaGLIPtin (Oral Pill)', 1580747, N'sitagliptin', N'588f94fa-ef4c-4633-8d65-d0d93f374ffc', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3827, N'SITAVIG (Buccal)', 1703687, N'Acyclovir', N'00f7425a-6236-47ff-a087-f28f8cdb1aec', CAST(N'2014-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3828, N'SKELAXIN (Oral Pill)', 780369, N'metaxalone', N'7a4163f2-c553-4d14-7e98-d14c5c7f772a', CAST(N'2015-06-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3829, N'SKLICE (Topical)', 1784444, N'Ivermectin', N'4c5557cd-c4cf-11df-851a-0800200c9a66', CAST(N'2012-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3830, N'SKYLA (Implant)', 1589505, N'Levonorgestrel', N'9f44ff35-e052-49cd-a1c2-0bfd87d49309', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3831, N'Slash pine pollen extract (Injectable)', 40172778, N'slash pine pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3832, N'SLEEPINAL (Oral Pill)', 1129625, N'Diphenhydramine', N'111e891d-acd8-44f9-b958-09cb876d388c', CAST(N'2014-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3833, N'Smooth brome pollen extract (Injectable)', 40162259, N'smooth brome pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3834, N'SOCHLOR (Ophthalmic)', 967823, N'Sodium Chloride', N'3f78386f-42f1-22a9-1f27-349381dad0b0', CAST(N'2014-02-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3835, N'Sodium Acetate (Injectable)', 19077884, N'Sodium Acetate', N'ce9a7469-c4ba-4f60-8f7a-47ef0974316e', CAST(N'2015-04-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3836, N'Sodium Bicarbonate (Injectable)', 939506, N'Sodium Bicarbonate', N'41735bcb-602f-49a0-b578-18c1bdb33d03', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3837, N'Sodium Bicarbonate (Oral Pill)', 939506, N'Sodium Bicarbonate', N'e73b5871-4a87-4473-ab00-5e5395be017d', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3838, N'Sodium Bicarbonate/Sodium Chloride (Nasal)', 939506, N'Sodium Bicarbonate', N'ff4df6c5-c85f-406a-89d7-8c2853fd5e10', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3839, N'Sodium Chloride (Inhalant)', 967823, N'Sodium Chloride', N'b4fd60c9-6fd9-430a-b4f6-0424b46bdbe1', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3840, N'Sodium Chloride (Injectable)', 967823, N'Sodium Chloride', N'f55bd888-5e01-474d-871b-24654c070178', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3841, N'Sodium Chloride (Irrigation)', 967823, N'Sodium Chloride', N'05dee566-7b82-4216-8a6b-765d2b4d9dc7', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3842, N'Sodium Chloride (Nasal)', 967823, N'Sodium Chloride', N'f852bdfe-12af-4ac7-9158-4a1450bcb025', CAST(N'2014-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3843, N'Sodium Chloride (Ophthalmic)', 967823, N'Sodium Chloride', N'93fafa27-5031-4d95-b4b8-5574b7204ae2', CAST(N'2015-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3844, N'Sodium citrate (Injectable)', 977968, N'sodium citrate', N'447528e6-55cd-4a9b-868e-2a741b2693d3', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3845, N'Sodium ferric gluconate complex (Injectable)', 1399177, N'Sodium ferric gluconate complex', N'218d1b8d-b24f-4f77-b588-97c7dd1c2eec', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3846, N'Sodium Fluoride (Chewable)', 19069022, N'Sodium Fluoride', N'58b3e7ff-c032-4e42-823a-8ed7b93d606f', CAST(N'2014-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3847, N'Sodium Fluoride (Mouthwash)', 19069022, N'Sodium Fluoride', N'1a57bfa0-3b18-4612-ad8c-5e651abb3530', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3848, N'Sodium Fluoride (Oral Foam)', 19069022, N'Sodium Fluoride', N'feaab33f-87b2-4e79-b8c3-649d79002111', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3849, N'Sodium Fluoride (Oral Gel)', 19069022, N'Sodium Fluoride', N'ec50b003-cf61-4f66-bb62-f779e48363c2', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3850, N'Sodium Fluoride (Oral Liquid)', 19069022, N'Sodium Fluoride', N'cc162a0e-b601-4466-9a4e-192985ee014a', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3851, N'Sodium Fluoride (Paste)', 19069022, N'Sodium Fluoride', N'0f859886-ce63-4de2-994e-7288b19d9656', CAST(N'2012-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3852, N'Sodium Fluoride (Toothpaste)', 19069022, N'Sodium Fluoride', N'd93ee76f-454b-40bf-9357-39a2ae3b6ccb', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3853, N'Sodium Fluoride/Xylitol (Chewable)', 19069022, N'Sodium Fluoride', N'4c854364-e732-4dec-b1d1-b8a97e4e1176', CAST(N'2010-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3854, N'Sodium Iodide (Injectable)', 19069873, N'Sodium Iodide', N'64c7014a-c9b1-4264-b365-c610c3d733fd', CAST(N'2014-06-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3855, N'Sodium Morrhuate (Injectable)', 19069904, N'Sodium Morrhuate', N'9298b254-4311-46cd-9244-8651dd87417e', CAST(N'2014-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3856, N'Sodium Nitrite (Injectable)', 19069907, N'Sodium Nitrite', N'ff4941b3-9901-4aab-adcf-c5327bede34e', CAST(N'2012-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3857, N'Sodium Oxybate (Oral Liquid)', 769935, N'Sodium Oxybate', N'926eb076-a4a8-45e4-91ef-411f0aa4f3ca', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3858, N'Sodium phosphate (Oral Pill)', 939871, N'sodium phosphate', N'983ce15f-cd37-4f3a-9e51-205860e80976', CAST(N'2010-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3859, N'Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Injectable)', 991710, N'Sodium Phosphate, Dibasic', N'348ecd15-59c0-4833-88ea-7acf6ac0dbef', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3860, N'Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Oral Liquid)', 991710, N'Sodium Phosphate, Dibasic', N'baa19edb-d585-451e-a536-96293f2a7688', CAST(N'2013-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3861, N'Sodium Phosphate, Dibasic/Sodium Phosphate, Monobasic (Rectal)', 991710, N'Sodium Phosphate, Dibasic', N'fb260df0-7bda-4299-84a5-44c8f9447798', CAST(N'2015-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3862, N'SODIUM PHOSPHATE,MONOBASIC,MONOHYDRATE/Sodium Phosphate, Dibasic (Oral Pill)', 991710, N'Sodium Phosphate, Dibasic', N'57ccd52e-5b13-4b39-8aa0-ebecc49a7db4', CAST(N'2010-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3863, N'Sodium polystyrene sulfonate (Oral Liquid)', 19078126, N'Sodium polystyrene sulfonate', N'905c3ee5-d1a7-4deb-a345-4a42296704fa', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3864, N'Sodium Tetradecyl Sulfate (Injectable)', 19070012, N'Sodium Tetradecyl Sulfate', N'f1756c28-dcd2-4b49-be62-07ca20682018', CAST(N'2013-07-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3865, N'Sodium thiosulfate (Injectable)', 940004, N'sodium thiosulfate', N'ff4941b3-9901-4aab-adcf-c5327bede34e', CAST(N'2012-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3866, N'SOLARCAINE (Topical)', 989878, N'Lidocaine', N'88f3cb40-2258-4e1c-92fb-e1891ddb3135', CAST(N'2013-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3867, N'Solifenacin (Oral Pill)', 916005, N'Solifenacin', N'5256f116-ad56-4ce0-8a5e-69d401f3ea00', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3868, N'SOLTAMOX (Oral Liquid)', 1436678, N'Tamoxifen', N'8e4710a7-8757-49be-8bec-a1dc39e6c695', CAST(N'2012-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3869, N'Solu-CORTEF (Injectable)', 975125, N'Hydrocortisone', N'b2b4c961-363d-49fe-b354-d59b39fd517a', CAST(N'2012-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3870, N'Solu-MEDROL (Injectable)', 1506270, N'Methylprednisolone', N'68ef8ec4-16de-4a8c-8696-b09359660380', CAST(N'2015-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3871, N'SOMA (Oral Pill)', 749910, N'Carisoprodol', N'6543c6ba-852e-40fb-b7ec-1331b9c83656', CAST(N'2010-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3872, N'Somatropin (Injectable)', 1584910, N'Somatropin', N'85ba081b-bee0-4a9a-aa0f-ae5b5e9a0886', CAST(N'2015-04-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3873, N'SOMBRA WARM PAIN RELIEVING GEL (Topical)', 938205, N'Camphor', N'de78dba9-53b3-4dbd-9dd2-6a692378da34', CAST(N'2012-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3874, N'SOMINEX (Oral Pill)', 1129625, N'Diphenhydramine', N'9e70ead1-479f-48bb-9be4-a8b30b784795', CAST(N'2013-02-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3875, N'SONATA (Oral Pill)', 720727, N'zaleplon', N'43ac81cb-1e3f-4d44-86bd-13db2721d060', CAST(N'2010-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3876, N'SOOTHE & COOL MOISTURE BARRIER (Topical)', 19033354, N'Petrolatum', N'59625382-2769-4c91-9c53-e19dfd6ca115', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3877, N'SOOTHE NIGHT TIME (Ophthalmic)', 908523, N'Mineral Oil', N'638d3c3f-9960-43da-956e-0e28c77f533e', CAST(N'2011-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3878, N'SOOTHE REGULAR STRENGTH (Oral Liquid)', 937791, N'bismuth subsalicylate', N'82f2b3a4-3428-4046-9372-2ef9046a071c', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3879, N'Sorbitol (Irrigation)', 970011, N'Sorbitol', N'5f7be402-f25a-428e-b81f-6a4a00de894c', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3880, N'Sorbitol (Rectal)', 970011, N'Sorbitol', N'16cc9d47-5382-4237-ab84-f22c5436fe2e', CAST(N'2012-07-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3881, N'SORINE (Oral Pill)', 1370109, N'Sotalol', N'6ee6e904-a8e2-41d4-8261-67103ecfa605', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3882, N'Sotalol (Injectable)', 1370109, N'Sotalol', N'2afe7385-2441-4e22-b63e-ab8614b275df', CAST(N'2014-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3883, N'Sotalol (Oral Liquid)', 1370109, N'Sotalol', N'1f33f900-0777-4a92-a7f7-00cf3d57d95c', CAST(N'2015-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3884, N'Sotalol (Oral Pill)', 1370109, N'Sotalol', N'03de4b65-29b0-4e30-a94b-b5877a050f93', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3885, N'SOTRADECOL (Injectable)', 19070012, N'Sodium Tetradecyl Sulfate', N'f1756c28-dcd2-4b49-be62-07ca20682018', CAST(N'2013-07-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3886, N'SOTRET (Oral Pill)', 984232, N'Isotretinoin', N'd5a26c5e-9c3e-4781-8c08-62b91d21a68d', CAST(N'2006-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3887, N'SOTYLIZE (Oral Liquid)', 1370109, N'Sotalol', N'1f33f900-0777-4a92-a7f7-00cf3d57d95c', CAST(N'2015-03-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3888, N'SPECTRACEF (Oral Pill)', 1747005, N'cefditoren', N'1c90b649-5536-417c-82cb-89663137f14f', CAST(N'2013-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3889, N'Spinosad (Shampoo)', 40172543, N'spinosad', N'5cd2bff8-40cd-4e63-9907-77b80d774cb7', CAST(N'2015-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3890, N'SPIRIVA (Inhalant)', 1106776, N'tiotropium', N'1cf82d42-5ad0-4b86-838e-9230c61cf3d4', CAST(N'2010-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3891, N'Spironolactone (Oral Pill)', 970250, N'Spironolactone', N'd895f00f-ce8c-47cf-9e3f-78ec2d1a0a1b', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3892, N'SPORTSCREME (Topical)', 943116, N'trolamine salicylate', N'cfaae612-43df-409e-80b4-4704fbf53b04', CAST(N'2014-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3893, N'SPRYCEL (Oral Pill)', 1358436, N'dasatinib', N'0e7f054c-7a27-4192-bd1c-6115d8be858f', CAST(N'2012-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3894, N'SSD (Topical)', 966956, N'Silver Sulfadiazine', N'cecc0b75-fccf-418d-923a-2a5869c1d043', CAST(N'2013-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3895, N'STAHIST AD (Oral Pill)', 990413, N'chlorcyclizine', N'ccedbc38-2479-4c35-9f86-a9f29bcfab3f', CAST(N'2012-01-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3896, N'STAHIST AD LIQUID (Oral Liquid)', 990413, N'chlorcyclizine', N'4e1bd76c-3fd8-4372-907f-6b799d67cfbb', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3897, N'STANBACK HEADACHE POWDER REFORMULATED JAN 2011 (Oral Powder)', 1112807, N'Aspirin', N'caaa1313-09e4-45aa-8836-346f6a370196', CAST(N'2012-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3898, N'Stannous Fluoride (Mouthwash)', 1036094, N'Stannous Fluoride', N'd2f0df92-d52f-4c9c-99d0-3cd2a025e5e9', CAST(N'2015-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3899, N'Stannous Fluoride (Oral Gel)', 1036094, N'Stannous Fluoride', N'3b21d029-271b-43f4-9406-429507621bf7', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3900, N'Stannous Fluoride (Toothpaste)', 1036094, N'Stannous Fluoride', N'2ee74342-c3f6-4aa5-a4d6-d9123d24a5aa', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3901, N'Starch (Rectal)', 1036157, N'Starch', N'6a3ee178-39a9-44bf-8fdb-5eacbd089998', CAST(N'2012-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3902, N'Starch/Zinc Oxide (Topical)', 1036157, N'Starch', N'9f12dee2-7afa-45e9-a729-0fd42bb77715', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3903, N'STATROL (Ophthalmic)', 915981, N'Neomycin', N'7218af16-9378-472a-a033-4c9f9d5524db', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3904, N'STATUSS GREEN REFORMULATED JAN 2012 (Oral Liquid)', 990413, N'chlorcyclizine', N'9d1d42e4-9d69-4360-a057-81f909133880', CAST(N'2012-01-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3905, N'Stavudine (Oral Liquid)', 1781406, N'Stavudine', N'259fbf19-ad1a-424f-873a-ba12e42b9315', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3906, N'Stavudine (Oral Pill)', 1781406, N'Stavudine', N'6d397a2a-06fc-467e-b014-c19e6384c8d9', CAST(N'2014-11-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3907, N'STAXYN (Oral Disintegrating)', 1311276, N'vardenafil', N'0e5139d8-bf61-4f21-a36b-81b96b9b07d1', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3908, N'STOPAIN (Topical)', 901656, N'Menthol', N'da5b7666-3df4-4b11-afb3-7e292c065053', CAST(N'2010-11-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3909, N'STRATTERA (Oral Pill)', 742185, N'atomoxetine', N'23c702e2-3abc-4d7d-b88f-a089e2179f42', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3910, N'Streptomycin (Injectable)', 1836191, N'Streptomycin', N'abd1f64e-4283-4370-aae8-3666316aa36e', CAST(N'2013-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3911, N'Streptozocin (Injectable)', 19136210, N'Streptozocin', N'15d161ed-9e7b-4c92-ba45-0556d2423e67', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3912, N'STRIANT (Buccal)', 1636780, N'Testosterone', N'9af8ef50-f650-44ca-a272-135bfce9daca', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3913, N'STRIBILD (Oral Pill)', 42874220, N'cobicistat', N'144067b2-0532-476a-996e-e4a0a9d09b05', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3914, N'STRIDEX (Topical)', 964407, N'Salicylic Acid', N'b3a78318-293a-4869-b442-3b6a9965791f', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3915, N'STRI-DEX (Topical)', 964407, N'Salicylic Acid', N'843d3424-bd6c-44aa-976b-63c9da15014e', CAST(N'2013-05-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3916, N'STYPTSTIX (Topical)', 927322, N'potassium nitrate', N'b7634e27-3c75-4e56-ab42-3e5796edb0c7', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3917, N'SUBLIMAZE (Injectable)', 1154029, N'Fentanyl', N'8944ea18-016e-4971-876d-2365fac190ea', CAST(N'2008-05-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3918, N'SUBOXONE (Oral Strip)', 1133201, N'Buprenorphine', N'426a0094-f192-48ff-be40-c4f7c9566d50', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3919, N'SUBOXONE (Sublingual)', 1133201, N'Buprenorphine', N'8083b4e1-9863-4311-b72d-cbad288f7652', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3920, N'Succimer (Oral Pill)', 1728909, N'Succimer', N'62035612-9505-3a3f-1ac8-e2dbd711d24e', CAST(N'2013-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3921, N'Succinylcholine (Injectable)', 836208, N'Succinylcholine', N'c06156ae-b889-4250-bc85-1435b2635829', CAST(N'2014-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3922, N'SUCRAID (Oral Liquid)', 951980, N'Sacrosidase', N'd613bb7f-c3f4-462e-81a2-da2347cc4b6b', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3923, N'Sucralfate (Oral Liquid)', 1036228, N'Sucralfate', N'0fb67b1c-b4c0-46f2-8a81-df1510e006aa', CAST(N'2014-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3924, N'Sucralfate (Oral Pill)', 1036228, N'Sucralfate', N'989ca8a8-3ad6-4ee4-aa9c-eed731828753', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3925, N'SUCRETS (Oral Lozenge)', 992308, N'dyclonine', N'68f3e4d6-4292-4c5c-96de-2c4d38ec6399', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3926, N'SUCRETS DM (Oral Lozenge)', 1119510, N'Dextromethorphan', N'00ad5b08-5371-4a2f-be49-4254106d7f64', CAST(N'2011-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3927, N'SUCRETS ORIGINAL (Oral Lozenge)', 969004, N'Hexylresorcinol', N'e282ba65-b674-45d5-82c2-ab4e4a95243b', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3928, N'SUDAFED (Oral Liquid)', 1154332, N'Pseudoephedrine', N'52e9307b-ad38-4f65-bb2f-4fa262e82010', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3929, N'SUDAFED (Oral Pill)', 1154332, N'Pseudoephedrine', N'd280abe9-6bdf-4e1e-a0cf-95fd0451c999', CAST(N'2015-06-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3930, N'SUDAFED PE (Oral Pill)', 1135766, N'Phenylephrine', N'74716ae2-b035-47e2-9fc6-9ce53fdcd790', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3931, N'SUDAFED PE CHILDREN''S COLD & COUGH (Oral Liquid)', 1119510, N'Dextromethorphan', N'20e45243-3989-413a-bcf1-49d754ff2e44', CAST(N'2015-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3932, N'SUDAFED PE CHILDREN''S NASAL DECONGESTANT (Oral Liquid)', 1135766, N'Phenylephrine', N'4dfd46e4-b9f9-464d-aa47-e8fa9e526a5d', CAST(N'2015-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3933, N'Sudan grass pollen extract (Injectable)', 40237944, N'Sudan grass pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3934, N'SUDOGEST (Oral Liquid)', 1154332, N'Pseudoephedrine', N'0ae49d7e-ceec-4ad6-a0b8-cb20237e2b70', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3935, N'SUDOGEST (Oral Pill)', 1154332, N'Pseudoephedrine', N'7d26821c-a08a-40a8-9729-251f21d54702', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3936, N'SUDOGEST SINUS & ALLERGY (Oral Pill)', 1192710, N'Chlorpheniramine', N'7cd8f7f3-c262-4f7c-bcaf-068be2c952f9', CAST(N'2015-05-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3937, N'SUDO-TAB (Oral Pill)', 1135766, N'Phenylephrine', N'6f70ed59-a1f8-4daa-8614-feaf2533687b', CAST(N'2012-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3938, N'SUFentanil (Injectable)', 19078219, N'Sufentanil', N'53dbe21e-0b97-4271-a7af-2d18986adcd8', CAST(N'2014-04-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3939, N'Sulconazole (Topical)', 940535, N'sulconazole', N'b3aea089-3961-43ea-8335-8128e9bae13b', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3940, N'SULF-10 (Ophthalmic)', 1036252, N'Sulfacetamide', N'43aab37c-3020-4f7e-8b21-f9be22e9d356', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3941, N'Sulfacetamide (Ophthalmic)', 1036252, N'Sulfacetamide', N'26983557-e3e8-477f-bb63-64f04b1606eb', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3942, N'Sulfacetamide (Shampoo)', 1036252, N'Sulfacetamide', N'6a034465-e600-49cb-91bd-7b9ceee6ffc6', CAST(N'2012-10-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3943, N'Sulfacetamide (Soap)', 1036252, N'Sulfacetamide', N'a77aed6c-355f-44ed-ae95-78b4d1549c2b', CAST(N'2014-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3944, N'Sulfacetamide (Topical)', 1036252, N'Sulfacetamide', N'5a005021-dfa1-4aeb-8661-045516723baf', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3945, N'Sulfacetamide/Sulfur (Soap)', 1036252, N'Sulfacetamide', N'0e76c520-d02a-4064-bcda-fc45cf9e6fa3', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3946, N'Sulfacetamide/Sulfur (Topical)', 1036252, N'Sulfacetamide', N'5fff8c9a-a798-4b5b-b818-6c1817936d5d', CAST(N'2015-03-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3947, N'Sulfamethoxazole/Trimethoprim (Injectable)', 1836430, N'Sulfamethoxazole', N'b89b5502-ce87-45a6-a43c-9891da3cfca4', CAST(N'2013-08-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3948, N'Sulfamethoxazole/Trimethoprim (Oral Liquid)', 1836430, N'Sulfamethoxazole', N'bbad2036-e2a8-4c56-bb92-dea833598ebc', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3949, N'Sulfamethoxazole/Trimethoprim (Oral Pill)', 1836430, N'Sulfamethoxazole', N'a0f86f52-8841-4e1c-8536-2e78320471ed', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3950, N'SULFAMYLON (Topical)', 992716, N'Mafenide', N'9972db4c-703f-4cbc-915c-ec993bff6fb9', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3951, N'Sulfanilamide (Vaginal)', 1036475, N'Sulfanilamide', N'd344f475-1bf2-4aaf-aae3-0cd0be4995d1', CAST(N'2014-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3952, N'sulfaSALAzine (Oral Pill)', 964339, N'Sulfasalazine', N'ad13d598-7b1b-48d3-a25b-08635b419f99', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3953, N'SULFATRIM (Oral Liquid)', 1836430, N'Sulfamethoxazole', N'a8df90d8-78b3-48c3-b42e-1e651d81454b', CAST(N'2013-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3954, N'SULFONATED PHENOL/Sulfuric acid (Mucosal)', 991706, N'SULFONATED PHENOL', N'15d22ca4-503e-2751-e054-00144ff8d46c', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3955, N'SULFONATED PHENOL/Sulfuric acid (Topical)', 991706, N'SULFONATED PHENOL', N'15d22ca4-503e-2751-e054-00144ff8d46c', CAST(N'2015-05-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3956, N'Sulfur (Soap)', 1036525, N'Sulfur', N'bd35f939-a36a-4a96-98df-36bf81ab8628', CAST(N'2015-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3957, N'Sulfur (Topical)', 1036525, N'Sulfur', N'0280e008-8f9d-4bb8-897b-3e5fbb49aa1e', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3958, N'Sulindac (Oral Pill)', 1236607, N'Sulindac', N'19dde540-3d29-4db4-9570-6ca15f09e0fe', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3959, N'SULPHO-LAC (Soap)', 1036525, N'Sulfur', N'2f838efd-831d-4171-8387-83c8eab3c51a', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3960, N'SUMADAN WASH (Soap)', 1036252, N'Sulfacetamide', N'f4b493b8-1193-4a3f-b7a2-77d08d5b3d66', CAST(N'2013-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3961, N'SUMAtriptan (Injectable)', 1140643, N'Sumatriptan', N'24259865-233b-4258-a01b-e895a873f2c4', CAST(N'2012-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3962, N'SUMAtriptan (Nasal)', 1140643, N'Sumatriptan', N'6c95caa4-812e-4e47-bcfc-c641c00db3f7', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3963, N'SUMAtriptan (Oral Pill)', 1140643, N'Sumatriptan', N'1ecbd827-e22b-113d-e054-00144ff8d46c', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3964, N'SUMAtriptan (Transdermal)', 1140643, N'Sumatriptan', N'806a07a0-e042-11df-9548-0002a5d5c51b', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3965, N'SUMAXIN (Soap)', 1036252, N'Sulfacetamide', N'2e3350eb-ca10-4bf2-819f-3eb46c7437b7', CAST(N'2010-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3966, N'SUMAXIN (Topical)', 1036252, N'Sulfacetamide', N'5d9ddc1a-fbae-4595-86ce-3bbca7d03482', CAST(N'2011-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3967, N'SUPERDENT HEMAL (Mucosal)', 957393, N'aluminum chloride', N'cb363bac-c935-4398-892e-d9024eb7d121', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3968, N'SUPRANE (Inhalant)', 19002770, N'desflurane', N'bf4d8d29-852d-4281-b732-4af0eca019e1', CAST(N'2015-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3969, N'SUPRAX (Chewable)', 1796435, N'Cefixime', N'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3970, N'SUPRAX (Oral Liquid)', 1796435, N'Cefixime', N'7e2462b2-bfed-4da4-8c47-46838d6153f8', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3971, N'SUPRAX (Oral Pill)', 1796435, N'Cefixime', N'd0fd45bd-7d52-4fa6-a5f7-f46d5651ffa2', CAST(N'2014-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3972, N'Suprofen (Ophthalmic)', 1036636, N'Suprofen', N'8de2c303-5d99-46b6-ad6d-a4caadea3604', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3973, N'SURFAK STOOL SOFTENER (Oral Pill)', 941258, N'Docusate', N'f2ea1d6b-fce6-40b4-9c06-48ca40323e01', CAST(N'2011-11-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3974, N'SURFAXIN (Injectable)', 42800204, N'lucinactant', N'f2ba0c81-ceb0-11e0-9572-0800200c9a66', CAST(N'2014-05-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3975, N'SURMONTIL (Oral Pill)', 705755, N'Trimipramine', N'0177d783-773c-41bf-9db9-eb7e5c64474a', CAST(N'2015-02-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3976, N'SUSTIVA (Oral Pill)', 1738135, N'efavirenz', N'04b5c345-c446-43a4-83f0-509bc287e10b', CAST(N'2013-03-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3977, N'Suvorexant (Oral Pill)', 45775760, N'Suvorexant', N'e5b72731-1acb-45b7-9c13-290ad12d3951', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3978, N'SYLATRON (Injectable)', 1797155, N'peginterferon alfa-2b', N'3874c95c-092e-4cd5-b104-6ed2bc391b0e', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3979, N'SYNALAR (Topical)', 996541, N'fluocinolone', N'4feecef4-553f-4a90-a3ce-a19eb04bd68e', CAST(N'2013-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3980, N'SYNALGOS-DC (Oral Pill)', 1112807, N'Aspirin', N'3e863ce5-936c-4145-b14b-76670e21bdad', CAST(N'2013-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3981, N'SYNERA (Transdermal)', 989878, N'Lidocaine', N'b3eee508-8bf3-4bd3-9a71-47ee6ea87f95', CAST(N'2012-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3982, N'SYNERCID (Injectable)', 1789517, N'dalfopristin', N'28f698df-b584-4455-2e94-6efc41313960', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3983, N'SYNRIBO (Injectable)', 19069046, N'omacetaxine mepesuccinate', N'83a504ef-cf92-467d-9ecf-d251194a3484', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3984, N'Synthetic conjugated estrogens, A (Oral Pill)', 1596779, N'synthetic conjugated estrogens, A', N'410f9433-98ed-4c3f-abb1-2386296d2f72', CAST(N'2015-08-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3985, N'Synthetic conjugated estrogens, B (Oral Pill)', 1586808, N'synthetic conjugated estrogens, B', N'b7aba0b2-72d1-4429-bb64-98b92e9d9433', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3986, N'SYNTHROID (Oral Pill)', 1501700, N'Thyroxine', N'1083d90e-398e-4c8f-99a7-4ddf377ffffe', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3987, N'SYPRINE (Oral Pill)', 19004969, N'Trientine', N'0ed52ecf-cda9-4a06-bacc-2c2827cc8967', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3988, N'SYSTANE (Ophthalmic)', 948490, N'Polyethylene Glycol 400', N'14916d2c-a63d-491e-bd91-a61f300af38a', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3989, N'SYSTANE BALANCE (Ophthalmic)', 929128, N'Propylene glycol', N'c7b1a03a-a5f2-409e-a34a-d6f166671de5', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3990, N'SYSTANE NIGHTTIME (Ophthalmic)', 908523, N'Mineral Oil', N'4689c59c-5721-3f91-6c85-e41501998fd0', CAST(N'2012-05-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3991, N'TABLOID (Oral Pill)', 1437379, N'Thioguanine', N'4490128b-e73f-4849-9d6e-e8591639d771', CAST(N'2013-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3992, N'TACHOSIL (Transdermal)', 19054702, N'Fibrinogen', N'5918e503-b457-48ab-b68b-243e29651d06', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3993, N'TACLONEX (Topical)', 920458, N'Betamethasone', N'ef43ba2d-20ce-4415-b5c2-e486b836812e', CAST(N'2015-01-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3994, N'Tacrolimus (Oral Pill)', 950637, N'Tacrolimus', N'61dee012-43af-0e9a-3843-9b9b91e022c4', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3995, N'Tacrolimus (Topical)', 950637, N'Tacrolimus', N'1bf44a84-14fd-4f80-ad8a-99b1431d631f', CAST(N'2014-11-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3996, N'TACTINAL (Oral Pill)', 1125315, N'Acetaminophen', N'0a5b8720-dec4-4cb2-e054-00144ff88e88', CAST(N'2014-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3997, N'Tadalafil (Oral Pill)', 1336926, N'tadalafil', N'ebddb745-81f9-4b25-8739-b2886032ed26', CAST(N'2014-03-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3998, N'TAFINLAR (Oral Pill)', 43532299, N'dabrafenib', N'803beaaa-33f9-48cc-9a95-c2e887e095b4', CAST(N'2015-02-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (3999, N'Tag alder pollen extract (Injectable)', 40162097, N'tag alder pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4000, N'TAGAMET (Oral Pill)', 997276, N'Cimetidine', N'e6401e0a-8612-42e8-bf89-2d67243f28dc', CAST(N'2014-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4001, N'TAKE ACTION (Oral Pill)', 1589505, N'Levonorgestrel', N'94f251c1-599c-4517-8c60-50a896b06992', CAST(N'2014-03-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4002, N'TALACEN (Oral Pill)', 1125315, N'Acetaminophen', N'927f1bb9-6c13-4229-a5c8-0bf0b4c3bb35', CAST(N'2008-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4003, N'Talc (Topical)', 1036667, N'Talc', N'c89eb8fd-6c31-4f8b-8103-1f559424eda1', CAST(N'2013-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4004, N'Talc/Zinc Oxide (Topical)', 1036667, N'Talc', N'8ebc1ab4-6dcb-42ec-908b-5b97648331db', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4005, N'Taliglucerase alfa (Injectable)', 42800246, N'taliglucerase alfa', N'fa3cbd5d-677c-4b19-9032-d9182cb69a83', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4006, N'Tall oat grass pollen extract (Injectable)', 40225727, N'tall oat grass pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4007, N'Tamarack pollen extract (Injectable)', 40172606, N'tamarack pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4008, N'TAMBOCOR (Oral Pill)', 1354860, N'Flecainide', N'b764c8b8-7e23-4016-830f-68312d84f3d3', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4009, N'TAMIFLU (Oral Liquid)', 1799139, N'Oseltamivir', N'1948cafd-b5b3-4212-9d5d-8c293b1baad5', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4010, N'TAMIFLU (Oral Pill)', 1799139, N'Oseltamivir', N'2f912317-c0de-445a-8729-a99a8d2acaad', CAST(N'2013-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4011, N'Tamoxifen (Oral Liquid)', 1436678, N'Tamoxifen', N'8e4710a7-8757-49be-8bec-a1dc39e6c695', CAST(N'2012-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4012, N'Tamoxifen (Oral Pill)', 1436678, N'Tamoxifen', N'f5ffe9dd-f76d-4aab-9473-81e33b26710b', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4013, N'Tamsulosin (Oral Pill)', 924566, N'tamsulosin', N'836447d8-fdea-4fa7-bb2f-e269fcb251f9', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4014, N'TANAC LIQUID (Mucosal)', 917006, N'Benzocaine', N'4fec813b-f5ad-4d15-8db5-529d5aa8bcb6', CAST(N'2011-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4015, N'TAPAZOLE (Oral Pill)', 1504620, N'Methimazole', N'0659f574-542f-4931-8fe7-d9f6b431bb9a', CAST(N'2013-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4016, N'Tapentadol (Oral Liquid)', 19026459, N'tapentadol', N'e921054f-b3f1-4624-8edd-f6628c6f0fd9', CAST(N'2014-11-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4017, N'Tapentadol (Oral Pill)', 19026459, N'tapentadol', N'e35e8385-db1f-41a8-8307-20979569ac72', CAST(N'2014-03-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4018, N'TARCEVA (Oral Pill)', 1325363, N'erlotinib', N'5783976b-0862-44e5-9b19-0f41d236d5c3', CAST(N'2012-01-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4019, N'TARGRETIN (Oral Pill)', 1389888, N'bexarotene', N'1d056725-0576-4338-8089-6336e768ccdc', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4020, N'TARGRETIN (Topical)', 1389888, N'bexarotene', N'e415c4c8-3144-4172-94a0-f4f3243130ae', CAST(N'2014-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4021, N'TARSUM (Shampoo)', 1000995, N'Coal Tar', N'd990a3d8-8be8-44e3-8e84-a6d8da21f3b5', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4022, N'Tasimelteon (Oral Pill)', 44814600, N'tasimelteon', N'ca4a9b63-708e-49e9-8f9b-010625443b90', CAST(N'2014-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4023, N'TASMAR (Oral Pill)', 715727, N'tolcapone', N'a0e47a9d-78e7-4523-983a-aa259f221736', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4024, N'TAVIST (Oral Pill)', 1197677, N'Clemastine', N'da09ea30-067f-45bc-9dc8-6fdd63db9ee1', CAST(N'2011-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4025, N'Tazarotene (Topical)', 947416, N'tazarotene', N'75145c21-6ef2-455a-8a67-d48ddd4181a4', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4026, N'TAZORAC (Topical)', 947416, N'tazarotene', N'dd02ea43-7668-4872-a655-ee31c456e345', CAST(N'2014-07-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4027, N'Tea Tree Oil (Topical)', 19008374, N'Tea Tree Oil', N'31952c39-8b43-4e93-b2e8-9388da8bdaf8', CAST(N'2011-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4028, N'TEARS RENEWED (Ophthalmic)', 1319156, N'Dextran 70', N'8cb4d4b4-44e5-4584-a4a4-940ad50b2f9d', CAST(N'2011-05-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4029, N'Teduglutide (Injectable)', 43013171, N'teduglutide', N'66b69c1e-b25c-44d3-b5ff-1c1de9a516fa', CAST(N'2013-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4030, N'Tegretol', 19045157, N'carbamazepine', N'8d409411-aa9f-4f3a-a52c-fbcb0c3ec053', CAST(N'2015-08-28 00:00:00.000' AS DateTime), 295, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4031, N'TEKTURNA (Oral Pill)', 1317967, N'aliskiren', N'4c222831-90af-4336-8bf6-5628ddf24326', CAST(N'2012-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4032, N'TEKTURNA HCT (Oral Pill)', 1317967, N'aliskiren', N'40d12d97-152d-4fea-bc59-b69e5c29fde2', CAST(N'2010-11-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4033, N'Telavancin (Injectable)', 40166675, N'telavancin', N'c09655ea-7af5-4443-a769-86e416214f59', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4034, N'TELDRIN HBP (Oral Pill)', 1192710, N'Chlorpheniramine', N'4cdbecbe-3219-4083-adc0-5479dc3ad3b9', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4035, N'Telithromycin (Oral Pill)', 1702911, N'telithromycin', N'ba1cca98-f350-4655-88e3-6ef990779fb9', CAST(N'2015-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4036, N'Telmisartan (Oral Pill)', 1317640, N'telmisartan', N'209b005e-12d7-3d34-e054-00144ff8d46c', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4037, N'Temazepam (Oral Pill)', 836715, N'Temazepam', N'f1ff672d-0b95-4e1b-9104-a545e02f4ee7', CAST(N'2015-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4038, N'TEMODAR (Oral Pill)', 1341149, N'temozolomide', N'819571ea-b808-4fd8-93c7-1ea2e33d71cf', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4039, N'TEMOVATE (Topical)', 998415, N'Clobetasol', N'830a28fb-9b80-4fbb-99dc-56ec80e4e581', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4040, N'Temozolomide (Oral Pill)', 1341149, N'temozolomide', N'819571ea-b808-4fd8-93c7-1ea2e33d71cf', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4041, N'Tenecteplase (Injectable)', 19098548, N'Tenecteplase', N'66a1e273-ab59-4e7a-a223-a96b86501f51', CAST(N'2011-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4042, N'TENEX (Oral Pill)', 1344965, N'Guanfacine', N'886e050c-dd22-4f35-ac3b-243f091125c3', CAST(N'2013-07-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4043, N'Tenofovir disoproxil (Oral Pill)', 1710281, N'tenofovir disoproxil', N'e122435e-cd0b-4c90-940a-b7a0d090d866', CAST(N'2010-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4044, N'TENORETIC (Oral Pill)', 1314002, N'Atenolol', N'0ebcca1e-ca16-4483-429a-aec5dcacd1dc', CAST(N'2012-11-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4045, N'TENORMIN (Injectable)', 1314002, N'Atenolol', N'4f266bf9-05ba-45bd-f683-d156c06d9acc', CAST(N'2006-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4046, N'TERAZOL 3 (Vaginal)', 941472, N'terconazole', N'61eab575-94e4-41cb-8045-af73424bb316', CAST(N'2014-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4047, N'TERAZOL 7 (Vaginal)', 941472, N'terconazole', N'61eab575-94e4-41cb-8045-af73424bb316', CAST(N'2010-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4048, N'Terazosin (Oral Pill)', 1341238, N'Terazosin', N'24a4243f-0855-44c1-bb78-ba6f14b273f9', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4049, N'Terbinafine (Oral Pill)', 1741309, N'terbinafine', N'aa9f660f-29e6-42fe-ba66-ee9387ce0385', CAST(N'2015-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4050, N'Terbinafine (Topical)', 1741309, N'terbinafine', N'2a342421-fc4b-4c21-a394-5ddb9d4a96d5', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4051, N'Terbutaline (Injectable)', 1236744, N'Terbutaline', N'cec31032-f366-4524-9e01-63146e473b2b', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4052, N'Terbutaline (Oral Pill)', 1236744, N'Terbutaline', N'879be756-991a-42c5-a381-9c8c2ad1fbdb', CAST(N'2015-03-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4053, N'Terconazole (Vaginal)', 941472, N'terconazole', N'2b3923b5-0a97-428c-b8d2-4a3ceb3447a1', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4054, N'TERRAMYCIN (Oral Pill)', 925952, N'Oxytetracycline', N'd30ffe60-a418-4425-883e-58d10417b9bf', CAST(N'2014-09-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4055, N'Tesamorelin (Injectable)', 40231628, N'tesamorelin', N'3de31cec-31dc-4ac4-9717-367a687d22f2', CAST(N'2013-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4056, N'TESSALON PERLES (Oral Pill)', 1136601, N'benzonatate', N'8edd07a0-5f5b-9000-bafb-dbf8ff7609d4', CAST(N'2013-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4057, N'TESTOPEL (Implant)', 1636780, N'Testosterone', N'a1741a0b-3d4c-42dc-880d-a06e96cce9ef', CAST(N'2013-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4058, N'Testosterone (Buccal)', 1636780, N'Testosterone', N'9af8ef50-f650-44ca-a272-135bfce9daca', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4059, N'Testosterone (Implant)', 1636780, N'Testosterone', N'a1741a0b-3d4c-42dc-880d-a06e96cce9ef', CAST(N'2013-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4060, N'Testosterone (Injectable)', 1636780, N'Testosterone', N'786cfd08-40a2-420a-bb29-230db15816bc', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4061, N'TESTRED (Oral Pill)', 1506602, N'Methyltestosterone', N'09db5a9d-9662-4bfb-824c-9c9aaad488dc', CAST(N'2015-04-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4062, N'Tetanus toxoid vaccine, inactivated (Injectable)', 529411, N'tetanus toxoid vaccine, inactivated', N'669abb62-e995-48f1-a80d-e954f9192fa5', CAST(N'2012-08-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4063, N'Tetrabenazine (Oral Pill)', 836877, N'Tetrabenazine', N'5867189c-17bd-4e70-a079-c4730f9950d1', CAST(N'2015-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4064, N'Tetracaine (Injectable)', 1036884, N'Tetracaine', N'b29124f7-c238-4961-b810-f4e7fabe4bb1', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4065, N'Tetracaine (Ophthalmic)', 1036884, N'Tetracaine', N'5c7b1de4-9f55-1d0e-ef6d-b0ba2cbaba79', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4066, N'Tetracycline (Oral Pill)', 1836948, N'Tetracycline', N'd07410b3-37e6-4382-97de-0c2676bc1103', CAST(N'2014-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4067, N'Tetracycline (Topical)', 1836948, N'Tetracycline', N'8654de63-4200-439d-b3f9-4a21ef1ad0b4', CAST(N'2014-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4068, N'Tetrahydrocannabinol (Oral Pill)', 1037005, N'Tetrahydrocannabinol', N'08adbfd9-789a-4888-a9e2-2a6dac867885', CAST(N'2015-04-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4069, N'Tetrahydrozoline (Nasal)', 941577, N'tetrahydrozoline', N'9bea4aec-219f-46a9-9af4-5baab2552073', CAST(N'2013-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4070, N'Tetrahydrozoline (Ophthalmic)', 941577, N'tetrahydrozoline', N'253fb4ed-e6e7-4dee-b2c3-364ccf36dde6', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4071, N'Tetrahydrozoline/Zinc Sulfate (Ophthalmic)', 941577, N'tetrahydrozoline', N'ac928224-804c-40c7-b76a-c573ed33535b', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4072, N'TETRAVISC (Ophthalmic)', 1036884, N'Tetracaine', N'8534f262-6755-4a3c-980b-c25a6c9110e4', CAST(N'2011-05-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4073, N'TETTERINE (Topical)', 907879, N'Miconazole', N'4de96ed4-7506-4acd-8e8d-ea74bfd18e4a', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4074, N'TEVETEN HCT (Oral Pill)', 1346686, N'eprosartan', N'b1dfcac3-ef66-4d3e-9d58-37d3f516eb31', CAST(N'2012-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4075, N'TEXACORT (Topical)', 975125, N'Hydrocortisone', N'25279d46-6bad-471f-8bd6-736d53cfd942', CAST(N'2012-05-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4076, N'THALITONE (Oral Pill)', 1395058, N'Chlorthalidone', N'e2eb7dad-3ea3-439c-dcbb-d1d61aa49dfc', CAST(N'2011-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4077, N'THEO-24 XR (Oral Pill)', 1237049, N'Theophylline', N'7a108fa0-c230-475f-be93-6f864b98a410', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4078, N'THEOLAIR (Oral Pill)', 1237049, N'Theophylline', N'3829d74e-b3ab-46df-a08b-f0327b63304e', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4079, N'Theophylline (Injectable)', 1237049, N'Theophylline', N'c3bb34c1-89b2-48c3-9ad2-16b4b2bce5f9', CAST(N'2012-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4080, N'Theophylline (Oral Liquid)', 1237049, N'Theophylline', N'2676f761-4fe5-40a9-a07d-ed2542847883', CAST(N'2014-11-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4081, N'Theophylline (Oral Pill)', 1237049, N'Theophylline', N'3829d74e-b3ab-46df-a08b-f0327b63304e', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4082, N'Theophylline XR (Oral Pill)', 1237049, N'Theophylline', N'1750235a-ad52-4231-abe5-d3c441ba39e8', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4083, N'THERA TEARS (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'661d8764-8ae6-4229-9485-867553ee8e16', CAST(N'2012-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4084, N'THERACYS (Topical)', 19023835, N'BCG, Live, Connaught Strain', N'8e456333-5a25-4484-84bf-53ece67c000a', CAST(N'2013-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4085, N'THERASEAL HAND PROTECTION (Topical)', 916662, N'dimethicone', N'2c8dc616-20c1-4d33-8a89-9bcdb22b35c8', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4086, N'THERATEARS (Ophthalmic)', 949279, N'Carboxymethylcellulose', N'17a01236-130f-495b-9f8d-92b6a23b2dc5', CAST(N'2012-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4087, N'THERMAZENE (Topical)', 966956, N'Silver Sulfadiazine', N'b3767ee9-038e-43ff-88bf-2a4577ac608a', CAST(N'2015-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4088, N'Thiamine (Injectable)', 19137312, N'Thiamine', N'4a8ea036-44e8-4329-ae13-3ef4ada26dfc', CAST(N'2014-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4089, N'Thioguanine (Oral Pill)', 1437379, N'Thioguanine', N'4490128b-e73f-4849-9d6e-e8591639d771', CAST(N'2013-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4090, N'THIOLA (Oral Pill)', 903031, N'tiopronin', N'494a714e-923c-cd57-df6c-12886afb265a', CAST(N'2012-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4091, N'Thioridazine (Oral Pill)', 700299, N'Thioridazine', N'9c4bedb4-2d59-4fcd-aad7-fce988cd96d8', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4092, N'Thiothixene (Oral Pill)', 700465, N'Thiothixene', N'92a1f215-e063-4c3e-89f5-f56d78a4c64e', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4093, N'Thrombin (Topical)', 1300673, N'Thrombin', N'bcf44467-b1eb-479b-8866-a8ac2c780c22', CAST(N'2015-05-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4094, N'Thyroid (USP) (Oral Pill)', 1501309, N'thyroid (USP)', N'c815faa3-1d02-4680-96ef-5fad1645e99b', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4095, N'THYROLAR (Oral Pill)', 1501700, N'Thyroxine', N'7d028b83-5166-4b2e-b442-ba6cbfefbfd6', CAST(N'2013-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4096, N'Thyrotropin-Releasing Hormone (Injectable)', 19001701, N'Thyrotropin-Releasing Hormone', N'af5da799-76bf-415a-9dc7-99c7ddc62bc4', CAST(N'2012-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4097, N'tiaGABine (Oral Pill)', 715458, N'tiagabine', N'25225511-70b8-4377-ad4f-6629025ac75f', CAST(N'2015-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4098, N'TICE BCG (Topical)', 19086176, N'BCG, Live, Tice Strain', N'c9b74876-e665-442b-87ad-b7333bc9a67a', CAST(N'2014-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4099, N'Ticlopidine (Oral Pill)', 1302398, N'Ticlopidine', N'13d85420-75e2-46e7-93eb-dcd10675cd03', CAST(N'2013-06-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4100, N'TIGAN (Injectable)', 942799, N'trimethobenzamide', N'97191d37-7c2e-48c6-91bf-0631fd7b1dd8', CAST(N'2011-01-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4101, N'TIGAN (Oral Pill)', 942799, N'trimethobenzamide', N'01a95f6d-f7d6-4ed1-a262-3c5848915252', CAST(N'2013-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4102, N'TIGER BALM (Topical)', 938205, N'Camphor', N'ce703715-4c11-472c-9270-daac87b7be05', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4103, N'TIGER BALM LINIMENT (Topical)', 901656, N'Menthol', N'51293a06-5922-4072-ae14-afaba9c1b58e', CAST(N'2013-04-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4104, N'TIGER BALM MUSCLE RUB (Topical)', 938205, N'Camphor', N'24385c6e-11d8-4573-ab23-7ad0fa981a84', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4105, N'Timolol (Ophthalmic)', 902427, N'Timolol', N'c9726422-f794-4d39-a437-17dcb8c0f3b5', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4106, N'Timolol (Oral Pill)', 902427, N'Timolol', N'57c62928-63d8-4505-9b9e-c085a3a12c95', CAST(N'2014-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4107, N'TIMOPTIC (Ophthalmic)', 902427, N'Timolol', N'15ca19c2-f28b-4703-aa23-5af265af9e8b', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4108, N'Timothy grass pollen extract (Injectable)', 40161488, N'Timothy grass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2015-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4109, N'Timothy grass pollen extract (Sublingual)', 40161488, N'Timothy grass pollen extract', N'1d7f3e56-c233-47a4-9bcd-80098ffff47d', CAST(N'2015-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4110, N'TINACTIN (Topical)', 902950, N'Tolnaftate', N'ec83cef5-d8ea-4df1-aa2a-08c25040b32c', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4111, N'TINDAMAX (Oral Pill)', 1702559, N'Tinidazole', N'a0d01539-8413-4703-94cc-d221918630a1', CAST(N'2013-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4112, N'TINEACIDE ANTIFUNGAL (Topical)', 914244, N'Undecylenate', N'3a7caf9f-2552-41be-a7d4-ac3a18b5a0d5', CAST(N'2011-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4113, N'TING (Topical)', 902950, N'Tolnaftate', N'bc89b8ec-4f9d-42d8-a38c-9b6284a54a34', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4114, N'Tinidazole (Oral Pill)', 1702559, N'Tinidazole', N'c8169a92-39e3-4794-87f5-13d31f0f15b3', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4115, N'Tinzaparin (Injectable)', 1308473, N'tinzaparin', N'1513b960-d9d1-11de-8a1e-0002a5d5c51b', CAST(N'2010-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4116, N'Tioconazole (Vaginal)', 942028, N'tioconazole', N'22ac4774-87b4-437f-8520-e4a4ed6e1c55', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4117, N'Tiopronin (Oral Pill)', 903031, N'tiopronin', N'494a714e-923c-cd57-df6c-12886afb265a', CAST(N'2012-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4118, N'Tirofiban (Injectable)', 19017067, N'tirofiban', N'fe0ced75-ccbf-4d2e-bd0d-b57e60ab913f', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4119, N'TISSEEL (Topical)', 19036781, N'Calcium Chloride', N'e1aca067-0c96-4025-88bc-bd2345a46a30', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4120, N'TITRALAC (Chewable)', 19035704, N'Calcium Carbonate', N'5d630381-88f0-4406-af0c-95b86c43f3c9', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4121, N'TITRALAC PLUS (Chewable)', 19035704, N'Calcium Carbonate', N'68725b83-46fc-47ae-bb5c-51f080dcacfe', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4122, N'TIVICAY (Oral Pill)', 43560385, N'dolutegravir', N'63df5af3-b8ac-4e76-9830-2dbb340af922', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4123, N'TIVORBEX (Oral Pill)', 1178663, N'Indomethacin', N'04ca474c-798e-43dd-be7a-1b36720e6a3d', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4124, N'tiZANidine (Oral Pill)', 778474, N'tizanidine', N'd24e0cda-a22f-404f-b861-f85090cef099', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4125, N'TL GARD RX (Oral Pill)', 19111620, N'Folic Acid', N'737ba5b9-8aec-4593-a93a-d3d0b4a5c529', CAST(N'2013-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4126, N'TNKASE (Injectable)', 19098548, N'Tenecteplase', N'66a1e273-ab59-4e7a-a223-a96b86501f51', CAST(N'2011-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4127, N'Tobacco leaf extract (Injectable)', 40162187, N'tobacco leaf extract', N'd71013ab-718c-4cb0-ae1a-31fdd6db8851', CAST(N'2009-12-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4128, N'TOBI (Inhalant)', 902722, N'Tobramycin', N'625a4499-4e46-4f5a-8d0c-d104f520d97e', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4129, N'TOBRADEX (Ophthalmic)', 1518254, N'Dexamethasone', N'330ac1f7-d583-454d-96bf-37c5af31a369', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4130, N'TOBRAFLEX (Ophthalmic)', 955583, N'Fluorometholone', N'cbdf11f4-d84c-4c4a-aac2-f8c23304fb02', CAST(N'2008-03-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4131, N'Tobramycin (Inhalant)', 902722, N'Tobramycin', N'da1e5afd-d707-4af1-8935-8195ba6d769f', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4132, N'Tobramycin (Injectable)', 902722, N'Tobramycin', N'8cfeb84f-193a-458a-bdec-205d9274e1a4', CAST(N'2015-04-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4133, N'Tobramycin (Ophthalmic)', 902722, N'Tobramycin', N'cdd423c5-a231-47d4-bf51-00b5c29e6a60', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4134, N'TOBREX (Ophthalmic)', 902722, N'Tobramycin', N'3d4be22b-7a8c-4247-ac35-143611342de1', CAST(N'2013-07-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4135, N'Tofacitinib (Oral Pill)', 42904205, N'tofacitinib', N'68e3d6b2-7838-4d2d-a417-09d919b43e13', CAST(N'2012-11-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4136, N'TOLAZamide (Oral Pill)', 1502809, N'Tolazamide', N'f82dcff5-4afa-45d8-bc8c-f0f7c0c96272', CAST(N'2012-01-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4137, N'TOLBUTamide (Oral Pill)', 1502855, N'Tolbutamide', N'3995eed8-39ec-ce5e-8cc2-062f93445c8d', CAST(N'2014-06-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4138, N'Tolcapone (Oral Pill)', 715727, N'tolcapone', N'a0e47a9d-78e7-4523-983a-aa259f221736', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4139, N'Tolmetin (Oral Pill)', 1102917, N'Tolmetin', N'6e0228a8-e3d3-4ae9-8873-d7aa3e0dcfee', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4140, N'Tolnaftate (Topical)', 902950, N'Tolnaftate', N'7357adcd-437d-4651-8922-6ef830f9f85a', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4141, N'Tolterodine (Oral Pill)', 913782, N'tolterodine', N'304023e8-57ad-4dd7-9cf0-a4524623aa6c', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4142, N'TOPAMAX (Oral Pill)', 742267, N'topiramate', N'cea5f748-3127-4d36-83af-9ab3cf58503c', CAST(N'2012-06-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4143, N'TOPEX (Oral Gel)', 917006, N'Benzocaine', N'87083cc6-fedc-4676-84e1-3134f690dfa9', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4144, N'TOPICAL HEMO-STAT (Mucosal)', 957393, N'aluminum chloride', N'6223c9d2-5944-4ca1-bf6f-24047a51a5f5', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4145, N'TOPICORT (Topical)', 917336, N'Desoximetasone', N'96dfac6f-540f-4b7d-bcee-7e62088ebc93', CAST(N'2015-10-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4146, N'Topiramate (Oral Pill)', 742267, N'topiramate', N'cea5f748-3127-4d36-83af-9ab3cf58503c', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4147, N'Topotecan (Injectable)', 1378509, N'Topotecan', N'996430c0-ee26-4ed9-82b8-a8b645becba6', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4148, N'Toremifene (Oral Pill)', 1342346, N'Toremifene', N'2cab8dd1-3a10-48e6-86ce-0e5275ed49e5', CAST(N'2012-11-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4149, N'Torsemide (Injectable)', 942350, N'torsemide', N'f95454ab-33fa-483b-bba3-91d6562765c3', CAST(N'2014-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4150, N'Torsemide (Oral Pill)', 942350, N'torsemide', N'cf288ad5-d4e7-4b0b-bfd0-41c5327e6984', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4151, N'TRADJENTA (Oral Pill)', 40239216, N'Linagliptin', N'dfe327e8-f6ab-41e5-bdef-d520118cd83a', CAST(N'2014-07-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4152, N'traMADol (Oral Pill)', 1103314, N'Tramadol', N'd5ab4f08-1d12-4c64-b3bf-e72c705aeca8', CAST(N'2015-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4153, N'TRANDATE (Oral Pill)', 1386957, N'Labetalol', N'a4195473-51a9-40f1-8678-1478ebca2d84', CAST(N'2010-12-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4154, N'Trandolapril (Oral Pill)', 1342439, N'trandolapril', N'26404e50-011e-4068-9745-647d2de681a3', CAST(N'2015-07-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4155, N'Tranexamic Acid (Injectable)', 1303425, N'Tranexamic Acid', N'6f033f1e-8c78-4c87-b870-6493944315ff', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4156, N'Tranexamic Acid (Oral Pill)', 1303425, N'Tranexamic Acid', N'add851b1-0f2d-46e9-b122-f4f5ff216539', CAST(N'2013-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4157, N'TRANSANOSIL (Topical)', 939881, N'Capsaicin', N'14b76eca-29f6-4dbd-890b-f72865877ad3', CAST(N'2013-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4158, N'TRANXENE (Oral Pill)', 790253, N'clorazepate', N'9c7ab45c-7461-6e4e-ee6d-f0ebe3eb4a28', CAST(N'2013-08-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4159, N'Tranylcypromine (Oral Pill)', 703470, N'Tranylcypromine', N'cd45db80-3cf3-4714-989b-de11f249bdfb', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4160, N'Trastuzumab (Injectable)', 1387104, N'trastuzumab', N'492dbdb2-077e-4064-bff3-372d6af0a7a2', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4161, N'TRASYLOL (Injectable)', 19000729, N'Aprotinin', N'8a5982c6-825f-4d05-90f5-1519a7291d15', CAST(N'2007-05-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4162, N'TRAVATAN (Ophthalmic)', 904501, N'travoprost', N'db08d5f3-6713-4372-a66c-fad3018ef5c6', CAST(N'2011-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4163, N'TRAVEL-EASE (Oral Pill)', 994341, N'Meclizine', N'c941f16b-b192-4a10-aabe-cc25ee8cc445', CAST(N'2014-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4164, N'Travoprost (Ophthalmic)', 904501, N'travoprost', N'db08d5f3-6713-4372-a66c-fad3018ef5c6', CAST(N'2011-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4165, N'traZODone (Oral Pill)', 703547, N'Trazodone', N'10124262-e443-49a5-a1cc-8cc34c74d953', CAST(N'2015-03-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4166, N'TRETIN X (Topical)', 903643, N'Tretinoin', N'1cecc7e2-00bd-4c63-af1d-723aaf892f60', CAST(N'2013-08-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4167, N'Tretinoin (Oral Pill)', 903643, N'Tretinoin', N'0f81f505-a962-414e-8612-c3ef3b159e9a', CAST(N'2013-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4168, N'Tretinoin (Topical)', 903643, N'Tretinoin', N'ac92dfd3-6517-43d0-b6c1-b86fdf3a761f', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4169, N'TRETTEN (Injectable)', 19106100, N'factor XIII', N'8664978e-1814-4930-aca5-97a24455f6df', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4170, N'TREXALL (Oral Pill)', 1305058, N'Methotrexate', N'e942f8db-510f-44d6-acb5-b822196f5e8c', CAST(N'2014-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4171, N'TREZIX (Oral Pill)', 1125315, N'Acetaminophen', N'63841f53-a567-4102-80b5-3565d9b52373', CAST(N'2011-07-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4172, N'TRIACIN C (Oral Liquid)', 1201620, N'Codeine', N'6cc01bb7-27c5-43c4-8e21-64ecbfbb4fa2', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4173, N'Triamcinolone (Injectable)', 903963, N'Triamcinolone', N'53522b35-6215-4e9c-b51d-8b81728e0817', CAST(N'2015-08-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4174, N'Triamcinolone (Oral Paste)', 903963, N'Triamcinolone', N'b353c8b1-9088-4969-8199-37876f2461cc', CAST(N'2014-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4175, N'Triamcinolone (Topical)', 903963, N'Triamcinolone', N'5b1d1510-118f-4b82-9119-386d572971d2', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4176, N'TRIAMINIC COLD AND ALLERGY REFORMULATED JAN 2014 (Oral Liquid)', 1130863, N'Brompheniramine', N'0da4b415-6aaf-4c64-9c1c-f59e7edc4db2', CAST(N'2014-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4177, N'TRIAMINIC COUGH & SORE THROAT REFORMULATED JUL 2007 (Oral Liquid)', 1125315, N'Acetaminophen', N'bccbf604-768c-4e20-995a-bb0212374202', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4178, N'TRIAMINIC COUGH AND CONGESTION (Oral Liquid)', 1119510, N'Dextromethorphan', N'85cdcb69-2336-4e36-9f24-711d391f3215', CAST(N'2014-06-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4179, N'TRIAMINIC DAY TIME COLD & COUGH (Oral Liquid)', 1119510, N'Dextromethorphan', N'9437b637-fb70-41dd-8ead-d79698a61e22', CAST(N'2015-07-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4180, N'TRIAMINIC FEVER & PAIN (Oral Liquid)', 1125315, N'Acetaminophen', N'd8b68434-2d0b-4431-b79d-7d6510f50e1b', CAST(N'2012-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4181, N'TRIAMINIC LONG ACTING COUGH (Oral Liquid)', 1119510, N'Dextromethorphan', N'83bb1f25-23e8-4827-bfc4-25ff3c87de18', CAST(N'2014-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4182, N'TRIAMINIC NIGHT TIME COLD & COUGH (Oral Liquid)', 1129625, N'Diphenhydramine', N'40ae8bfc-4007-4483-bb08-cf32f2e802c6', CAST(N'2012-11-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4183, N'Triamterene (Oral Pill)', 904542, N'Triamterene', N'ffe24e3d-cfe8-4d5a-8213-69f0bbc9f4d5', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4184, N'TRIANEX (Topical)', 903963, N'Triamcinolone', N'cde13809-a606-12ca-aece-f2ae594baa71', CAST(N'2015-02-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4185, N'Triazolam (Oral Pill)', 704599, N'Triazolam', N'6d743386-a8e4-4a3f-ac82-c046896f35ae', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4186, N'TRI-CHLOR (Topical)', 987009, N'Trichloroacetate', N'd929f1d6-3234-491c-b084-644c91e61302', CAST(N'2010-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4187, N'Trichloroacetate (Topical)', 987009, N'Trichloroacetate', N'1c515490-1d4a-408c-8a99-0f9b34dbe270', CAST(N'2014-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4188, N'Trichophyton mentagrophytes extract (Injectable)', 40167348, N'Trichophyton mentagrophytes extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4189, N'Trichothecium roseum extract (Injectable)', 40175764, N'Trichothecium roseum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4190, N'Triclosan (Soap)', 1704758, N'Triclosan', N'439c9213-b6b2-4dd6-bf5c-1d2209cb28c8', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4191, N'Triclosan (Topical)', 1704758, N'Triclosan', N'3fc53a6d-15cb-44d0-8e0c-e0ab48a6f748', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4192, N'TRICOR (Oral Pill)', 1551803, N'Fenofibrate', N'194cd14a-d952-4507-91be-3f1d5371d3b8', CAST(N'2014-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4193, N'Trientine (Oral Pill)', 19004969, N'Trientine', N'c34f77a7-996b-4470-b5df-d946a7fe5dbe', CAST(N'2015-01-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4194, N'TRIESENCE (Injectable)', 903963, N'Triamcinolone', N'3f045347-3e5e-4bbd-90f8-6c3100985ca5', CAST(N'2011-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4195, N'Trifluoperazine (Oral Pill)', 704984, N'Trifluoperazine', N'10b124e8-3167-4b2c-85f1-197b5aa8dabf', CAST(N'2014-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4196, N'Trifluridine (Ophthalmic)', 905078, N'Trifluridine', N'f3a14d86-0ff2-4535-318c-ac8bc8ede42c', CAST(N'2014-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4197, N'Trihexyphenidyl (Oral Liquid)', 705178, N'Trihexyphenidyl', N'd6f08000-e973-4bab-810c-b69f6c8ee4f3', CAST(N'2015-06-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4198, N'Trihexyphenidyl (Oral Pill)', 705178, N'Trihexyphenidyl', N'd25fa10c-cc9c-4d8c-9896-4ccc544bbbde', CAST(N'2014-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4199, N'Triiodothyronine (Injectable)', 1505346, N'Triiodothyronine', N'4cd4baf4-18d2-434f-b80b-4f4b19996cf9', CAST(N'2013-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4200, N'Triiodothyronine (Oral Pill)', 1505346, N'Triiodothyronine', N'fecd164d-1344-4d2f-97a7-ebe972470d2b', CAST(N'2015-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4201, N'TRILEPTAL (Oral Pill)', 718122, N'oxcarbazepine', N'd9741f36-0abd-49b7-9f43-e9700663122b', CAST(N'2012-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4202, N'TRILIPIX (Oral Pill)', 1551803, N'Fenofibrate', N'3057fc9c-ff77-43eb-b687-776660423742', CAST(N'2012-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4203, N'Trilostane (Oral Pill)', 19042801, N'trilostane', N'22a5e838-c9a3-40d2-84cd-15df6ada913b', CAST(N'2015-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4204, N'TRI-LUMA (Topical)', 996541, N'fluocinolone', N'a35fa709-5eb5-4429-b38f-f1e0019bf0ee', CAST(N'2014-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4205, N'Trimethobenzamide (Injectable)', 942799, N'trimethobenzamide', N'c1d3cc1f-f990-42b1-bc42-3551c1bfa12a', CAST(N'2015-07-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4206, N'Trimethobenzamide (Oral Pill)', 942799, N'trimethobenzamide', N'760afbcd-bc81-4595-82c8-ec1cbd7c2b08', CAST(N'2015-02-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4207, N'Trimethoprim (Oral Liquid)', 1705674, N'Trimethoprim', N'a06ea7d8-a884-4b62-a87f-c36d824f2aa4', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4208, N'Trimethoprim (Oral Pill)', 1705674, N'Trimethoprim', N'7d25e3f9-7b0d-452d-953e-f100bb0f2db7', CAST(N'2014-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4209, N'Trimetrexate (Injectable)', 1750928, N'Trimetrexate', N'ad0f8925-f817-4460-aa6b-172a043a440b', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4210, N'Trimipramine (Oral Pill)', 705755, N'Trimipramine', N'0177d783-773c-41bf-9db9-eb7e5c64474a', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4211, N'TRIMOX (Oral Pill)', 1713332, N'Amoxicillin', N'2f4c571b-a27e-40ef-b0cd-e6e44ac9a15e', CAST(N'2014-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4212, N'TRIOSTAT (Injectable)', 1505346, N'Triiodothyronine', N'4cd4baf4-18d2-434f-b80b-4f4b19996cf9', CAST(N'2013-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4213, N'TRIPLE PASTE (Topical)', 911064, N'Zinc Oxide', N'f9fd9395-48bc-43be-a3d9-ec7fcad339a9', CAST(N'2015-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4214, N'TRIPLE PASTE AF (Topical)', 907879, N'Miconazole', N'8d19b86d-b63c-485f-b143-2bc35f76c659', CAST(N'2013-11-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4215, N'Triprolidine (Oral Liquid)', 1105889, N'Triprolidine', N'cc466d33-cf3e-4f1c-a794-6d3d79903adf', CAST(N'2014-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4216, N'TRISENOX (Injectable)', 1333379, N'arsenic trioxide', N'dec51fab-3784-deb7-752f-2d4d5692a20f', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4217, N'TRIUMEQ (Oral Pill)', 1736971, N'abacavir', N'2997739a-aa91-42aa-a206-a70e2db7b84f', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4218, N'TRIZIVIR (Oral Pill)', 1736971, N'abacavir', N'3354e50f-4dc5-413f-b5ae-87353ab8913d', CAST(N'2014-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4219, N'Trolamine salicylate (Topical)', 943116, N'trolamine salicylate', N'e1cfadb7-7370-4735-a87a-071c6eedd87a', CAST(N'2015-09-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4220, N'TRONOLANE ANESTHETIC (Rectal)', 927478, N'pramoxine', N'0d5ba4f1-1178-490d-8524-143d0aa2f0ef', CAST(N'2015-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4221, N'Tropicamide (Ophthalmic)', 906072, N'Tropicamide', N'0d4f4a2e-eb00-4c65-b3fa-baf5738d468d', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4222, N'Trospium (Oral Pill)', 991825, N'Trospium', N'0ac65eae-b3dd-4cda-aec2-ff1e954a93a4', CAST(N'2013-05-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4223, N'Trovafloxacin (Oral Pill)', 1712549, N'trovafloxacin', N'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', CAST(N'2006-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4224, N'TROVAN (Oral Pill)', 1712549, N'trovafloxacin', N'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', CAST(N'2006-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4225, N'TROVAN IV (Injectable)', 19018154, N'alatrofloxacin', N'da9b26bb-d2d7-4113-a0f9-c6c2280f4875', CAST(N'2006-07-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4226, N'TRU-MICIN (Topical)', 943116, N'trolamine salicylate', N'49c41d92-9c48-4245-b251-13226fb11c94', CAST(N'2013-06-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4227, N'TRUSOPT (Ophthalmic)', 981709, N'dorzolamide', N'26d26f80-aebf-441c-6383-327cb95eae4d', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4228, N'TRUVADA (Oral Pill)', 1703069, N'emtricitabine', N'd0b3d18b-7e5d-49ea-bcaf-8408414e8094', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4229, N'TUBERSOL (Injectable)', 19058274, N'Purified Protein Derivative of Tuberculin', N'96d91ba3-9dfe-4420-a835-57647ea30b40', CAST(N'2013-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4230, N'TUCKS HEMORRHOIDAL (Rectal)', 908523, N'Mineral Oil', N'347ff421-3ad9-409f-8731-af0183682e12', CAST(N'2012-08-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4231, N'TUCKS SUPPOSITORIES (Rectal)', 1036157, N'Starch', N'1b051fc4-bc4c-4eb6-96f8-f40e577c3072', CAST(N'2012-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4232, N'TUMS (Chewable)', 19035704, N'Calcium Carbonate', N'91b240f2-856c-44cf-a3de-a6ead2891f0d', CAST(N'2015-05-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4233, N'TUSNEL C (Oral Liquid)', 1201620, N'Codeine', N'403935ac-5111-4f8b-80ae-1bd47ae774c7', CAST(N'2013-01-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4234, N'TUSNEL DIABETIC (Oral Liquid)', 1119510, N'Dextromethorphan', N'66b3c094-809e-4d2c-bc15-46563de685cb', CAST(N'2012-04-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4235, N'TUSSIGON (Oral Pill)', 1101703, N'homatropine', N'6c0bba34-07db-42f5-9e5e-ad79b71b4276', CAST(N'2014-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4236, N'TYBOST (Oral Pill)', 42874220, N'cobicistat', N'3784c35c-e87f-410c-900b-8fd6313c6010', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4237, N'TYLENOL (Oral Liquid)', 1125315, N'Acetaminophen', N'ad40b276-fbff-4b8d-9197-32345573fa80', CAST(N'2015-07-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4238, N'TYLENOL (Oral Pill)', 1125315, N'Acetaminophen', N'937d3bee-2c37-4dac-a79b-2c2b2075db7d', CAST(N'2015-08-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4239, N'TYLENOL PM (Oral Pill)', 1125315, N'Acetaminophen', N'1b6e88d7-8e18-4838-9cee-db876f14f14f', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4240, N'TYLENOL WITH CODEINE (Oral Pill)', 1125315, N'Acetaminophen', N'96847717-e3ff-42ee-a25b-1df72c427572', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4241, N'TYPHIM VI (Injectable)', 532881, N'Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain', N'ad1fbe7f-2995-45dd-92f3-7baccaab85d9', CAST(N'2014-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4242, N'Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain (Injectable)', 532881, N'Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain', N'ad1fbe7f-2995-45dd-92f3-7baccaab85d9', CAST(N'2014-04-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4243, N'TYZINE (Nasal)', 941577, N'tetrahydrozoline', N'9bea4aec-219f-46a9-9af4-5baab2552073', CAST(N'2013-09-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4244, N'U-CORT (Topical)', 975125, N'Hydrocortisone', N'1eb217be-34f1-4b3b-a3a5-4dfb83fb6143', CAST(N'2012-03-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4245, N'ULESFIA (Topical)', 919681, N'Benzyl Alcohol', N'aeba2488-1ac3-4c02-833c-78a36859f029', CAST(N'2014-07-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4246, N'Ulipristal (Oral Pill)', 40225722, N'ulipristal', N'052bfe45-c485-49e5-8fc4-51990b2efba4', CAST(N'2014-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4247, N'ULORIC (Oral Pill)', 19017742, N'febuxostat', N'3803df6e-b765-4917-ab0e-4d91a23be47f', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4248, N'ULTIVA (Injectable)', 19016749, N'remifentanil', N'dbc63b6e-f8c5-4fd0-8ec3-4f5e19125313', CAST(N'2015-03-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4249, N'ULTRACET (Oral Pill)', 1125315, N'Acetaminophen', N'2d20df3c-8b5b-4bdf-a49f-ec904522575d', CAST(N'2014-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4250, N'ULTRAM (Oral Pill)', 1103314, N'Tramadol', N'288ddb7b-29e4-46c7-9d84-38a188231710', CAST(N'2014-12-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4251, N'ULTRASAL (Topical)', 964407, N'Salicylic Acid', N'a01a3ccd-d9bc-40b6-b269-cddd6d0e47c5', CAST(N'2014-10-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4252, N'ULTRAVATE (Topical)', 949759, N'halobetasol', N'b73836e9-7ccc-41bb-b4ef-65ad2d865085', CAST(N'2014-02-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4253, N'ULTRESA (Oral Pill)', 919204, N'Amylases', N'73861076-218d-4f8e-872d-0e0690c374a8', CAST(N'2015-04-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4254, N'UMECTA (Topical)', 906914, N'Urea', N'fd7b3fe5-8ba6-4808-8ead-1b20a87a2ed2', CAST(N'2012-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4255, N'UMECTA PD (Topical)', 787787, N'hyaluronate', N'ce953fdf-a73a-4f7e-8946-959346990626', CAST(N'2011-12-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4256, N'Undecylenate (Topical)', 914244, N'Undecylenate', N'eaedf82d-2fae-4360-8a88-f2f62ae9a18c', CAST(N'2015-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4257, N'UNISOM SLEEP (Oral Disintegrating)', 1129625, N'Diphenhydramine', N'9105f4f1-7f94-408d-a025-83afb68dc9f0', CAST(N'2015-05-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4258, N'UNISOM SLEEP (Oral Pill)', 1129625, N'Diphenhydramine', N'17383d22-91cc-4d9e-a0b8-3f7d9a18af83', CAST(N'2012-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4259, N'UNITHROID (Oral Pill)', 1501700, N'Thyroxine', N'07562e72-7eaa-4ce6-94f0-e08814787e50', CAST(N'2014-07-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4260, N'UNIVASC (Oral Pill)', 1310756, N'moexipril', N'e16c2ad3-1ce5-48fc-96b2-5d63dc6b68d5', CAST(N'2012-10-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4261, N'URAMAXIN (Topical)', 906914, N'Urea', N'67993648-4930-4a98-8d26-5995b4e58b45', CAST(N'2012-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4262, N'Urea (Topical)', 906914, N'Urea', N'0e5d02d2-fa60-46e9-b45c-9fd5ee51a637', CAST(N'2015-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4263, N'URECHOLINE (Oral Pill)', 937439, N'Bethanechol', N'5513ddc8-90c8-4548-8188-5a807465cdc4', CAST(N'2013-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4264, N'URELLE (Oral Pill)', 923672, N'Hyoscyamine', N'd801fc5b-f0df-4347-9b9b-8f439328cdde', CAST(N'2015-01-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4265, N'URIBEL (Oral Pill)', 923672, N'Hyoscyamine', N'fa2cc334-bd86-46cc-bc6a-12c71303f963', CAST(N'2010-08-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4266, N'URICALM INTENSIVE (Oral Pill)', 1125315, N'Acetaminophen', N'99730efd-aa2a-4437-bef2-60aa3f349905', CAST(N'2013-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4267, N'UROCIT-K XR (Oral Pill)', 976545, N'potassium citrate', N'd2c923d5-85c1-4bbb-9f93-556080a5ef87', CAST(N'2011-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4268, N'Urofollitropin (Injectable)', 1515417, N'Urofollitropin', N'46f7740f-c879-4a77-9a16-2821fd772641', CAST(N'2006-09-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4269, N'UROGESIC BLUE REFORMULATED APR 2012 (Oral Pill)', 923672, N'Hyoscyamine', N'36527dcb-dc17-469c-8286-b752b0d8badf', CAST(N'2013-02-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4270, N'URSO (Oral Pill)', 988095, N'Ursodeoxycholate', N'e8fc4fc2-fe5c-4cba-b6e0-5ceaf2157a61', CAST(N'2013-06-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4271, N'Ursodeoxycholate (Oral Pill)', 988095, N'Ursodeoxycholate', N'c9aa0223-3ea4-4cb7-b53b-f35e5a04cec7', CAST(N'2015-08-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4272, N'UTA CAPSULE (Oral Pill)', 923672, N'Hyoscyamine', N'206ac12b-a081-4e37-aa0e-73b8794608d8', CAST(N'2010-07-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4273, N'UVADEX (Injectable)', 905223, N'Methoxsalen', N'5ad333bd-845f-43f8-9ecf-43491f26c7c7', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4274, N'VAGIFEM (Vaginal)', 1548195, N'Estradiol', N'd67888ac-5041-4758-88db-845a41f67df4', CAST(N'2012-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4275, N'VAGISIL ORIGINAL FORMULA (Vaginal)', 917006, N'Benzocaine', N'4929a228-44bc-4f1c-b1d9-a82132c5c278', CAST(N'2015-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4276, N'VAGISTAT (Vaginal)', 907879, N'Miconazole', N'c91cba6b-61fc-4708-9edb-3ba086cc1038', CAST(N'2014-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4277, N'valACYclovir (Oral Pill)', 1717704, N'valacyclovir', N'c31fdda3-217c-c452-eb9b-aba705456aa1', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4278, N'VALCHLOR (Topical)', 1394337, N'Mechlorethamine', N'706bd420-2f32-11e0-aaee-0002a5d5c51b', CAST(N'2013-10-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4279, N'VALCYTE (Oral Liquid)', 1703063, N'valganciclovir', N'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4280, N'VALCYTE (Oral Pill)', 1703063, N'valganciclovir', N'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4281, N'Valdecoxib (Oral Pill)', 1103374, N'valdecoxib', N'caf64301-262c-45ca-acd1-a9d6696c584e', CAST(N'2007-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4282, N'valGANciclovir (Oral Liquid)', 1703063, N'valganciclovir', N'dc548ff9-e8ea-4d6e-b9b4-e31f53ac4078', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4283, N'valGANciclovir (Oral Pill)', 1703063, N'valganciclovir', N'4db6dd63-e56b-45a4-86b2-ee125a1854a0', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4284, N'VALIUM (Oral Pill)', 723013, N'Diazepam', N'957f79d9-2bcb-4e6b-885d-fa34851f062d', CAST(N'2013-01-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4285, N'Valproate (Injectable)', 745466, N'Valproate', N'7a687b2f-246d-4736-a20c-92421c263268', CAST(N'2015-06-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4286, N'Valproate (Oral Liquid)', 745466, N'Valproate', N'caf12ea3-06c8-44c1-9e89-3ecaff89a22b', CAST(N'2015-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4287, N'Valproate (Oral Pill)', 745466, N'Valproate', N'f738ddad-fef0-43cb-b791-b046fdcec311', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4288, N'Valsartan (Oral Pill)', 1308842, N'valsartan', N'8e4382de-df78-4821-b11e-c423442a7ff8', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4289, N'VALTREX (Oral Pill)', 1717704, N'valacyclovir', N'b4450539-78ec-4e8a-8cfc-56dcde7984a0', CAST(N'2013-06-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4290, N'VANACOF-8 (Oral Liquid)', 1150886, N'chlophedianol', N'fc6b92e8-932a-4040-b424-c2cb5b1b503c', CAST(N'2014-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4291, N'VANCOCIN (Oral Pill)', 1707687, N'Vancomycin', N'b7f386c7-8b78-4751-b6ae-e171925c2d54', CAST(N'2012-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4292, N'Vancomycin (Injectable)', 1707687, N'Vancomycin', N'b01aaa02-8f1d-4b57-96a5-337503428af1', CAST(N'2015-08-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4293, N'Vancomycin (Oral Pill)', 1707687, N'Vancomycin', N'a078d9c2-f89c-4f9f-8ded-60ffb2983c3f', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4294, N'VANDAZOLE (Vaginal)', 1707164, N'Metronidazole', N'27d71471-8f89-4a1e-8c55-020a58961454', CAST(N'2013-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4295, N'Vandetanib (Oral Pill)', 40238052, N'Vandetanib', N'd2a87691-c9ad-4753-97a1-311fccfe6515', CAST(N'2012-02-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4296, N'VANIPLY (Topical)', 916662, N'dimethicone', N'53f53dc6-21e3-4f55-bc0f-b0615dd8c8cf', CAST(N'2012-02-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4297, N'VANIQA (Topical)', 978236, N'Eflornithine', N'a2c3d206-b893-4f65-a2f6-c11fa9a0e486', CAST(N'2013-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4298, N'VANOS (Topical)', 955252, N'Fluocinonide', N'34b91547-31f6-4043-b91c-16c9ebd81349', CAST(N'2010-12-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4299, N'VANOXIDE-HC (Topical)', 918172, N'Benzoyl Peroxide', N'1f0edbd9-103e-4a49-b7a8-6552ef172c13', CAST(N'2014-10-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4300, N'VAPRISOL (Injectable)', 19010927, N'conivaptan', N'5150d9d9-01dc-4a52-9858-214c66d8caea', CAST(N'2015-05-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4301, N'Vardenafil (Oral Disintegrating)', 1311276, N'vardenafil', N'0e5139d8-bf61-4f21-a36b-81b96b9b07d1', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4302, N'Vardenafil (Oral Pill)', 1311276, N'vardenafil', N'b3bbc16e-8305-469a-9dc3-8e698339a98b', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4303, N'Varenicline (Oral Pill)', 780442, N'varenicline', N'2468ba8d-4c77-4ea0-88d8-b64497a72222', CAST(N'2014-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4304, N'Varicella-zoster immune globulin (Injectable)', 543291, N'varicella-zoster immune globulin', N'ac96a331-e2ff-4839-a4d5-fda3d858c969', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4305, N'VARITHENA (Injectable)', 40175900, N'polidocanol', N'dfd6b4a0-b0dc-11e2-9e96-0800200c9a66', CAST(N'2015-03-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4306, N'VARIZIG (Injectable)', 543291, N'varicella-zoster immune globulin', N'ac96a331-e2ff-4839-a4d5-fda3d858c969', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4307, N'VASELINE (Topical)', 19033354, N'Petrolatum', N'eb182cdf-985e-4039-b426-fcbaef1ef78d', CAST(N'2014-12-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4308, N'VASOCON (Ophthalmic)', 914533, N'Naphazoline', N'0f25812f-96ab-44f4-bacf-2eb012cbddc7', CAST(N'2006-09-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4309, N'Vasopressin (USP) (Injectable)', 1507835, N'Vasopressin (USP)', N'977ab16e-c2c1-4aa2-98cb-af065b37c944', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4310, N'VASOSTRICT (Injectable)', 1507835, N'Vasopressin (USP)', N'b1147beb-743e-4c62-8927-91192447f8b8', CAST(N'2015-10-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4311, N'VASOTEC (Oral Pill)', 1341927, N'Enalapril', N'da4704d6-dc9e-4539-809e-4bdbc898043a', CAST(N'2015-10-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4312, N'VECAMYL (Oral Pill)', 1394333, N'Mecamylamine', N'0774cc48-7287-4093-91d6-9df41a81408a', CAST(N'2015-06-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4313, N'VECTICAL (Topical)', 19035631, N'Calcitriol', N'a1567da9-af74-4afd-9ac5-8b53ec5d7cbf', CAST(N'2015-03-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4314, N'Vecuronium (Injectable)', 19012598, N'Vecuronium', N'96e69586-e9af-4b07-990f-12d93faa7edd', CAST(N'2015-06-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4315, N'Vedolizumab (Injectable)', 45774639, N'vedolizumab', N'6e94621c-1a95-4af9-98d1-52b9e6f1949c', CAST(N'2014-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4316, N'VELETRI (Injectable)', 1354118, N'Epoprostenol', N'df502787-46ec-4dd1-a2c0-be90f6d95a5d', CAST(N'2013-07-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4317, N'Velvet grass pollen extract (Injectable)', 40162058, N'velvet grass pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4318, N'Venlafaxine (Oral Pill)', 743670, N'venlafaxine', N'6490e629-062b-4caa-a0aa-3d9c75c693d7', CAST(N'2015-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4319, N'VENOFER (Injectable)', 1395773, N'ferric oxide, saccharated', N'f1ab1a22-2b99-4d27-8b5a-9c3bcd5e3040', CAST(N'2014-01-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4320, N'Verapamil (Oral Pill)', 1307863, N'Verapamil', N'0c604923-4a37-45ac-ad93-3610a5eadc16', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4321, N'Verapamil XR (Oral Pill)', 1307863, N'Verapamil', N'887b91f5-f117-47e6-8d59-87ac61d17175', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4322, N'VERSACLOZ (Oral Liquid)', 800878, N'Clozapine', N'693cb9d4-39db-4ecf-9eae-b01f06f8d5d1', CAST(N'2015-09-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4323, N'Verteporfin (Injectable)', 912803, N'Verteporfin', N'952f4c80-50b1-4308-9ee6-311ffefb13df', CAST(N'2015-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4324, N'VERTICALM (Oral Pill)', 994341, N'Meclizine', N'5ce8022e-9d09-4e38-b952-9c7b118ac0fa', CAST(N'2012-04-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4325, N'Verticillium albo-atrum extract (Injectable)', 40175719, N'Verticillium albo-atrum extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4326, N'VESICARE (Oral Pill)', 916005, N'Solifenacin', N'e433dc68-6b2a-4c48-beae-4ec946f1ff1e', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4327, N'VFEND (Injectable)', 1714277, N'voriconazole', N'08d08721-1f4c-478a-8abf-d9c402d50553', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4328, N'VFEND (Oral Pill)', 1714277, N'voriconazole', N'ac3e3964-90c0-44dd-800c-ec9606629572', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4329, N'VIAGRA (Oral Pill)', 1316262, N'sildenafil', N'1da7847b-16e4-4bf1-957f-3894d023b339', CAST(N'2015-05-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4330, N'VIBATIV (Injectable)', 40166675, N'telavancin', N'9fc67b76-9ba1-45ec-9749-ca3f3a6477d9', CAST(N'2014-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4331, N'VICKS VAPODROPS (Oral Lozenge)', 901656, N'Menthol', N'ff232f72-1ccd-457a-a64d-66c89fd9a510', CAST(N'2012-10-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4332, N'VICKS VAPORUB (Topical)', 938205, N'Camphor', N'e69a7c9b-fd04-4109-a7c8-6edfd83855fc', CAST(N'2012-10-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4333, N'VICKS VAPOSTEAM (Inhalant)', 938205, N'Camphor', N'196a38e2-efe5-4fc8-a5bd-eb9e9f07ba8b', CAST(N'2012-10-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4334, N'VICODIN (Oral Pill)', 1125315, N'Acetaminophen', N'496ed99b-7bce-4ade-b7c3-6c59feebce6f', CAST(N'2011-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4335, N'VIDAZA (Injectable)', 1314865, N'Azacitidine', N'e437efe0-9c6a-4f87-b3b4-de90443b095f', CAST(N'2006-12-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4336, N'VIGAMOX (Ophthalmic)', 1716903, N'moxifloxacin', N'68cca7e1-120c-4ac6-8851-15a17e11bd9f', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4337, N'VIIBRYD (Oral Pill)', 40234834, N'vilazodone', N'bfef9e19-d0f5-40fa-954c-b73c812eb242', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4338, N'Vilazodone (Oral Pill)', 40234834, N'vilazodone', N'bfef9e19-d0f5-40fa-954c-b73c812eb242', CAST(N'2015-09-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4339, N'VIMOVO (Oral Pill)', 904453, N'Esomeprazole', N'baa47781-7151-4c75-a9a2-d2eac0a7d55e', CAST(N'2015-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4340, N'vinBLAStine (Injectable)', 19008264, N'Vinblastine', N'f073b58e-56d6-4c8d-a2ce-b37719402d77', CAST(N'2012-01-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4341, N'VINCASAR (Injectable)', 1308290, N'Vincristine', N'01cee93f-3ab9-44fa-8c9a-dd5958fd2db9', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4342, N'vinCRIStine (Injectable)', 1308290, N'Vincristine', N'01cee93f-3ab9-44fa-8c9a-dd5958fd2db9', CAST(N'2014-10-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4343, N'Vincristine liposome (Injectable)', 42874135, N'vincristine liposome', N'a1869e23-b93b-4407-843b-4b830319d82e', CAST(N'2013-01-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4344, N'Vinorelbine (Injectable)', 1343346, N'vinorelbine', N'dd3dcc9a-e40c-4677-9ee6-f318e7c7d835', CAST(N'2015-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4345, N'VIOKACE (Oral Pill)', 919204, N'Amylases', N'd85c7e20-4e1d-43cd-a64b-ced3bda70eed', CAST(N'2014-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4346, N'VIRACEPT (Oral Pill)', 1715472, N'Nelfinavir', N'84948e6a-971f-4e86-928e-7d32a1883a23', CAST(N'2013-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4347, N'VIRAMUNE (Oral Pill)', 1769389, N'Nevirapine', N'46fb9dbc-5345-48a4-a0ec-75039622c76c', CAST(N'2010-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4348, N'VIREAD (Oral Pill)', 1710281, N'tenofovir disoproxil', N'e122435e-cd0b-4c90-940a-b7a0d090d866', CAST(N'2010-04-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4349, N'VIROPTIC (Ophthalmic)', 905078, N'Trifluridine', N'f3a14d86-0ff2-4535-318c-ac8bc8ede42c', CAST(N'2014-06-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4350, N'VISICOL (Oral Pill)', 991710, N'Sodium Phosphate, Dibasic', N'57ccd52e-5b13-4b39-8aa0-ebecc49a7db4', CAST(N'2010-12-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4351, N'VISINE AC (Ophthalmic)', 941577, N'tetrahydrozoline', N'159f0bae-7a3d-42d8-8572-aebcabae86ba', CAST(N'2015-09-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4352, N'VISINE ADVANCED RELIEF (Ophthalmic)', 1319156, N'Dextran 70', N'619c2e09-aa29-4225-89b9-d2582f89ebe9', CAST(N'2011-01-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4353, N'VISINE PURE TEARS (Ophthalmic)', 961145, N'Glycerin', N'fe902038-7afc-4c54-93fd-1744ca9c659e', CAST(N'2011-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4354, N'VISINE TIRED EYE RELIEF (Ophthalmic)', 961145, N'Glycerin', N'2d3f9d75-72e8-47c9-bc73-eabc827b2a11', CAST(N'2015-04-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4355, N'VISINE-A (Ophthalmic)', 914533, N'Naphazoline', N'82500e4c-bc01-4ce0-80d8-6e9f0be99163', CAST(N'2014-04-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4356, N'VISKEN (Oral Pill)', 1345858, N'Pindolol', N'07fe9cc3-1ef2-420c-b45d-7f1e894b6ef9', CAST(N'2006-12-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4357, N'Vismodegib (Oral Pill)', 42709321, N'vismodegib', N'eb368bb6-80e3-4df9-8a85-91df0a2ada6a', CAST(N'2015-06-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4358, N'VISTARIL (Oral Pill)', 777221, N'Hydroxyzine', N'c271f97f-040e-492b-9194-2c8b74675a95', CAST(N'2014-05-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4359, N'VISUDYNE (Injectable)', 912803, N'Verteporfin', N'952f4c80-50b1-4308-9ee6-311ffefb13df', CAST(N'2015-01-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4360, N'Vitamin B 12 (Injectable)', 1308738, N'Vitamin B 12', N'74141034-87b2-4401-b100-44aee4849fe8', CAST(N'2015-07-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4361, N'Vitamin B 12 (Nasal)', 1308738, N'Vitamin B 12', N'ee2b4869-cd13-489b-b12f-1ce4fe081157', CAST(N'2007-05-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4362, N'Vitamin B6 (Oral Pill)', 1353228, N'Vitamin B6', N'a524c0ff-4893-4df0-aaca-7f690b2bbb13', CAST(N'2014-12-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4363, N'Vitamin K 1 (Injectable)', 19044727, N'Vitamin K 1', N'b08d2ba5-c3c5-47ce-a9d6-64d7cee9483b', CAST(N'2015-04-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4364, N'Vitamin K 1 (Oral Pill)', 19044727, N'Vitamin K 1', N'9b9be805-15a6-4391-96d7-062056567d5b', CAST(N'2014-07-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4365, N'VITEKTA (Oral Pill)', 42874212, N'elvitegravir', N'be87c3bc-97bb-49cb-8053-9b0c756a1965', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4366, N'VITRASE (Injectable)', 19073699, N'Hyaluronidase', N'21fbd12e-4a12-4ad1-ad01-964cd5ec9996', CAST(N'2015-01-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4367, N'VIVACAINE (Injectable)', 732893, N'Bupivacaine', N'b4c60d8e-e350-45b2-9d6b-5815eeb6c994', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4368, N'VIVAGLOBIN (Injectable)', 19117912, N'Immunoglobulin G', N'88eac3b8-55a5-4451-9d25-c30e43ab7068', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4369, N'VIVARIN (Oral Pill)', 1134439, N'Caffeine', N'587358ab-e28c-11e3-8b68-0800200c9a66', CAST(N'2014-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4370, N'VOLTAREN (Topical)', 1124300, N'Diclofenac', N'2280a305-34bd-4f9c-8f31-d6bb6fad90d5', CAST(N'2015-09-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4371, N'VORAXAZE (Injectable)', 42709319, N'glucarpidase', N'acaef5a6-b740-40e3-8ffe-74a75c74745c', CAST(N'2013-04-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4372, N'Voriconazole (Injectable)', 1714277, N'voriconazole', N'08d08721-1f4c-478a-8abf-d9c402d50553', CAST(N'2015-04-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4373, N'Voriconazole (Oral Liquid)', 1714277, N'voriconazole', N'74f51144-c228-440e-8043-c3ec9cb1b42e', CAST(N'2015-03-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4374, N'Voriconazole (Oral Pill)', 1714277, N'voriconazole', N'f1889599-be14-49af-8781-5594e9bd026b', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4375, N'Vortioxetine (Oral Pill)', 44507700, N'vortioxetine', N'4b0700c9-b417-4c3a-b36f-de461e125bd3', CAST(N'2014-09-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4376, N'VUSION (Topical)', 907879, N'Miconazole', N'8d8aaac5-3203-4ade-ae74-e2ea469dae18', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4377, N'VYTONE (Topical)', 975125, N'Hydrocortisone', N'3d7278ee-2c8e-4df1-9372-d43403122945', CAST(N'2013-09-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4378, N'VYTORIN (Oral Pill)', 1526475, N'ezetimibe', N'65e1c3ae-a462-4345-8a28-c7d2c0388af8', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4379, N'VYVANSE (Oral Pill)', 709567, N'Lisdexamfetamine', N'a310fc51-2743-4755-8398-fed5402283f6', CAST(N'2012-01-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4380, N'WAL ZYR 24 HOUR ALLERGY (Oral Liquid)', 1149196, N'Cetirizine', N'416d3ef9-7d36-4f58-815e-178e17d10521', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4381, N'WAL-ACT (Oral Pill)', 1154332, N'Pseudoephedrine', N'7f1ff0eb-78e9-465d-9ec9-a900fe8bd9c4', CAST(N'2015-04-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4382, N'WAL-DRYL (Topical)', 1129625, N'Diphenhydramine', N'0c8d5ee1-96ce-407f-947f-dd98f35fc8ad', CAST(N'2014-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4383, N'WAL-DRYL ALLERGY (Oral Disintegrating)', 1129625, N'Diphenhydramine', N'826c5868-c9bf-42b2-a97e-2e7ae6fae057', CAST(N'2015-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4384, N'WAL-DRYL ALLERGY (Oral Pill)', 1129625, N'Diphenhydramine', N'b484db36-8460-4ea7-b9f5-71cc663b7d77', CAST(N'2015-07-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4385, N'WAL-DRYL CHILDRENS (Oral Liquid)', 1129625, N'Diphenhydramine', N'53e6f72d-15a4-4efe-8b1f-5753fed53df8', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4386, N'WAL-DRYL-D (Oral Pill)', 1129625, N'Diphenhydramine', N'd8ed0a4f-c711-4517-b667-3698e9a5699a', CAST(N'2013-03-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4387, N'WAL-FEX (Oral Pill)', 1153428, N'fexofenadine', N'15ad58b4-4056-4602-a663-d600224ae92d', CAST(N'2015-08-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4388, N'WAL-FINATE-D (Oral Pill)', 1192710, N'Chlorpheniramine', N'6c6a8a9f-7af6-4674-9dac-e17c02759359', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4389, N'WAL-ITIN (Oral Liquid)', 1107830, N'Loratadine', N'bb7392d6-77b9-42d3-82d2-8b21715774c8', CAST(N'2013-01-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4390, N'WAL-ITIN (Oral Pill)', 1107830, N'Loratadine', N'84d752d2-33e4-4b69-a015-8b744f5f8d3c', CAST(N'2014-10-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4391, N'WAL-PHED (Oral Pill)', 1154332, N'Pseudoephedrine', N'54cc6eff-a5aa-4574-97a0-c2e5295cc840', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4392, N'WAL-PHED PE (Oral Pill)', 1135766, N'Phenylephrine', N'b028c23d-4527-47d8-b3e1-04dc6cb16604', CAST(N'2013-10-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4393, N'WAL-PROFEN COLD AND SINUS (Oral Pill)', 1177480, N'Ibuprofen', N'faa26964-a140-4d30-ab1e-19f49f9458ac', CAST(N'2011-11-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4394, N'WAL-SLEEP Z (Oral Pill)', 1129625, N'Diphenhydramine', N'cfb67ead-61f9-4d0f-b2db-792b8df3d148', CAST(N'2012-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4395, N'WAL-TAP CHILDREN''S COLD & ALLERGY (Oral Liquid)', 1130863, N'Brompheniramine', N'3f438f28-d1ad-44da-a573-f1b0824b051c', CAST(N'2015-04-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4396, N'WAL-TUSSIN CHEST CONGESTION (Oral Liquid)', 1163944, N'Guaifenesin', N'2a61f2f5-75f5-4b00-bc02-8492180f28b2', CAST(N'2014-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4397, N'WAL-TUSSIN DM (Oral Liquid)', 1119510, N'Dextromethorphan', N'21119906-3de1-4bee-b656-cec1f30bdd17', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4398, N'WAL-ZAN (Oral Pill)', 961047, N'Ranitidine', N'94d7a63a-8df6-e260-80dd-67e8286e3ce5', CAST(N'2015-08-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4399, N'WAL-ZYR (Oral Pill)', 1149196, N'Cetirizine', N'16625a43-22c1-4754-a7bd-ccc262e2dbd5', CAST(N'2014-01-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4400, N'WAL-ZYR ITCHY EYE (Ophthalmic)', 986117, N'Ketotifen', N'123101a3-ee3c-483a-a347-7200d4c8756d', CAST(N'2013-12-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4401, N'Warfarin (Oral Pill)', 1310149, N'Warfarin', N'de5e4ed4-e9a5-4784-b512-b40199f17bd8', CAST(N'2015-08-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4402, N'Water (Injectable)', 19010309, N'Water', N'ccadcf46-6a6f-436b-9bbc-17e2983a335f', CAST(N'2015-05-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4403, N'Water (Irrigation)', 19010309, N'Water', N'fb20b834-4ca2-4ef0-ab16-8c7e1e3cd3b9', CAST(N'2015-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4404, N'Water (Ophthalmic)', 19010309, N'Water', N'6119892d-ce34-4b3e-9a3e-3f8a94f3fbca', CAST(N'2015-10-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4405, N'Weakleaf bur ragweed pollen extract (Injectable)', 40242456, N'weakleaf bur ragweed pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4406, N'WELCHOL (Oral Liquid)', 1518148, N'colesevelam', N'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', CAST(N'2012-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4407, N'WELCHOL (Oral Pill)', 1518148, N'colesevelam', N'b9df447c-b65b-45b9-873a-07a2ab6e2d1f', CAST(N'2012-02-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4408, N'WELLBUTRIN (Oral Pill)', 750982, N'Bupropion', N'fb118c90-41b7-4bc9-a82f-a4a415faabbb', CAST(N'2014-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4409, N'Western black willow pollen extract (Injectable)', 40228767, N'western black willow pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4410, N'Western ragweed pollen extract (Injectable)', 40162070, N'western ragweed pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4411, N'Western sycamore pollen extract (Injectable)', 40162074, N'western sycamore pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4412, N'White (mexican) dock pollen extract (Injectable)', 40228792, N'white (mexican) dock pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4413, N'White hickory pollen extract (Injectable)', 40162128, N'white hickory pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4414, N'White poplar pollen extract (Injectable)', 40162140, N'white poplar pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4415, N'White sweet clover pollen extract (Injectable)', 40228755, N'white sweet clover pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4416, N'White sweet clover pollen extract/Yellow sweet clover pollen extract (Injectable)', 40228755, N'white sweet clover pollen extract', N'c7d383a6-94b8-4101-8a4c-fa7747a21468', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4417, N'White-rot fungus extract (Injectable)', 40175955, N'white-rot fungus extract', N'6d2006e2-55ea-41db-bd17-ce6d080f28a0', CAST(N'2009-11-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4418, N'Witch Hazel (Topical)', 959196, N'Witch Hazel', N'8492ef49-db8d-46a2-9a92-c4d908c02e1b', CAST(N'2015-07-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4419, N'XALATAN (Ophthalmic)', 954688, N'latanoprost', N'0f4881ec-2984-4853-bc25-5b14c3b79da7', CAST(N'2013-04-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4420, N'XARELTO (Oral Pill)', 40241331, N'Rivaroxaban', N'10db92f9-2300-4a80-836b-673e1ae91610', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4421, N'XELJANZ (Oral Pill)', 42904205, N'tofacitinib', N'68e3d6b2-7838-4d2d-a417-09d919b43e13', CAST(N'2012-11-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4422, N'XELODA (Oral Pill)', 1337620, N'capecitabine', N'a732b303-9bbd-42ba-a7c5-61c21629ba93', CAST(N'2012-06-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4423, N'XENICAL (Oral Pill)', 741530, N'orlistat', N'a9c47f08-bd02-4731-aaf7-42173155b2d0', CAST(N'2014-06-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4424, N'XERAC AC (Topical)', 957393, N'aluminum chloride', N'59e37deb-01da-465f-b806-ff1a76255e71', CAST(N'2014-04-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4425, N'XERESE (Topical)', 1703687, N'Acyclovir', N'3b6ac164-0f1e-4f36-94a1-1fdb07d710f5', CAST(N'2014-12-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4426, N'XIFAXAN (Oral Pill)', 1735947, N'rifaximin', N'523f0320-cc73-445a-a48d-7a181c182307', CAST(N'2013-08-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4427, N'XODOL (Oral Pill)', 1125315, N'Acetaminophen', N'c129d9d2-5511-4e14-bd97-6b824ffe0809', CAST(N'2014-12-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4428, N'XOFIGO (Injectable)', 43526934, N'RADIUM CHLORIDE RA-223', N'a398400e-bd31-41a9-9696-4f7c06569ede', CAST(N'2013-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4429, N'XOLEGEL (Topical)', 985708, N'Ketoconazole', N'855e42bb-b57f-4772-bffa-d766ddcc46ce', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4430, N'XOLIDO (Topical)', 989878, N'Lidocaine', N'f2b463d7-3fcf-4b2c-8ba2-8e51e3290de2', CAST(N'2013-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4431, N'XOLOX (Oral Pill)', 1125315, N'Acetaminophen', N'35b99e65-32d3-43bc-89d9-2e7c7838aa14', CAST(N'2011-04-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4432, N'XOPENEX (Inhalant)', 1192218, N'Levalbuterol', N'7e2644e6-36c5-4988-8e52-bec90e2cd2f0', CAST(N'2015-05-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4433, N'XOTEN-C (Topical)', 939881, N'Capsaicin', N'1dcb64fd-6bc6-4375-8d30-4462e2407934', CAST(N'2011-08-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4434, N'XTANDI (Oral Pill)', 42900250, N'enzalutamide', N'b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf', CAST(N'2015-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4435, N'XYLOCAINE (Injectable)', 989878, N'Lidocaine', N'57964c72-5ffe-4548-bca0-a5b0ca57ecb1', CAST(N'2015-09-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4436, N'XYLOCAINE (Topical)', 989878, N'Lidocaine', N'b2adbf5d-dccd-41ff-9f12-4e606ccb541f', CAST(N'2012-08-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4437, N'XYLOCAINE WITH EPINEPHRINE (Injectable)', 1343916, N'Epinephrine', N'14b55cf9-f7cd-4bb4-a7c5-aba61abadef1', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4438, N'Xylometazoline (Nasal)', 943852, N'xylometazoline', N'b70ba985-2894-493f-a4cf-c9102fe36d97', CAST(N'2012-12-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4439, N'XYREM (Oral Liquid)', 769935, N'Sodium Oxybate', N'926eb076-a4a8-45e4-91ef-411f0aa4f3ca', CAST(N'2015-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4440, N'XYZAL (Oral Pill)', 1136422, N'levocetirizine', N'371ca86d-7ffd-4f20-b6c6-af0a9ff7362f', CAST(N'2010-05-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4441, N'Yellow birch pollen extract (Injectable)', 40172908, N'yellow birch pollen extract', N'3be2afc4-b2dc-4b0f-b314-5ade25922b66', CAST(N'2009-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4442, N'Yellow dock pollen extract (Injectable)', 40162170, N'yellow dock pollen extract', N'd2bb5f95-d146-4062-9998-8e179f0d58c9', CAST(N'2009-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4443, N'Yellow sweet clover pollen extract (Injectable)', 40228782, N'yellow sweet clover pollen extract', N'b8e9933d-eeb3-4379-aaa4-5dfb1179683f', CAST(N'2009-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4444, N'Yellow-Fever Virus Vaccine, 17D-204 strain (Injectable)', 532274, N'Yellow-Fever Virus Vaccine, 17D-204 strain', N'613aaac9-ec18-4b22-addb-599e1193e6f5', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4445, N'YF-VAX (Injectable)', 532274, N'Yellow-Fever Virus Vaccine, 17D-204 strain', N'613aaac9-ec18-4b22-addb-599e1193e6f5', CAST(N'2014-06-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4446, N'Z TUSS AC (Oral Liquid)', 1192710, N'Chlorpheniramine', N'e61129db-2ee2-4e0c-ab2b-c5f26e62abfc', CAST(N'2011-10-03 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4447, N'ZADITOR (Ophthalmic)', 986117, N'Ketotifen', N'ac66b1e4-c2b0-a4c3-09e3-ebd44a2f7c9f', CAST(N'2015-08-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4448, N'Zafirlukast (Oral Pill)', 1111706, N'zafirlukast', N'fb546f57-cd2f-4cbf-8c54-fbc23d47fe0f', CAST(N'2015-06-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4449, N'Zaleplon (Oral Pill)', 720727, N'zaleplon', N'0d1d5797-6a7f-4a25-b13d-009224cc59c1', CAST(N'2015-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4450, N'ZANAFLEX (Oral Pill)', 778474, N'tizanidine', N'b581d63f-61cb-41b6-a7ca-24bd0b32a8ae', CAST(N'2011-04-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4451, N'ZANOSAR (Injectable)', 19136210, N'Streptozocin', N'15d161ed-9e7b-4c92-ba45-0556d2423e67', CAST(N'2012-09-07 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4452, N'ZANTAC (Injectable)', 961047, N'Ranitidine', N'da7dbbe1-4f2d-4466-9573-8d239d112998', CAST(N'2013-07-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4453, N'ZANTAC (Oral Pill)', 961047, N'Ranitidine', N'4da36a98-7363-4a8a-9bfe-5dfa7d2e1268', CAST(N'2015-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4454, N'ZAROXOLYN (Oral Pill)', 907013, N'Metolazone', N'16026409-e821-4680-a114-24c1761d6690', CAST(N'2015-05-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4455, N'ZAVESCA (Oral Pill)', 19045272, N'Miglustat', N'817892d1-ee12-4632-85fc-57ccdf16d7b8', CAST(N'2015-07-30 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4456, N'ZAZOLE (Vaginal)', 941472, N'terconazole', N'f0a917c7-bcc9-4860-b0e8-c7592212f40e', CAST(N'2013-03-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4457, N'ZEASORB (Topical)', 907879, N'Miconazole', N'c8260a34-ea4d-46d9-b9de-0cdd689be5c9', CAST(N'2014-11-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4458, N'ZEBETA (Oral Pill)', 1338005, N'Bisoprolol', N'a11548a0-9c0f-4729-907c-75d8f99a6c85', CAST(N'2010-12-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4459, N'ZEBUTAL (Oral Pill)', 1125315, N'Acetaminophen', N'ac7e8ce7-088f-4d9c-ad52-2af60436d836', CAST(N'2014-01-27 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4460, N'ZECUITY (Transdermal)', 1140643, N'Sumatriptan', N'806a07a0-e042-11df-9548-0002a5d5c51b', CAST(N'2015-08-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4461, N'ZEGERID REFORMULATED AUG 2006 (Oral Pill)', 923645, N'Omeprazole', N'32bed6d8-8a9a-4fb0-a2f6-045892011ee4', CAST(N'2014-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4462, N'ZEGERID WITH MAGNESIUM HYDROXIDE (Chewable)', 992956, N'Magnesium Hydroxide', N'cc8ef530-dd8c-40f5-af7e-4622c9e01d52', CAST(N'2007-03-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4463, N'ZELAPAR (Oral Disintegrating)', 766209, N'Selegiline', N'380d7717-2a79-42f3-a712-efe5e7696ba0', CAST(N'2015-01-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4464, N'ZENATANE (Oral Pill)', 984232, N'Isotretinoin', N'517810a4-76bb-4739-893f-1f2ba94a5d0c', CAST(N'2014-12-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4465, N'ZENCIA WASH (Soap)', 1036252, N'Sulfacetamide', N'f786db9a-b8b7-4696-8e64-33749576a076', CAST(N'2010-08-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4466, N'ZENZEDI (Oral Pill)', 719311, N'Dextroamphetamine', N'd6394df5-f2c9-47eb-b57e-f3e9cfd94f84', CAST(N'2015-05-06 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4467, N'ZERIT (Oral Pill)', 1781406, N'Stavudine', N'8bb73c56-74cb-4602-b9a3-57bd1082b434', CAST(N'2010-08-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4468, N'ZESTORETIC (Oral Pill)', 974166, N'Hydrochlorothiazide', N'0d3a966f-f937-05a8-a90f-5aa52ebbd613', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4469, N'ZESTRIL (Oral Pill)', 1308216, N'Lisinopril', N'fd4889db-5565-4a68-ac2e-3eee62ff8353', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4470, N'ZETIA (Oral Pill)', 1526475, N'ezetimibe', N'd3f0f926-6014-45ab-9cad-54b22c6ff4dc', CAST(N'2015-05-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4471, N'ZFLEX (Oral Pill)', 1125315, N'Acetaminophen', N'4b04b21b-ee68-4c59-91ad-57c3d84e2b09', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4472, N'ZIAC (Oral Pill)', 1338005, N'Bisoprolol', N'238176e5-df10-457b-a5cf-c950a583e748', CAST(N'2011-05-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4473, N'ZIAGEN (Oral Pill)', 1736971, N'abacavir', N'ced433cf-2acf-47ae-9b74-69992c3bc8e0', CAST(N'2013-04-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4474, N'ZIANA (Topical)', 997881, N'Clindamycin', N'78c329f9-f0c9-486d-9e54-0123699fb9e1', CAST(N'2014-11-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4475, N'ZICAM SINUS RELIEF (Nasal)', 925636, N'Oxymetazoline', N'2d8da5d3-8488-4352-b2e6-1fa4d274070f', CAST(N'2014-03-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4476, N'Zidovudine (Oral Liquid)', 1710612, N'Zidovudine', N'e4eee396-fdf4-4e4b-94c2-930af5609a7d', CAST(N'2013-10-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4477, N'Zidovudine (Oral Pill)', 1710612, N'Zidovudine', N'a3c2532a-5880-4d52-b2a1-2e6d4dbd6021', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4478, N'ZILACTIN B (Oral Gel)', 917006, N'Benzocaine', N'34ce5d91-35ff-4f2c-9d6b-ac389895b6b2', CAST(N'2014-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4479, N'ZILACTIN COLD SORE (Oral Gel)', 919681, N'Benzyl Alcohol', N'0910d0d8-dc69-43bb-967d-08cab8ae917b', CAST(N'2014-02-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4480, N'Zinc Acetate (Oral Pill)', 979096, N'Zinc Acetate', N'a0c72bff-20f3-4241-b966-34a95178d1a3', CAST(N'2012-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4481, N'Zinc Acetate (Topical)', 979096, N'Zinc Acetate', N'5365f205-986d-4f67-b768-1efaa8e81168', CAST(N'2015-04-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4482, N'Zinc Gluconate (Injectable)', 19079204, N'Zinc Gluconate', N'ea577e0b-7b57-4ed5-be81-b605f6bcb296', CAST(N'2013-10-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4483, N'Zinc Oxide (Paste)', 911064, N'Zinc Oxide', N'caaac1f0-437d-4185-8670-9f11b9cefe63', CAST(N'2015-09-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4484, N'Zinc Oxide (Topical)', 911064, N'Zinc Oxide', N'4c1e279b-d4ea-46b7-973f-6b55b0665e9f', CAST(N'2015-09-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4485, N'Zinc pyrithione (Shampoo)', 944360, N'zinc pyrithione', N'8772d4e7-e3cb-4265-95f3-d9ce32d0b819', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4486, N'Zinc pyrithione (Topical)', 944360, N'zinc pyrithione', N'9aeada50-2cb2-d113-126a-ddcf05f817b6', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4487, N'Zinc Sulfate (Injectable)', 19044522, N'Zinc Sulfate', N'1a03fe85-fdc9-4847-960f-1fc782d7d493', CAST(N'2014-08-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4488, N'Zinc-DTPA (Injectable)', 19011565, N'Zinc-DTPA', N'9fca10ee-973e-4fe0-aaf5-a0416918a397', CAST(N'2007-01-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4489, N'ZINCON (Shampoo)', 944360, N'zinc pyrithione', N'a53e3460-df29-4313-a2bc-d0e3e7c1d4c9', CAST(N'2012-07-31 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4490, N'ZINGO (Topical)', 989878, N'Lidocaine', N'0fb7864f-be1c-4992-a996-556aef29981f', CAST(N'2015-01-08 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4491, N'ZIOPTAN (Ophthalmic)', 42709325, N'tafluprost', N'd51cbf25-003c-4ba7-86cf-921637ef37a0', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4492, N'Ziprasidone (Injectable)', 712615, N'ziprasidone', N'036db1f2-52b3-42a0-acf9-817b7ba8c724', CAST(N'2015-02-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4493, N'Ziprasidone (Oral Pill)', 712615, N'ziprasidone', N'09086be1-43ee-48bf-a896-21accd485e5f', CAST(N'2015-09-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4494, N'ZIPSOR (Oral Pill)', 1124300, N'Diclofenac', N'c982eca0-fc41-11e1-a9c8-0002a5d5c51b', CAST(N'2015-09-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4495, N'ZIRGAN (Ophthalmic)', 1757803, N'Ganciclovir', N'ea25e7ac-7a93-4ec8-975b-2cec197e1c27', CAST(N'2015-08-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4496, N'ZITHRANOL (Shampoo)', 952538, N'Anthralin', N'253fdee7-5060-4b49-ad26-257eb54cccfa', CAST(N'2014-10-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4497, N'ZITHRANOL-RR (Topical)', 952538, N'Anthralin', N'45bad116-0351-442f-8e49-f11089a955fd', CAST(N'2010-07-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4498, N'ZITHROMAX (Oral Pill)', 1734104, N'Azithromycin', N'931a3c19-23d3-4b65-a422-32bd98de5de4', CAST(N'2013-09-19 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4499, N'ZODRYL AC (Oral Liquid)', 1192710, N'Chlorpheniramine', N'07af42d8-4b0c-4cd1-b299-42dc12980b94', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4500, N'ZODRYL DEC (Oral Liquid)', 1201620, N'Codeine', N'7b0051b0-1ae1-4eb5-9328-75f7b506f7d4', CAST(N'2010-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4501, N'ZOFRAN (Oral Pill)', 1000560, N'Ondansetron', N'3c327aa6-a790-4262-a79b-51856976d560', CAST(N'2011-08-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4502, N'Zoledronic acid (Injectable)', 1524674, N'zoledronic acid', N'2191fccc-9f90-486c-8f30-dc828b62fe15', CAST(N'2015-09-15 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4503, N'ZOLMitriptan (Oral Disintegrating)', 1116031, N'zolmitriptan', N'9842232d-83bf-fa08-5c5c-ba10fe5783e8', CAST(N'2013-05-23 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4504, N'ZOLMitriptan (Oral Pill)', 1116031, N'zolmitriptan', N'df93b636-103f-4fb5-26b6-50f639e29b1d', CAST(N'2015-08-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4505, N'ZOLOFT (Oral Pill)', 739138, N'Sertraline', N'92278f12-0f00-4c0b-bb44-c6dd2dbb5b6c', CAST(N'2013-08-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4506, N'Zolpidem (Oral Pill)', 744740, N'zolpidem', N'b87ea23e-2d54-4d10-8f10-72d4c62f3245', CAST(N'2015-09-25 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4507, N'Zolpidem (Sublingual)', 744740, N'zolpidem', N'913b6cfe-1fb0-44a8-817a-26374bbce995', CAST(N'2015-10-02 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4508, N'Zolpidem XR (Oral Pill)', 744740, N'zolpidem', N'a85400b5-1973-46bc-b092-681ac310f280', CAST(N'2015-06-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4509, N'ZOMIG (Oral Disintegrating)', 1116031, N'zolmitriptan', N'df93b636-103f-4fb5-26b6-50f639e29b1d', CAST(N'2013-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4510, N'ZOMIG (Oral Pill)', 1116031, N'zolmitriptan', N'df93b636-103f-4fb5-26b6-50f639e29b1d', CAST(N'2013-02-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4511, N'ZONALON (Topical)', 738156, N'Doxepin', N'e3a51eb8-cb8b-498f-bf3e-e464cc4acdca', CAST(N'2012-03-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4512, N'ZONATUSS (Oral Pill)', 1136601, N'benzonatate', N'b85137e4-5e8b-4134-9a8e-1e6f9da63f92', CAST(N'2011-11-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4513, N'ZONEGRAN (Oral Pill)', 744798, N'zonisamide', N'd12de43e-3ac3-4335-bc85-70d7366a91eb', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4514, N'Zonisamide (Oral Pill)', 744798, N'zonisamide', N'1e99efc7-cf3f-4368-7afb-41d8dfaeffcf', CAST(N'2015-09-24 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4515, N'ZOOBY FLUORIDE FOAM (Oral Foam)', 19069022, N'Sodium Fluoride', N'fcebb175-d412-4452-9c7c-a38571006bfc', CAST(N'2011-11-14 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4516, N'ZORCAINE (Injectable)', 19080512, N'Articaine', N'da242926-93db-4a2b-b68c-23af13ea747e', CAST(N'2011-09-01 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4517, N'ZOSTRIX (Topical)', 939881, N'Capsaicin', N'19cdf2cb-1429-49a4-b74e-fa77547f6b7f', CAST(N'2014-10-22 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4518, N'ZOSTRIX COLD THERAPY (Topical)', 901656, N'Menthol', N'cf1001ec-b069-4d51-82e7-646a9583a43a', CAST(N'2012-09-21 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4519, N'ZOSTRIX DIABETIC JOINT & ARTHRITIS PAIN RELIEF (Topical)', 939881, N'Capsaicin', N'006d3c32-0a88-4454-aa0f-5dcc2ba9a222', CAST(N'2013-11-20 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4520, N'ZOSYN (Injectable)', 1746114, N'Piperacillin', N'81b0bb45-ce9d-43e7-b181-64315e14be55', CAST(N'2013-11-12 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4521, N'ZOVIRAX (Oral Liquid)', 1703687, N'Acyclovir', N'6fe0ab86-9d81-461e-9c84-6ba724a91318', CAST(N'2014-02-18 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4522, N'ZOVIRAX (Oral Pill)', 1703687, N'Acyclovir', N'6fe0ab86-9d81-461e-9c84-6ba724a91318', CAST(N'2015-02-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4523, N'ZOVIRAX (Topical)', 1703687, N'Acyclovir', N'125dbe4e-94ba-45bd-a714-f9c4b8e8b5c2', CAST(N'2015-02-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4524, N'Z-SLEEP (Oral Liquid)', 1129625, N'Diphenhydramine', N'5cd03e60-877a-41f6-a10c-1c90a29ea762', CAST(N'2014-11-04 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4525, N'Z-SLEEP (Oral Pill)', 1129625, N'Diphenhydramine', N'd6679628-990d-47d3-857e-d87c2a6cd860', CAST(N'2014-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4526, N'ZUPLENZ (Oral Strip)', 1000560, N'Ondansetron', N'ed036bdb-b832-440f-82c7-ade2956b73ee', CAST(N'2015-07-17 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4527, N'ZUTRIPRO (Oral Liquid)', 1192710, N'Chlorpheniramine', N'6b6ab0f8-fbe6-41f3-9af4-2c86cec4eaf7', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4528, N'ZYCLARA (Topical)', 981691, N'imiquimod', N'28cd9b5b-680b-480f-b33d-9c5b52bbf03d', CAST(N'2015-03-26 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4529, N'ZYDELIG (Oral Pill)', 45776944, N'idelalisib', N'efbdafa9-d18c-4e85-b4a2-1e620fc74e50', CAST(N'2015-09-11 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4530, N'ZYDONE (Oral Pill)', 1125315, N'Acetaminophen', N'4aa8c5b1-d71f-4aa8-92b2-1cde266da467', CAST(N'2010-09-13 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4531, N'ZYLOPRIM (Oral Pill)', 1167322, N'Allopurinol', N'342832b5-1a32-4bea-bc49-ab0fd152154e', CAST(N'2009-12-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4532, N'ZYMAXID (Ophthalmic)', 1789276, N'gatifloxacin', N'1160b16c-929a-4e85-9c0b-1d8c96a7678b', CAST(N'2014-10-09 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4533, N'ZyPREXA (Oral Disintegrating)', 785788, N'olanzapine', N'7881c39e-0624-4c14-a6c3-7a9dc81c198c', CAST(N'2012-05-10 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4534, N'ZyPREXA (Oral Pill)', 785788, N'olanzapine', N'250ed608-092c-4e19-884f-a15bdea065d7', CAST(N'2013-09-16 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4535, N'ZyrTEC (Oral Liquid)', 1149196, N'Cetirizine', N'ee8695ac-1293-4e43-ac7c-a64e21a0ca0a', CAST(N'2015-05-28 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4536, N'ZyrTEC (Oral Pill)', 1149196, N'Cetirizine', N'b165db38-b302-4220-8627-77cb07bb078c', CAST(N'2014-10-29 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4537, N'ZYVOX (Oral Pill)', 1736887, N'linezolid', N'e57716ab-7697-46cc-b612-e0e81414128f', CAST(N'2013-04-05 00:00:00.000' AS DateTime), NULL, NULL) -GO -INSERT ${ohdsiSchema}.[drug_labels] ([drug_label_id], [search_name], [ingredient_concept_id], [ingredient_concept_name], [setid], [Date], [cohort_id], [image_url]) VALUES (4538, N'ZZZQUIL (Oral Liquid)', 1129625, N'Diphenhydramine', N'e441c952-cd48-4159-ada2-271ca7541600', CAST(N'2015-03-25 00:00:00.000' AS DateTime), NULL, NULL) -GO diff --git a/src/main/resources/db/migration/sqlserver/V1.0.1.1__penelope.sql b/src/main/resources/db/migration/sqlserver/V1.0.1.1__penelope.sql deleted file mode 100644 index a16d787833..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.1.1__penelope.sql +++ /dev/null @@ -1,42 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].COHORT_CONCEPT_MAP ( - cohort_definition_id int NULL, - cohort_definition_name varchar(255) NULL, - concept_id int NULL -); - -CREATE TABLE [${ohdsiSchema}].[COHORT_STUDY]( - [cohort_study_id] [int] IDENTITY(1,1) NOT NULL, - [cohort_definition_id] [int] NULL, - [study_type] [int] NULL, - [study_name] [varchar](1000) NULL, - [study_URL] [varchar](1000) NULL, - CONSTRAINT [PK_COHORT_STUDY] PRIMARY KEY CLUSTERED - ( - [cohort_study_id] ASC - )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); - -CREATE TABLE [${ohdsiSchema}].[CONCEPT_OF_INTEREST]( - [id] [int] IDENTITY(1,1) NOT NULL, - [concept_id] [int] NULL, - [concept_of_interest_id] [int] NULL, - CONSTRAINT [PK_CONCEPT_OF_INTEREST] PRIMARY KEY CLUSTERED - ( - [id] ASC - ) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); - -CREATE TABLE [${ohdsiSchema}].[drug_labels]( - [drug_label_id] [bigint] NOT NULL, - [search_name] [varchar](255) NULL, - [ingredient_concept_id] [bigint] NULL, - [ingredient_concept_name] [varchar](255) NULL, - [setid] [varchar](255) NULL, - [Date] [datetime] NULL, - [cohort_id] [int] NULL, - [image_url] [varchar](255) NULL, - CONSTRAINT [PK_drug_labels] PRIMARY KEY CLUSTERED - ( - [drug_label_id] ASC - ) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.1.2__conceptset_negative_controls.sql b/src/main/resources/db/migration/sqlserver/V1.0.1.2__conceptset_negative_controls.sql deleted file mode 100644 index 5c3b5c5166..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.1.2__conceptset_negative_controls.sql +++ /dev/null @@ -1,63 +0,0 @@ -IF (EXISTS (SELECT * - FROM INFORMATION_SCHEMA.TABLES - WHERE TABLE_SCHEMA = '${ohdsiSchema}' - AND TABLE_NAME = 'CONCEPT_SET_NEGATIVE_CONTROLS')) -BEGIN - DROP TABLE [${ohdsiSchema}].[CONCEPT_SET_NEGATIVE_CONTROLS] -END - -CREATE TABLE [${ohdsiSchema}].CONCEPT_SET_NEGATIVE_CONTROLS ( - [id] [int] IDENTITY(1,1) NOT NULL, - source_id int NOT NULL, - concept_set_id int NOT NULL, - concept_set_name varchar(255) NOT NULL, - concept_id int NOT NULL, - concept_name varchar(255) NOT NULL, - domain_id varchar(255) NOT NULL, - MEDLINE_CT float NULL, - MEDLINE_CASE float NULL, - MEDLINE_OTHER float NULL, - SEMMEDDB_CT_T float NULL, - SEMMEDDB_CASE_T float NULL, - SEMMEDDB_OTHER_T float NULL, - SEMMEDDB_CT_F float NULL, - SEMMEDDB_CASE_F float NULL, - SEMMEDDB_OTHER_F float NULL, - EU_SPC float NULL, - SPL_ADR float NULL, - AERS float NULL, - AERS_PRR float NULL, - MEDLINE_CT_SCALED float NULL, - MEDLINE_CASE_SCALED float NULL, - MEDLINE_OTHER_SCALED float NULL, - SEMMEDDB_CT_T_SCALED float NULL, - SEMMEDDB_CASE_T_SCALED float NULL, - SEMMEDDB_OTHER_T_SCALED float NULL, - SEMMEDDB_CT_F_SCALED float NULL, - SEMMEDDB_CASE_F_SCALED float NULL, - SEMMEDDB_OTHER_F_SCALED float NULL, - EU_SPC_SCALED float NULL, - SPL_ADR_SCALED float NULL, - AERS_SCALED float NULL, - AERS_PRR_SCALED float NULL, - MEDLINE_CT_BETA float NULL, - MEDLINE_CASE_BETA float NULL, - MEDLINE_OTHER_BETA float NULL, - SEMMEDDB_CT_T_BETA float NULL, - SEMMEDDB_CASE_T_BETA float NULL, - SEMMEDDB_OTHER_T_BETA float NULL, - SEMMEDDB_CT_F_BETA float NULL, - SEMMEDDB_CASE_F_BETA float NULL, - SEMMEDDB_OTHER_F_BETA float NULL, - EU_SPC_BETA float NULL, - SPL_ADR_BETA float NULL, - AERS_BETA float NULL, - AERS_PRR_BETA float NULL, - RAW_PREDICTION float NULL, - PREDICTION float NULL - CONSTRAINT [PK_CONCEPT_SET_NEGATIVE_CONTROLS] PRIMARY KEY CLUSTERED - ( - [id] ASC - ) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.1.3__conceptset_generation_info.sql b/src/main/resources/db/migration/sqlserver/V1.0.1.3__conceptset_generation_info.sql deleted file mode 100644 index bc4f0c2daf..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.1.3__conceptset_generation_info.sql +++ /dev/null @@ -1,29 +0,0 @@ -IF (NOT EXISTS (SELECT * - FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS - WHERE CONSTRAINT_TYPE = 'PRIMARY KEY' - AND TABLE_NAME = 'concept_set' - AND TABLE_SCHEMA = '${ohdsiSchema}' )) -BEGIN - ALTER TABLE [${ohdsiSchema}].[concept_set] ADD CONSTRAINT [PK_concept_set] PRIMARY KEY CLUSTERED - ( - [concept_set_id] ASC - ) -END -; - - -CREATE TABLE [${ohdsiSchema}].[concept_set_generation_info]( - [concept_set_id] INT NOT NULL, - [source_id] INT NOT NULL, - [generation_type] INT NOT NULL, - [start_time] DATETIME NOT NULL, - [execution_duration] INT NULL, - [status] INT NOT NULL, - [is_valid] INT NOT NULL, - CONSTRAINT [PK_concept_set_generation_info] PRIMARY KEY CLUSTERED ( [concept_set_id] ASC, [source_id] ASC ), - CONSTRAINT [FK_concept_set_generation_info_concept_set] FOREIGN KEY([concept_set_id]) - REFERENCES [${ohdsiSchema}].[concept_set] ([concept_set_id]) - ON UPDATE CASCADE - ON DELETE CASCADE -) ON [PRIMARY] -; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.10.0__data-atlas-user.sql b/src/main/resources/db/migration/sqlserver/V1.0.10.0__data-atlas-user.sql deleted file mode 100644 index b895907ef3..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.10.0__data-atlas-user.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(58, 'cohortdefinition:*:put', 'Update cohort definition'); -INSERT INTO ${ohdsiSchema}.SEC_ROLE_PERMISSION (ROLE_ID, PERMISSION_ID) VALUES (5, 58); - -INSERT INTO ${ohdsiSchema}.sec_role(id, name) VALUES (10, 'Atlas users'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT 10, id - FROM ${ohdsiSchema}.sec_permission - WHERE id < 200; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.11.0__data-cohortanalysis-permission.sql b/src/main/resources/db/migration/sqlserver/V1.0.11.0__data-cohortanalysis-permission.sql deleted file mode 100644 index 3a6580b026..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.11.0__data-cohortanalysis-permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.sec_permission_id_seq START WITH 500; -ALTER TABLE ${ohdsiSchema}.sec_permission ADD CONSTRAINT permission_unique UNIQUE (value); - -insert into ${ohdsiSchema}.sec_permission (id, value, description) -values (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortanalysis:post', 'Create Cohort analyses'); - -ALTER TABLE ${ohdsiSchema}.sec_role_permission ADD CONSTRAINT role_permission_unique UNIQUE (role_id, permission_id); - -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'cohortanalysis:post' - AND sr.name IN ('admin', 'cohort creator', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.11.1__schema-executions.sql b/src/main/resources/db/migration/sqlserver/V1.0.11.1__schema-executions.sql deleted file mode 100644 index 0a5ca683ed..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.11.1__schema-executions.sql +++ /dev/null @@ -1,38 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.analysis_execution( - id INTEGER IDENTITY, - analysis_id INTEGER NOT NULL, - analysis_type VARCHAR(250) NOT NULL, - duration INTEGER NOT NULL, - executed DATETIME, - sec_user_id INTEGER, - executionStatus VARCHAR(250), - update_password VARCHAR(250), - source_id INTEGER -); - -DELETE FROM ${ohdsiSchema}.analysis_execution WHERE analysis_type = 'CCA'; - -INSERT INTO ${ohdsiSchema}.analysis_execution(analysis_id, analysis_type, duration, executed, sec_user_id, source_id, executionStatus, update_password) - SELECT cca.cca_id, 'CCA', cca.execution_duration, cca.executed, cca.sec_user_id, cca.source_id, - CASE cca.execution_status - WHEN 0 THEN 'PENDING' - WHEN 1 THEN 'STARTED' - WHEN 2 THEN 'RUNNING' - WHEN 3 THEN 'COMPLETED' - WHEN 4 THEN 'FAILED' - END as status, ext.update_password FROM - ${ohdsiSchema}.cca_execution cca LEFT JOIN ${ohdsiSchema}.cca_execution_ext ext ON ext.cca_execution_id = cca.cca_id; - -UPDATE ${ohdsiSchema}.input_files SET execution_id = - (SELECT TOP 1 a.id FROM ${ohdsiSchema}.analysis_execution a JOIN ${ohdsiSchema}.cca_execution cca - ON cca.cca_id = a.analysis_id AND a.analysis_type = 'CCA' AND a.executed = cca.executed - WHERE cca.cca_execution_id = ${ohdsiSchema}.input_files.cca_execution_id); - -UPDATE ${ohdsiSchema}.output_files SET execution_id = - (SELECT TOP 1 a.id FROM ${ohdsiSchema}.analysis_execution a JOIN ${ohdsiSchema}.cca_execution cca - ON cca.cca_id = a.analysis_id AND a.analysis_type = 'CCA' AND a.executed = cca.executed - WHERE cca.cca_execution_id = ${ohdsiSchema}.output_files.cca_execution_id); - -ALTER TABLE ${ohdsiSchema}.input_files ALTER COLUMN cca_execution_id INTEGER NOT NULL; - -ALTER TABLE ${ohdsiSchema}.output_files ALTER COLUMN cca_execution_id INTEGER NOT NULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.2.0__cohort_feasiblity.sql b/src/main/resources/db/migration/sqlserver/V1.0.2.0__cohort_feasiblity.sql deleted file mode 100644 index cf3b8da49e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.2.0__cohort_feasiblity.sql +++ /dev/null @@ -1,30 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[cohort_inclusion]( - [cohort_definition_id] [int] NOT NULL, - [rule_sequence] [int] NOT NULL, - [name] [varchar](255) NULL, - [description] [varchar](1000) NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[cohort_inclusion_result]( - [cohort_definition_id] [int] NOT NULL, - [inclusion_rule_mask] [bigint] NOT NULL, - [person_count] [bigint] NOT NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[cohort_inclusion_stats]( - [cohort_definition_id] [int] NOT NULL, - [rule_sequence] [int] NOT NULL, - [person_count] [bigint] NOT NULL, - [gain_count] [bigint] NOT NULL, - [person_total] [bigint] NOT NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[cohort_summary_stats]( - [cohort_definition_id] [int] NOT NULL, - [base_count] [bigint] NOT NULL, - [final_count] [bigint] NOT NULL -) -; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.3.1__comparative_cohort_analysis.sql b/src/main/resources/db/migration/sqlserver/V1.0.3.1__comparative_cohort_analysis.sql deleted file mode 100644 index a71b3b5a05..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.3.1__comparative_cohort_analysis.sql +++ /dev/null @@ -1,272 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[cca]( - [cca_id] [int] IDENTITY (1, 1) NOT NULL, - [name] [varchar](255) NULL, - [treatment_id] [int] NOT NULL, - [comparator_id] [int] NOT NULL, - [outcome_id] [int] NOT NULL, - [model_type] [varchar](50) NOT NULL, - [time_at_risk_start] [int] NOT NULL, - [time_at_risk_end] [int] NOT NULL, - [add_exposure_days_to_end] [int] NOT NULL, - [minimum_washout_period] [int] NOT NULL, - [minimum_days_at_risk] [int] NOT NULL, - [rm_subjects_in_both_cohorts] [int] NOT NULL, - [rm_prior_outcomes] [int] NOT NULL, - [ps_adjustment] [int] NOT NULL, - [ps_exclusion_id] [int] NOT NULL, - [ps_inclusion_id] [int] NOT NULL, - [ps_demographics] [int] NOT NULL, - [ps_demographics_gender] [int] NOT NULL, - [ps_demographics_race] [int] NOT NULL, - [ps_demographics_ethnicity] [int] NOT NULL, - [ps_demographics_age] [int] NOT NULL, - [ps_demographics_year] [int] NOT NULL, - [ps_demographics_month] [int] NOT NULL, - [ps_trim] [int] NOT NULL, - [ps_trim_fraction] [float] NOT NULL, - [ps_match] [int] NOT NULL, - [ps_match_max_ratio] [int] NOT NULL, - [ps_strat] [int] NOT NULL, - [ps_strat_num_strata] [int] NOT NULL, - [ps_condition_occ] [int] NOT NULL, - [ps_condition_occ_365d] [int] NOT NULL, - [ps_condition_occ_30d] [int] NOT NULL, - [ps_condition_occ_inpt180d] [int] NOT NULL, - [ps_condition_era] [int] NOT NULL, - [ps_condition_era_ever] [int] NOT NULL, - [ps_condition_era_overlap] [int] NOT NULL, - [ps_condition_group] [int] NOT NULL, - [ps_condition_group_meddra] [int] NOT NULL, - [ps_condition_group_snomed] [int] NOT NULL, - [ps_drug_exposure] [int] NOT NULL, - [ps_drug_exposure_365d] [int] NOT NULL, - [ps_drug_exposure_30d] [int] NOT NULL, - [ps_drug_era] [int] NOT NULL, - [ps_drug_era_365d] [int] NOT NULL, - [ps_drug_era_30d] [int] NOT NULL, - [ps_drug_era_overlap] [int] NOT NULL, - [ps_drug_era_ever] [int] NOT NULL, - [ps_drug_group] [int] NOT NULL, - [ps_procedure_occ] [int] NOT NULL, - [ps_procedure_occ_365d] [int] NOT NULL, - [ps_procedure_occ_30d] [int] NOT NULL, - [ps_procedure_group] [int] NOT NULL, - [ps_observation] [int] NOT NULL, - [ps_observation_365d] [int] NOT NULL, - [ps_observation_30d] [int] NOT NULL, - [ps_observation_count_365d] [int] NOT NULL, - [ps_measurement] [int] NOT NULL, - [ps_measurement_365d] [int] NOT NULL, - [ps_measurement_30d] [int] NOT NULL, - [ps_measurement_count_365d] [int] NOT NULL, - [ps_measurement_below] [int] NOT NULL, - [ps_measurement_above] [int] NOT NULL, - [ps_concept_counts] [int] NOT NULL, - [ps_risk_scores] [int] NOT NULL, - [ps_risk_scores_charlson] [int] NOT NULL, - [ps_risk_scores_dcsi] [int] NOT NULL, - [ps_risk_scores_chads2] [int] NOT NULL, - [ps_risk_scores_chads2vasc] [int] NOT NULL, - [ps_interaction_year] [int] NOT NULL, - [ps_interaction_month] [int] NOT NULL, - [om_covariates] [int] NOT NULL, - [om_exclusion_id] [int] NOT NULL, - [om_inclusion_id] [int] NOT NULL, - [om_demographics] [int] NOT NULL, - [om_demographics_gender] [int] NOT NULL, - [om_demographics_race] [int] NOT NULL, - [om_demographics_ethnicity] [int] NOT NULL, - [om_demographics_age] [int] NOT NULL, - [om_demographics_year] [int] NOT NULL, - [om_demographics_month] [int] NOT NULL, - [om_trim] [int] NOT NULL, - [om_trim_fraction] [float] NOT NULL, - [om_match] [int] NOT NULL, - [om_match_max_ratio] [int] NOT NULL, - [om_strat] [int] NOT NULL, - [om_strat_num_strata] [int] NOT NULL, - [om_condition_occ] [int] NOT NULL, - [om_condition_occ_365d] [int] NOT NULL, - [om_condition_occ_30d] [int] NOT NULL, - [om_condition_occ_inpt180d] [int] NOT NULL, - [om_condition_era] [int] NOT NULL, - [om_condition_era_ever] [int] NOT NULL, - [om_condition_era_overlap] [int] NOT NULL, - [om_condition_group] [int] NOT NULL, - [om_condition_group_meddra] [int] NOT NULL, - [om_condition_group_snomed] [int] NOT NULL, - [om_drug_exposure] [int] NOT NULL, - [om_drug_exposure_365d] [int] NOT NULL, - [om_drug_exposure_30d] [int] NOT NULL, - [om_drug_era] [int] NOT NULL, - [om_drug_era_365d] [int] NOT NULL, - [om_drug_era_30d] [int] NOT NULL, - [om_drug_era_overlap] [int] NOT NULL, - [om_drug_era_ever] [int] NOT NULL, - [om_drug_group] [int] NOT NULL, - [om_procedure_occ] [int] NOT NULL, - [om_procedure_occ_365d] [int] NOT NULL, - [om_procedure_occ_30d] [int] NOT NULL, - [om_procedure_group] [int] NOT NULL, - [om_observation] [int] NOT NULL, - [om_observation_365d] [int] NOT NULL, - [om_observation_30d] [int] NOT NULL, - [om_observation_count_365d] [int] NOT NULL, - [om_measurement] [int] NOT NULL, - [om_measurement_365d] [int] NOT NULL, - [om_measurement_30d] [int] NOT NULL, - [om_measurement_count_365d] [int] NOT NULL, - [om_measurement_below] [int] NOT NULL, - [om_measurement_above] [int] NOT NULL, - [om_concept_counts] [int] NOT NULL, - [om_risk_scores] [int] NOT NULL, - [om_risk_scores_charlson] [int] NOT NULL, - [om_risk_scores_dcsi] [int] NOT NULL, - [om_risk_scores_chads2] [int] NOT NULL, - [om_risk_scores_chads2vasc] [int] NOT NULL, - [om_interaction_year] [int] NOT NULL, - [om_interaction_month] [int] NOT NULL, - [del_covariates_small_count] [int] NOT NULL, - [negative_control_id] [int] NOT NULL, - [created] [datetime] NOT NULL, - [modified] [datetime] NOT NULL, - [sec_user_id] [int] NOT NULL -); - -CREATE TABLE [${ohdsiSchema}].[cca_execution]( - [cca_execution_id] [int] IDENTITY (1, 1) NOT NULL, - [cca_id] [int] NOT NULL, - [source_id] int NOT NULL, - [treatment_id] [int] NOT NULL, - [comparator_id] [int] NOT NULL, - [outcome_id] [int] NOT NULL, - [model_type] [varchar](50) NOT NULL, - [time_at_risk_start] [int] NOT NULL, - [time_at_risk_end] [int] NOT NULL, - [add_exposure_days_to_end] [int] NOT NULL, - [minimum_washout_period] [int] NOT NULL, - [minimum_days_at_risk] [int] NOT NULL, - [rm_subjects_in_both_cohorts] [int] NOT NULL, - [rm_prior_outcomes] [int] NOT NULL, - [ps_adjustment] [int] NOT NULL, - [ps_exclusion_id] [int] NOT NULL, - [ps_inclusion_id] [int] NOT NULL, - [ps_demographics] [int] NOT NULL, - [ps_demographics_gender] [int] NOT NULL, - [ps_demographics_race] [int] NOT NULL, - [ps_demographics_ethnicity] [int] NOT NULL, - [ps_demographics_age] [int] NOT NULL, - [ps_demographics_year] [int] NOT NULL, - [ps_demographics_month] [int] NOT NULL, - [ps_trim] [int] NOT NULL, - [ps_trim_fraction] [float] NOT NULL, - [ps_match] [int] NOT NULL, - [ps_match_max_ratio] [int] NOT NULL, - [ps_strat] [int] NOT NULL, - [ps_strat_num_strata] [int] NOT NULL, - [ps_condition_occ] [int] NOT NULL, - [ps_condition_occ_365d] [int] NOT NULL, - [ps_condition_occ_30d] [int] NOT NULL, - [ps_condition_occ_inpt180d] [int] NOT NULL, - [ps_condition_era] [int] NOT NULL, - [ps_condition_era_ever] [int] NOT NULL, - [ps_condition_era_overlap] [int] NOT NULL, - [ps_condition_group] [int] NOT NULL, - [ps_condition_group_meddra] [int] NOT NULL, - [ps_condition_group_snomed] [int] NOT NULL, - [ps_drug_exposure] [int] NOT NULL, - [ps_drug_exposure_365d] [int] NOT NULL, - [ps_drug_exposure_30d] [int] NOT NULL, - [ps_drug_era] [int] NOT NULL, - [ps_drug_era_365d] [int] NOT NULL, - [ps_drug_era_30d] [int] NOT NULL, - [ps_drug_era_overlap] [int] NOT NULL, - [ps_drug_era_ever] [int] NOT NULL, - [ps_drug_group] [int] NOT NULL, - [ps_procedure_occ] [int] NOT NULL, - [ps_procedure_occ_365d] [int] NOT NULL, - [ps_procedure_occ_30d] [int] NOT NULL, - [ps_procedure_group] [int] NOT NULL, - [ps_observation] [int] NOT NULL, - [ps_observation_365d] [int] NOT NULL, - [ps_observation_30d] [int] NOT NULL, - [ps_observation_count_365d] [int] NOT NULL, - [ps_measurement] [int] NOT NULL, - [ps_measurement_365d] [int] NOT NULL, - [ps_measurement_30d] [int] NOT NULL, - [ps_measurement_count_365d] [int] NOT NULL, - [ps_measurement_below] [int] NOT NULL, - [ps_measurement_above] [int] NOT NULL, - [ps_concept_counts] [int] NOT NULL, - [ps_risk_scores] [int] NOT NULL, - [ps_risk_scores_charlson] [int] NOT NULL, - [ps_risk_scores_dcsi] [int] NOT NULL, - [ps_risk_scores_chads2] [int] NOT NULL, - [ps_risk_scores_chads2vasc] [int] NOT NULL, - [ps_interaction_year] [int] NOT NULL, - [ps_interaction_month] [int] NOT NULL, - [om_covariates] [int] NOT NULL, - [om_exclusion_id] [int] NOT NULL, - [om_inclusion_id] [int] NOT NULL, - [om_demographics] [int] NOT NULL, - [om_demographics_gender] [int] NOT NULL, - [om_demographics_race] [int] NOT NULL, - [om_demographics_ethnicity] [int] NOT NULL, - [om_demographics_age] [int] NOT NULL, - [om_demographics_year] [int] NOT NULL, - [om_demographics_month] [int] NOT NULL, - [om_trim] [int] NOT NULL, - [om_trim_fraction] [float] NOT NULL, - [om_match] [int] NOT NULL, - [om_match_max_ratio] [int] NOT NULL, - [om_strat] [int] NOT NULL, - [om_strat_num_strata] [int] NOT NULL, - [om_condition_occ] [int] NOT NULL, - [om_condition_occ_365d] [int] NOT NULL, - [om_condition_occ_30d] [int] NOT NULL, - [om_condition_occ_inpt180d] [int] NOT NULL, - [om_condition_era] [int] NOT NULL, - [om_condition_era_ever] [int] NOT NULL, - [om_condition_era_overlap] [int] NOT NULL, - [om_condition_group] [int] NOT NULL, - [om_condition_group_meddra] [int] NOT NULL, - [om_condition_group_snomed] [int] NOT NULL, - [om_drug_exposure] [int] NOT NULL, - [om_drug_exposure_365d] [int] NOT NULL, - [om_drug_exposure_30d] [int] NOT NULL, - [om_drug_era] [int] NOT NULL, - [om_drug_era_365d] [int] NOT NULL, - [om_drug_era_30d] [int] NOT NULL, - [om_drug_era_overlap] [int] NOT NULL, - [om_drug_era_ever] [int] NOT NULL, - [om_drug_group] [int] NOT NULL, - [om_procedure_occ] [int] NOT NULL, - [om_procedure_occ_365d] [int] NOT NULL, - [om_procedure_occ_30d] [int] NOT NULL, - [om_procedure_group] [int] NOT NULL, - [om_observation] [int] NOT NULL, - [om_observation_365d] [int] NOT NULL, - [om_observation_30d] [int] NOT NULL, - [om_observation_count_365d] [int] NOT NULL, - [om_measurement] [int] NOT NULL, - [om_measurement_365d] [int] NOT NULL, - [om_measurement_30d] [int] NOT NULL, - [om_measurement_count_365d] [int] NOT NULL, - [om_measurement_below] [int] NOT NULL, - [om_measurement_above] [int] NOT NULL, - [om_concept_counts] [int] NOT NULL, - [om_risk_scores] [int] NOT NULL, - [om_risk_scores_charlson] [int] NOT NULL, - [om_risk_scores_dcsi] [int] NOT NULL, - [om_risk_scores_chads2] [int] NOT NULL, - [om_risk_scores_chads2vasc] [int] NOT NULL, - [om_interaction_year] [int] NOT NULL, - [om_interaction_month] [int] NOT NULL, - [del_covariates_small_count] [int] NOT NULL, - [negative_control_id] [int] NOT NULL, - [executed] [datetime] NOT NULL, - [execution_duration] [int] NOT NULL, - [execution_status] [int] NOT NULL, - [sec_user_id] [int] NOT NULL -); - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.4.0__ir_analysis.sql b/src/main/resources/db/migration/sqlserver/V1.0.4.0__ir_analysis.sql deleted file mode 100644 index cdbc0aa7f0..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.4.0__ir_analysis.sql +++ /dev/null @@ -1,63 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[ir_analysis]( - [id] [int] IDENTITY(1,1) NOT NULL, - [name] [varchar](255) NOT NULL, - [description] [varchar](1000) NULL, - [created_by] [varchar](255) NULL, - [created_date] [datetime] NULL, - [modified_by] [varchar](255) NULL, - [modified_date] [datetime] NULL, - CONSTRAINT [PK_ir_analysis] PRIMARY KEY CLUSTERED ([id] ASC) -) -; - -CREATE TABLE [${ohdsiSchema}].[ir_analysis_details]( - [id] [int], - [expression] [varchar](max) NOT NULL, - CONSTRAINT PK_ir_analysis_details PRIMARY KEY (id), - CONSTRAINT FK_irad_ira - FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.ir_analysis(id) -) -; - -CREATE TABLE [${ohdsiSchema}].[ir_execution] ( - [analysis_id] INT NOT NULL, - [source_id] INT NOT NULL, - [start_time] DATETIME NULL, - [execution_duration] INT NULL, - [status] INT NOT NULL, - [is_valid] BIT NOT NULL, - [message] VARCHAR(2000) NULL, - CONSTRAINT [PK_ir_execution] PRIMARY KEY CLUSTERED ([analysis_id] ASC, [source_id] ASC) -) -; - -CREATE TABLE ${ohdsiSchema}.ir_strata( - analysis_id int NOT NULL, - strata_sequence int NOT NULL, - name varchar(255) NULL, - description varchar(1000) NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[ir_analysis_result]( - [analysis_id] [int] NOT NULL, - [target_id] int NOT NULL, - [outcome_id] int NOT NULL, - [strata_mask] [bigint] NOT NULL, - [person_count] [bigint] NOT NULL, - [time_at_risk] [bigint] NOT NULL, - [cases] [bigint] NOT NULL -) -; - -CREATE TABLE [${ohdsiSchema}].[ir_analysis_strata_stats]( - [analysis_id] [int] NOT NULL, - [target_id] int NOT NULL, - [outcome_id] int NOT NULL, - [strata_sequence] [int] NOT NULL, - [person_count] [bigint] NOT NULL, - [time_at_risk] [bigint] NOT NULL, - [cases] [bigint] NOT NULL -) -; - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.4.1__ir_dist.sql b/src/main/resources/db/migration/sqlserver/V1.0.4.1__ir_dist.sql deleted file mode 100644 index 14a8bf4baf..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.4.1__ir_dist.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.ir_analysis_dist ( - analysis_id int NOT NULL, - target_id int NOT NULL, - outcome_id int NOT NULL, - strata_sequence int NULL, - dist_type int NOT NULL, - total bigint NOT NULL, - avg_value float NOT NULL, - std_dev float NOT NULL, - min_value int NOT NULL, - p10_value int NOT NULL, - p25_value int NOT NULL, - median_value int NOT NULL, - p75_value int NOT NULL, - p90_value int NOT NULL, - max_value int NULL -) -; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.5.0__rename_system_user_to_anonymous.sql b/src/main/resources/db/migration/sqlserver/V1.0.5.0__rename_system_user_to_anonymous.sql deleted file mode 100644 index 1d3bb09ae3..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.5.0__rename_system_user_to_anonymous.sql +++ /dev/null @@ -1,6 +0,0 @@ -UPDATE ${ohdsiSchema}.cohort_definition SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.cohort_definition SET modified_by = 'anonymous' WHERE modified_by = 'system'; -UPDATE ${ohdsiSchema}.feasibility_study SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.feasibility_study SET modified_by = 'anonymous' WHERE modified_by = 'system'; -UPDATE ${ohdsiSchema}.ir_analysis SET created_by = 'anonymous' WHERE created_by = 'system'; -UPDATE ${ohdsiSchema}.ir_analysis SET modified_by = 'anonymous' WHERE modified_by = 'system'; diff --git a/src/main/resources/db/migration/sqlserver/V1.0.6.0.1__schema-add-analysis_execution_password.sql b/src/main/resources/db/migration/sqlserver/V1.0.6.0.1__schema-add-analysis_execution_password.sql deleted file mode 100644 index 8a9e88167e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.6.0.1__schema-add-analysis_execution_password.sql +++ /dev/null @@ -1,37 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cca_execution_ext ( - cca_execution_id INTEGER NOT NULL, - update_password VARCHAR(250) -); - -ALTER TABLE ${ohdsiSchema}.cca_execution - ADD CONSTRAINT cca_execution_pk PRIMARY KEY (cca_execution_id); - -CREATE TABLE ${ohdsiSchema}.input_files -( - id BIGINT, - cca_execution_id INTEGER NOT NULL, - file_contents VARBINARY(max), - file_name VARCHAR(255) NOT NULL, - execution_id INTEGER, - CONSTRAINT input_files_pkey PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.input_files - ADD CONSTRAINT fk_sof_cca_execution FOREIGN KEY (cca_execution_id) -REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -CREATE TABLE ${ohdsiSchema}.output_files -( - id BIGINT, - cca_execution_id INTEGER NOT NULL, - file_contents VARBINARY(max), - file_name VARCHAR(255) NOT NULL, - execution_id INTEGER, - CONSTRAINT output_files_pkey PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.output_files - ADD CONSTRAINT fk_sif_cca_execution FOREIGN KEY (cca_execution_id) -REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) -ON UPDATE NO ACTION ON DELETE CASCADE; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V1.0.6.0__schema-create-plp.sql b/src/main/resources/db/migration/sqlserver/V1.0.6.0__schema-create-plp.sql deleted file mode 100644 index fb5a6a2152..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.6.0__schema-create-plp.sql +++ /dev/null @@ -1,99 +0,0 @@ -CREATE TABLE [${ohdsiSchema}].[plp] -( - plp_id [int] IDENTITY(1,1) NOT NULL, - name [varchar](255) NOT NULL, - treatment_id [int] NOT NULL, - outcome_id [int] NOT NULL, - model_type [varchar](255) NOT NULL, - time_at_risk_start [int] NOT NULL, - time_at_risk_end [int] NOT NULL, - add_exposure_days_to_end [int] NOT NULL, - minimum_washout_period [int] NOT NULL, - minimum_days_at_risk [int] NOT NULL, - require_time_at_risk [int] NOT NULL, - minimum_time_at_risk [int] NOT NULL, - [sample] [int] NOT NULL, - sample_size [int] NOT NULL, - first_exposure_only [int] NOT NULL, - include_all_outcomes [int] NOT NULL, - rm_prior_outcomes [int] NOT NULL, - prior_outcome_lookback [int] NOT NULL, - test_split [int] NOT NULL, - test_fraction [varchar](255) NULL, - n_fold [varchar](255) NULL, - mo_alpha [varchar](255) NULL, - mo_class_weight [varchar](255) NULL, - mo_index_folder [varchar](255) NULL, - mo_k [varchar](255) NULL, - mo_learn_rate [varchar](255) NULL, - mo_learning_rate [varchar](255) NULL, - mo_max_depth [varchar](255) NULL, - mo_min_impurity_split [varchar](255) NULL, - mo_min_rows [varchar](255) NULL, - mo_min_samples_leaf [varchar](255) NULL, - mo_min_samples_split [varchar](255) NULL, - mo_mtries [varchar](255) NULL, - mo_nestimators [varchar](255) NULL, - mo_nthread [varchar](255) NULL, - mo_ntrees [varchar](255) NULL, - mo_plot [varchar](255) NULL, - mo_seed [varchar](255) NULL, - mo_size [varchar](255) NULL, - mo_variance [varchar](255) NULL, - mo_var_imp [varchar](255) NULL, - cv_exclusion_id [int] NOT NULL, - cv_inclusion_id [int] NOT NULL, - cv_demographics [int] NOT NULL, - cv_demographics_gender [int] NOT NULL, - cv_demographics_race [int] NOT NULL, - cv_demographics_ethnicity [int] NOT NULL, - cv_demographics_age [int] NOT NULL, - cv_demographics_year [int] NOT NULL, - cv_demographics_month [int] NOT NULL, - cv_condition_occ [int] NOT NULL, - cv_condition_occ_365d [int] NOT NULL, - cv_condition_occ_30d [int] NOT NULL, - cv_condition_occ_inpt180d [int] NOT NULL, - cv_condition_era [int] NOT NULL, - cv_condition_era_ever [int] NOT NULL, - cv_condition_era_overlap [int] NOT NULL, - cv_condition_group [int] NOT NULL, - cv_condition_group_meddra [int] NOT NULL, - cv_condition_group_snomed [int] NOT NULL, - cv_drug_exposure [int] NOT NULL, - cv_drug_exposure_365d [int] NOT NULL, - cv_drug_exposure_30d [int] NOT NULL, - cv_drug_era [int] NOT NULL, - cv_drug_era_365d [int] NOT NULL, - cv_drug_era_30d [int] NOT NULL, - cv_drug_era_overlap [int] NOT NULL, - cv_drug_era_ever [int] NOT NULL, - cv_drug_group [int] NOT NULL, - cv_procedure_occ [int] NOT NULL, - cv_procedure_occ_365d [int] NOT NULL, - cv_procedure_occ_30d [int] NOT NULL, - cv_procedure_group [int] NOT NULL, - cv_observation [int] NOT NULL, - cv_observation_365d [int] NOT NULL, - cv_observation_30d [int] NOT NULL, - cv_observation_count_365d [int] NOT NULL, - cv_measurement [int] NOT NULL, - cv_measurement_365d [int] NOT NULL, - cv_measurement_30d [int] NOT NULL, - cv_measurement_count_365d [int] NOT NULL, - cv_measurement_below [int] NOT NULL, - cv_measurement_above [int] NOT NULL, - cv_concept_counts [int] NOT NULL, - cv_risk_scores [int] NOT NULL, - cv_risk_scores_charlson [int] NOT NULL, - cv_risk_scores_dcsi [int] NOT NULL, - cv_risk_scores_chads2 [int] NOT NULL, - cv_risk_scores_chads2vasc [int] NOT NULL, - cv_interaction_year [int] NOT NULL, - cv_interaction_month [int] NOT NULL, - del_covariates_small_count [int] NOT NULL, - created [datetime] NOT NULL, - modified [datetime] NULL, - created_by [varchar](255) NULL, - modified_by [varchar](255) NULL -) diff --git a/src/main/resources/db/migration/sqlserver/V1.0.7.0__alter_cohort_generation_info.sql b/src/main/resources/db/migration/sqlserver/V1.0.7.0__alter_cohort_generation_info.sql deleted file mode 100644 index 16101861b3..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.7.0__alter_cohort_generation_info.sql +++ /dev/null @@ -1,14 +0,0 @@ -ALTER TABLE [${ohdsiSchema}].cohort_generation_info - ADD include_features bit, - fail_message varchar(2000), - person_count bigint, - record_count bigint -GO - -UPDATE [${ohdsiSchema}].cohort_generation_info set include_features = 0 -GO - -ALTER TABLE [${ohdsiSchema}].cohort_generation_info - ALTER COLUMN include_features bit not null -GO - diff --git a/src/main/resources/db/migration/sqlserver/V1.0.8.0__cohort_features_results.sql b/src/main/resources/db/migration/sqlserver/V1.0.8.0__cohort_features_results.sql deleted file mode 100644 index 98d57c02da..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.8.0__cohort_features_results.sql +++ /dev/null @@ -1,44 +0,0 @@ -create table [${ohdsiSchema}].cohort_features_dist -( - cohort_definition_id bigint, - covariate_id bigint, - count_value float, - min_value float, - max_value float, - average_value float, - standard_deviation float, - median_value float, - p10_value float, - p25_value float, - p75_value float, - p90_value float -); - -create table [${ohdsiSchema}].cohort_features -( - cohort_definition_id bigint, - covariate_id bigint, - sum_value bigint, - average_value float -); - -create table [${ohdsiSchema}].cohort_features_ref -( - cohort_definition_id bigint, - covariate_id bigint, - covariate_name varchar(1000), - analysis_id int, - concept_id int -); - -create table [${ohdsiSchema}].cohort_features_analysis_ref -( - cohort_definition_id bigint, - analysis_id int, - analysis_name varchar(1000), - domain_id varchar(100), - start_day int, - end_day int, - is_binary char, - missing_means_zero char -); diff --git a/src/main/resources/db/migration/sqlserver/V1.0.9.0__data-permissions.sql b/src/main/resources/db/migration/sqlserver/V1.0.9.0__data-permissions.sql deleted file mode 100644 index 4d1330072a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V1.0.9.0__data-permissions.sql +++ /dev/null @@ -1,76 +0,0 @@ -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(34, 'conceptset:get', 'List of Concept Sets'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 34); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 34); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(35, 'conceptset:*:get', 'Get conceptset expression'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 35); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 35); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(36, 'ir:get', 'List of incidence rates'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 36); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(37, 'ir:*:get', 'Get incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 37); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(38, 'ir:post', 'Create new incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 38); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(39, 'comparativecohortanalysis:get', 'List estimations'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 39); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(40, 'comparativecohortanalysis:*:get', 'Get estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 40); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(41, 'comparativecohortanalysis:post', 'Create new estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 41); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(42, 'plp:get', 'List of population level predictions'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 42); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(43, 'plp:*:get', 'Get population level prediction'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 43); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(44, 'plp:post', 'Create new plp'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 44); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(45, 'source:*:get', 'Read configuration'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 45); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(46, 'vocabulary:*:search:*:get', 'Search vocabulary'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 46); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(47, 'cdmresults:*:get', 'View CDM results'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 47); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(48, 'cohortanalysis:get', 'Get Cohort analyses'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(49, 'cohortanalysis:*:get', 'Get Cohort analyses summary or preview'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 48); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 49); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(100, 'cohortresults:*:get', 'Get Cohort reports'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 100); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(101, 'evidence:*:get', 'Get evidence'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 101); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(102, 'executionservice:*:get', 'Get Execution Service Job status'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(103, 'executionservice:execution:run:post', 'Start Execution Service Job'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 102); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 103); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(104, 'feasibility:get', 'List of Feasibilities'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(105, 'feasibility:*:get', 'View Feasibility'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(106, 'feasibility:*:put', 'Edit Feasibility'); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(107, 'feasibility:*:delete', 'Delete Feasibility'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 104); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 105); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 106); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 107); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(108, 'featureextraction:*:get', 'Access to Feature Extraction'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 108); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(109, 'job:get', 'Find Job names'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 109); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(110, 'vocabulary:*:post', 'Vocabulary services'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 110); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(111, '*:person:*:get', 'View profiles'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 111); diff --git a/src/main/resources/db/migration/sqlserver/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql deleted file mode 100644 index 0da36df8c6..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.2.0.20180202143000__delete-unnecessary-admin-permissions.sql +++ /dev/null @@ -1 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission WHERE role_id = 2 AND permission_id BETWEEN 34 AND 44; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.2.0.20180215143000__remove_password.sql b/src/main/resources/db/migration/sqlserver/V2.2.0.20180215143000__remove_password.sql deleted file mode 100644 index 6b99dd4c0e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.2.0.20180215143000__remove_password.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user DROP COLUMN password; -ALTER TABLE ${ohdsiSchema}.sec_user DROP COLUMN salt; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.2.5.20180212152023__concept-sets-author.sql b/src/main/resources/db/migration/sqlserver/V2.2.5.20180212152023__concept-sets-author.sql deleted file mode 100644 index a2f0405b26..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.2.5.20180212152023__concept-sets-author.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.concept_set - ADD created_by VARCHAR(255), - modified_by VARCHAR(255), - created_date DATETIMEOFFSET, - modified_date DATETIMEOFFSET; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.2.5.20180212181325__cca-author.sql b/src/main/resources/db/migration/sqlserver/V2.2.5.20180212181325__cca-author.sql deleted file mode 100644 index bcb2cd4e33..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.2.5.20180212181325__cca-author.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cca - ADD created_by VARCHAR(255), - modified_by VARCHAR(255); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.2.5.20180215105415__separate-sequences.sql b/src/main/resources/db/migration/sqlserver/V2.2.5.20180215105415__separate-sequences.sql deleted file mode 100644 index e5aa26f9c7..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.2.5.20180215105415__separate-sequences.sql +++ /dev/null @@ -1,318 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cca_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.cca ADD cca_id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.cca SET cca_id_tmp = cca_id; -GO - -ALTER TABLE ${ohdsiSchema}.cca DROP COLUMN cca_id; -GO - -EXEC sp_rename '[${ohdsiSchema}].cca.cca_id_tmp', 'cca_id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.cca ALTER COLUMN cca_id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.cca ADD CONSTRAINT PK_cca_cca_id PRIMARY KEY CLUSTERED(cca_id); -GO - -DECLARE @cca_id_val INT; -DECLARE @sql NVARCHAR(MAX); -SELECT @cca_id_val = coalesce(MAX(cca_id), 1) FROM ${ohdsiSchema}.cca; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.cca_sequence RESTART WITH ' + CAST(@cca_id_val as NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.cohort_definition_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.cohort_definition SET id_tmp = id; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study DROP CONSTRAINT FK_feasibility_study_cohort_definition_result; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study DROP CONSTRAINT [FK_feasibility_study_cohort_definition_index]; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details DROP CONSTRAINT FK_cohort_definition_details_cohort_definition; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_generation_info DROP CONSTRAINT FK_cohort_generation_info_cohort_definition; -GO - -DECLARE @sql NVARCHAR(MAX), @pk NVARCHAR(512); -SELECT @pk = name FROM sys.key_constraints where [type] = 'PK' AND parent_object_id = OBJECT_ID('${ohdsiSchema}.cohort_definition'); -SET @sql = 'ALTER TABLE ${ohdsiSchema}.cohort_definition DROP CONSTRAINT ' + @pk + ';'; -EXEC sp_executesql @sql; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_definition DROP COLUMN id; -GO - -EXEC sp_rename '${ohdsiSchema}.cohort_definition.id_tmp', 'id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_definition ALTER COLUMN id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD CONSTRAINT PK_cohort_definition_id PRIMARY KEY CLUSTERED(id); -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD CONSTRAINT [FK_feasibility_study_cohort_definition_result] FOREIGN KEY([result_def_id]) - REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]); -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD CONSTRAINT [FK_feasibility_study_cohort_definition_index] FOREIGN KEY([index_def_id]) - REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]); -GO - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details - ADD CONSTRAINT FK_cohort_definition_details_cohort_definition - FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.cohort_definition (id) - ON UPDATE CASCADE - ON DELETE CASCADE; -GO - -ALTER TABLE ${ohdsiSchema}.cohort_generation_info ADD CONSTRAINT [FK_cohort_generation_info_cohort_definition] FOREIGN KEY([id]) -REFERENCES [${ohdsiSchema}].[cohort_definition] ([id]) - ON UPDATE CASCADE - ON DELETE CASCADE; -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @cohort_definition_id_val INT; -SELECT @cohort_definition_id_val = coalesce(MAX(id), 1) FROM ${ohdsiSchema}.cohort_definition; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.cohort_definition_sequence RESTART WITH ' + CAST(@cohort_definition_id_val AS NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.concept_set_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set ADD concept_set_id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.concept_set SET concept_set_id_tmp = concept_set_id; -GO - -IF EXISTS (SELECT * FROM sys.objects where name = 'FK_concept_set_generation_info_concept_set') -BEGIN - ALTER TABLE ${ohdsiSchema}.concept_set_generation_info DROP CONSTRAINT FK_concept_set_generation_info_concept_set -END -GO - -DECLARE @sql NVARCHAR(MAX), @pk NVARCHAR(512); -SELECT @pk = name FROM sys.key_constraints where [type] = 'PK' AND parent_object_id = OBJECT_ID('${ohdsiSchema}.concept_set'); -SET @sql = 'ALTER TABLE ${ohdsiSchema}.concept_set DROP CONSTRAINT ' + @pk + ';'; -EXEC sp_executesql @sql; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set DROP COLUMN concept_set_id; -GO - -EXEC sp_rename '${ohdsiSchema}.concept_set.concept_set_id_tmp', 'concept_set_id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set ALTER COLUMN concept_set_id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set ADD CONSTRAINT PK_concept_set_concept_set_id PRIMARY KEY CLUSTERED(concept_set_id); -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info ADD CONSTRAINT [FK_concept_set_generation_info_concept_set] FOREIGN KEY([concept_set_id]) - REFERENCES [${ohdsiSchema}].[concept_set] ([concept_set_id]) - ON UPDATE CASCADE - ON DELETE CASCADE; -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @concept_set_id_val INT; -SELECT @concept_set_id_val = coalesce(MAX(concept_set_id), 1) FROM ${ohdsiSchema}.concept_set; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.concept_set_sequence RESTART WITH ' + CAST(@concept_set_id_val AS NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.concept_set_item_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_item ADD concept_set_item_id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.concept_set_item SET concept_set_item_id_tmp = concept_set_item_id; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_item DROP COLUMN concept_set_item_id; -GO - -EXEC sp_rename '${ohdsiSchema}.concept_set_item.concept_set_item_id_tmp', 'concept_set_item_id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_item ALTER COLUMN concept_set_item_id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_item ADD CONSTRAINT PK_concept_set_item_concept_set_item_id PRIMARY KEY CLUSTERED(concept_set_item_id); -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @concept_set_item_id_val INT; -SELECT @concept_set_item_id_val = coalesce(MAX(concept_set_item_id), 1) FROM ${ohdsiSchema}.concept_set_item; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.concept_set_item_sequence RESTART WITH ' + CAST(@concept_set_item_id_val AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_negative_controls ADD id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.concept_set_negative_controls SET id_tmp = id; -GO - -DECLARE @sql NVARCHAR(MAX), @pk NVARCHAR(512); -SELECT @pk = name FROM sys.key_constraints where [type] = 'PK' AND parent_object_id = OBJECT_ID('${ohdsiSchema}.concept_set_negative_controls'); -SET @sql = 'ALTER TABLE ${ohdsiSchema}.concept_set_negative_controls DROP CONSTRAINT ' + @pk + ';'; -EXEC sp_executesql @sql; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_negative_controls DROP COLUMN id; -GO - -EXEC sp_rename '${ohdsiSchema}.concept_set_negative_controls.id_tmp', 'id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_negative_controls ALTER COLUMN id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.concept_set_negative_controls ADD CONSTRAINT PK_concept_set_negative_controls_id PRIMARY KEY CLUSTERED(id); -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @id_val INT; -SELECT @id_val = coalesce(MAX(id), 1) FROM ${ohdsiSchema}.concept_set_negative_controls; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.negative_controls_sequence RESTART WITH ' + CAST(@id_val AS NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.feasibility_study_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.feasibility_study SET id_tmp = id; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion DROP CONSTRAINT FK_feasibility_inclusion_feasibility_study; -GO - -ALTER TABLE ${ohdsiSchema}.feas_study_generation_info DROP CONSTRAINT FK_feas_study_generation_info_feasibility_study; -GO - -DECLARE @sql NVARCHAR(MAX), @pk NVARCHAR(512); -SELECT @pk = name FROM sys.key_constraints where [type] = 'PK' AND parent_object_id = OBJECT_ID('${ohdsiSchema}.feasibility_study'); -SET @sql = 'ALTER TABLE ${ohdsiSchema}.feasibility_study DROP CONSTRAINT ' + @pk + ';'; -EXEC sp_executesql @sql; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study DROP COLUMN id; -GO - -EXEC sp_rename '${ohdsiSchema}.feasibility_study.id_tmp', 'id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study ALTER COLUMN id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD CONSTRAINT PK_feasibility_study_id PRIMARY KEY CLUSTERED(id); -GO - -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion ADD CONSTRAINT FK_feasibility_inclusion_feasibility_study - FOREIGN KEY (study_id) REFERENCES ${ohdsiSchema}.feasibility_study (id); -GO - -ALTER TABLE [${ohdsiSchema}].[feas_study_generation_info] - ADD CONSTRAINT [FK_feas_study_generation_info_feasibility_study] FOREIGN KEY ([study_id]) REFERENCES [${ohdsiSchema}].[feasibility_study] ([id]); -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @id_val INT; -SELECT @id_val = coalesce(MAX(id), 1) FROM ${ohdsiSchema}.feasibility_study; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.feasibility_study_sequence RESTART WITH ' + CAST(@id_val AS NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.ir_analysis_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.ir_analysis SET id_tmp = id; -GO - -ALTER TABLE ${ohdsiSchema}.ir_analysis_details DROP CONSTRAINT FK_irad_ira; -GO - -DECLARE @sql NVARCHAR(MAX), @pk NVARCHAR(512); -SELECT @pk = name FROM sys.key_constraints where [type] = 'PK' AND parent_object_id = OBJECT_ID('${ohdsiSchema}.ir_analysis'); -SET @sql = 'ALTER TABLE ${ohdsiSchema}.ir_analysis DROP CONSTRAINT ' + @pk + ';'; -EXEC sp_executesql @sql; -GO - -ALTER TABLE ${ohdsiSchema}.ir_analysis DROP COLUMN id; -GO - -EXEC sp_rename '${ohdsiSchema}.ir_analysis.id_tmp', 'id', 'COLUMN' -GO - -ALTER TABLE ${ohdsiSchema}.ir_analysis ALTER COLUMN id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD CONSTRAINT PK_ir_analysis_id PRIMARY KEY CLUSTERED(id); -GO - -ALTER TABLE ${ohdsiSchema}.ir_analysis_details ADD CONSTRAINT FK_irad_ira - FOREIGN KEY (id) REFERENCES ${ohdsiSchema}.ir_analysis(id); -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @id_val INT; -SELECT @id_val = coalesce(MAX(id), 1) FROM ${ohdsiSchema}.ir_analysis; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.ir_analysis_sequence RESTART WITH ' + CAST(@id_val AS NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - -CREATE SEQUENCE ${ohdsiSchema}.plp_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.plp ADD plp_id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.plp SET plp_id_tmp = plp_id; -GO - -ALTER TABLE ${ohdsiSchema}.plp DROP COLUMN plp_id; -GO - -EXEC sp_rename '${ohdsiSchema}.plp.plp_id_tmp', 'plp_id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.plp ALTER COLUMN plp_id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.plp ADD CONSTRAINT PK_plp_plp_id PRIMARY KEY CLUSTERED(plp_id); -GO - -DECLARE @sql NVARCHAR(MAX); -DECLARE @plp_id_val INT; -SELECT @plp_id_val = coalesce(MAX(plp_id), 1) FROM ${ohdsiSchema}.plp; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.plp_sequence RESTART WITH ' + CAST(@plp_id_val AS NVARCHAR(20)) + ';'; -GO diff --git a/src/main/resources/db/migration/sqlserver/V2.2.6.20180215152023__source_key_unique.sql b/src/main/resources/db/migration/sqlserver/V2.2.6.20180215152023__source_key_unique.sql deleted file mode 100644 index fecde49754..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.2.6.20180215152023__source_key_unique.sql +++ /dev/null @@ -1 +0,0 @@ -alter table ${ohdsiSchema}.source ADD CONSTRAINT source_key_unique UNIQUE (source_key); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180302143300__negative_control_redo.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180302143300__negative_control_redo.sql deleted file mode 100644 index e6a9c813e3..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180302143300__negative_control_redo.sql +++ /dev/null @@ -1,53 +0,0 @@ -IF (EXISTS (SELECT * - FROM INFORMATION_SCHEMA.TABLES - WHERE TABLE_SCHEMA = '${ohdsiSchema}' - AND TABLE_NAME = 'CONCEPT_SET_NEGATIVE_CONTROLS')) -BEGIN - DROP TABLE [${ohdsiSchema}].[CONCEPT_SET_NEGATIVE_CONTROLS]; -END - -IF (EXISTS (SELECT * - FROM sys.objects - WHERE name = 'negative_controls_sequence')) -BEGIN - DROP SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -END - -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence; -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id int NOT NULL DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.negative_controls_sequence), - evidence_job_id BIGINT NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL, - concept_set_name varchar(255) NOT NULL, - negative_control INTEGER NOT NULL, - concept_id INTEGER NOT NULL, - concept_name varchar(255) NOT NULL, - domain_id varchar(255) NOT NULL, - sort_order bigint, - descendant_pmid_cnt BIGINT, - exact_pmid_cnt BIGINT, - parent_pmid_cnt BIGINT, - ancestor_pmid_cnt BIGINT, - ind_ci INTEGER, - too_broad INTEGER, - drug_induced INTEGER, - pregnancy INTEGER, - descendant_splicer_cnt BIGINT, - exact_splicer_cnt BIGINT, - parent_splicer_cnt BIGINT, - ancestor_splicer_cnt BIGINT, - descendant_faers_cnt BIGINT, - exact_faers_cnt BIGINT, - parent_faers_cnt BIGINT, - ancestor_faers_cnt BIGINT, - user_excluded INTEGER, - user_included INTEGER, - optimized_out INTEGER, - not_prevalent INTEGER - CONSTRAINT [PK_CONCEPT_SET_NC] PRIMARY KEY CLUSTERED - ( - [id] ASC - ) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); - diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180302143400__alter_cs_gen_info.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180302143400__alter_cs_gen_info.sql deleted file mode 100644 index 46a6c4bec6..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180302143400__alter_cs_gen_info.sql +++ /dev/null @@ -1,11 +0,0 @@ -ALTER TABLE [${ohdsiSchema}].concept_set_generation_info - ADD params nvarchar(max) -GO - -UPDATE [${ohdsiSchema}].concept_set_generation_info set params = '{}' -GO - -ALTER TABLE [${ohdsiSchema}].concept_set_generation_info - ALTER COLUMN params nvarchar(max) not null -GO - diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180321143400__patch_data_permissions.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180321143400__patch_data_permissions.sql deleted file mode 100644 index 23bb5d5bfa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180321143400__patch_data_permissions.sql +++ /dev/null @@ -1,38 +0,0 @@ -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(27, 'conceptset:*:delete', 'Delete Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 27); - -insert into ${ohdsiSchema}.sec_permission values (31, 'conceptset:*:put', 'Update Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 31); - -insert into ${ohdsiSchema}.sec_permission values (32, 'conceptset:*:items:put', 'Update Items of Concept Set'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(3, 32); - -insert into ${ohdsiSchema}.sec_permission values (66, 'cohortdefinition:delete', 'Delete Cohort Definition'); -insert into ${ohdsiSchema}.sec_permission values (67, 'cohortdefinition:*:delete', 'Delete Cohort Definition'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(5, 66); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(5, 67); - -insert into ${ohdsiSchema}.sec_permission values (70, 'plp:*:put', 'Update Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_permission values (71, 'plp:*:delete', 'Delete Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_permission values (72, 'plp:*:copy:get', 'Copy Patient Level Prediction'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 70); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 71); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 72); - -insert into ${ohdsiSchema}.sec_permission values (80, 'ir:*:copy:get', 'Copy incidence rate'); -insert into ${ohdsiSchema}.sec_permission values (81, 'ir:*:delete', 'Delete incidence rate'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 80); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(1, 81); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(90, 'comparativecohortanalysis:*:copy:get', 'Copy estimations'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 90); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(91, 'comparativecohortanalysis:*:delete', 'Delete estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 91); -insert into ${ohdsiSchema}.sec_permission(id, value, description) values(92, 'comparativecohortanalysis:*:put', 'Update estimation'); -insert into ${ohdsiSchema}.sec_role_permission(role_id, permission_id) values(2, 92); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT 10, p.id - FROM ${ohdsiSchema}.sec_permission p - LEFT JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION rp ON rp.permission_id = p.id AND rp.role_id = 10 - WHERE p.id < 200 AND rp.permission_id is null; diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180330124512__add_source_permissions.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180330124512__add_source_permissions.sql deleted file mode 100644 index b3c9f253a8..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180330124512__add_source_permissions.sql +++ /dev/null @@ -1,39 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -values (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:*:daimons:*:set-priority:post', 'Set priority daimons'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:*:daimons:*:set-priority:post' - AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:post', 'Create source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:*:put', 'Edit source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:*:put' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:*:delete', 'Delete source'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:*:delete' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:details:*:get', 'Read source details'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:details:*:get' AND sr.name IN ('admin'); diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180405164306__add_profile_permission.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180405164306__add_profile_permission.sql deleted file mode 100644 index bead298d8e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180405164306__add_profile_permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT - NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - '*:person:*:get:dates', - 'View calendar dates on person profiles'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = '*:person:*:get:dates' - AND sr.name IN ('admin', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180412000000__increment_sequences.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180412000000__increment_sequences.sql deleted file mode 100644 index 30bc4e9e2b..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180412000000__increment_sequences.sql +++ /dev/null @@ -1,63 +0,0 @@ --- cca_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(cca_id) + 1, 1) FROM ${ohdsiSchema}.cca; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.cca_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- cohort_definition_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(id) + 1, 1) FROM ${ohdsiSchema}.cohort_definition; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.cohort_definition_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- concept_set_item_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(concept_set_item_id) + 1, 1) FROM ${ohdsiSchema}.concept_set_item; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.concept_set_item_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- concept_set_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(concept_set_id) + 1, 1) FROM ${ohdsiSchema}.concept_set; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.concept_set_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- feasibility_study_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(id) + 1, 1) FROM ${ohdsiSchema}.feasibility_study; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.feasibility_study_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- ir_analysis_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(id) + 1, 1) FROM ${ohdsiSchema}.ir_analysis; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.ir_analysis_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- negative_controls_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(id) + 1, 1) FROM ${ohdsiSchema}.concept_set_negative_controls; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.negative_controls_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO - --- plp_sequence -DECLARE @sql NVARCHAR(MAX); -DECLARE @id BIGINT; -SELECT @id = coalesce(MAX(plp_id) + 1, 1) FROM ${ohdsiSchema}.plp; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.plp_sequence RESTART WITH ' + CAST(@id AS NVARCHAR(20)) + ';' -EXEC sp_executesql @sql; -GO diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180412000001__constraints.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180412000001__constraints.sql deleted file mode 100644 index d9082393fe..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180412000001__constraints.sql +++ /dev/null @@ -1,16 +0,0 @@ --- Rename the primary key for consistency - cohort_definition -EXEC sp_rename '${ohdsiSchema}.PK_cohort_definition_id', '${ohdsiSchema}.PK_cohort_definition', 'OBJECT'; - --- Ensure a primary key exists on cohort_definition_details -IF NOT EXISTS (SELECT * FROM sys.key_constraints where [type] = 'PK' AND parent_object_id = OBJECT_ID('${ohdsiSchema}.cohort_definition_details')) -BEGIN - ALTER TABLE ${ohdsiSchema}.cohort_definition_details ADD CONSTRAINT PK_cohort_definition_details PRIMARY KEY (id); -END - --- Rename the primary key for consistency - concept_set -EXEC sp_rename '${ohdsiSchema}.PK_concept_set_concept_set_id', '${ohdsiSchema}.PK_concept_set', 'OBJECT'; - --- Rename the primary key for consistency - concept_set_item -EXEC sp_rename '${ohdsiSchema}.PK_concept_set_item_concept_set_item_id', '${ohdsiSchema}.PK_concept_set_item', 'OBJECT'; - - diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180425185900__cohort_analysis_generation_info.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180425185900__cohort_analysis_generation_info.sql deleted file mode 100644 index 3affad0c31..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180425185900__cohort_analysis_generation_info.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.cohort_analysis_gen_info ( - source_id int NOT NULL, - cohort_id int NOT NULL, - last_execution datetime, - execution_duration int, - fail_message varchar(2000), - PRIMARY KEY (source_id, cohort_id) -); - -CREATE TABLE ${ohdsiSchema}.cohort_analysis_list_xref ( - source_id int, - cohort_id int, - analysis_id int); - -ALTER TABLE ${ohdsiSchema}.cohort_analysis_gen_info ADD CONSTRAINT FK_cagi_cohort_id FOREIGN KEY (cohort_id) REFERENCES ${ohdsiSchema}.cohort_definition (ID); -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ADD CONSTRAINT FK_calx_source_id FOREIGN KEY (source_id, cohort_id) REFERENCES ${ohdsiSchema}.cohort_analysis_gen_info (source_id, cohort_id); diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180427114800__sec_user_unique.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180427114800__sec_user_unique.sql deleted file mode 100644 index f215c8cc82..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180427114800__sec_user_unique.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD CONSTRAINT sec_user_login_unique UNIQUE (login); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.3.0.20180430151300__rename_constraints.sql b/src/main/resources/db/migration/sqlserver/V2.3.0.20180430151300__rename_constraints.sql deleted file mode 100644 index 309acac0fa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.3.0.20180430151300__rename_constraints.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Rename the primary key for consistency - cohort_definition -EXEC sp_rename '[${ohdsiSchema}].[cohort_definition].[${ohdsiSchema}.PK_cohort_definition]', 'PK_cohort_definition'; - --- Rename the primary key for consistency - concept_set -EXEC sp_rename '[${ohdsiSchema}].[concept_set].[${ohdsiSchema}.PK_concept_set]', 'PK_concept_set'; - --- Rename the primary key for consistency - concept_set_item -EXEC sp_rename '[${ohdsiSchema}].[concept_set_item].[${ohdsiSchema}.PK_concept_set_item]', 'PK_concept_set_item'; diff --git a/src/main/resources/db/migration/sqlserver/V2.4.0.20180508090000__source-credentials.sql b/src/main/resources/db/migration/sqlserver/V2.4.0.20180508090000__source-credentials.sql deleted file mode 100644 index a555845ad0..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.4.0.20180508090000__source-credentials.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD username nvarchar(255), password nvarchar(255); diff --git a/src/main/resources/db/migration/sqlserver/V2.4.0.20180516223100__roles-unique.sql b/src/main/resources/db/migration/sqlserver/V2.4.0.20180516223100__roles-unique.sql deleted file mode 100644 index 9f7b571325..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.4.0.20180516223100__roles-unique.sql +++ /dev/null @@ -1 +0,0 @@ -alter table ${ohdsiSchema}.sec_role ADD CONSTRAINT sec_role_name_uq UNIQUE (name); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.4.3.20180619113700__permission_for_my_user.sql b/src/main/resources/db/migration/sqlserver/V2.4.3.20180619113700__permission_for_my_user.sql deleted file mode 100644 index 0ae647e226..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.4.3.20180619113700__permission_for_my_user.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT - NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:me:get', - 'Get info about current user (myself)'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT - sr.id, - sp.id - FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:me:get' - AND sr.name IN ('public'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.4.3.20180702202700__permission_for_ir_execution.sql b/src/main/resources/db/migration/sqlserver/V2.4.3.20180702202700__permission_for_ir_execution.sql deleted file mode 100644 index 40b855ea41..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.4.3.20180702202700__permission_for_ir_execution.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'ir:*:execute:*:get', - 'Execute Incidence Rate job'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'ir:*:execute:*:get' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.4.3.20180703144901__permission_for_evidence.sql b/src/main/resources/db/migration/sqlserver/V2.4.3.20180703144901__permission_for_evidence.sql deleted file mode 100644 index 8b553e4470..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.4.3.20180703144901__permission_for_evidence.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'evidence:*:negativecontrols:post', - 'Execute evidence job'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'evidence:*:negativecontrols:post' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql b/src/main/resources/db/migration/sqlserver/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql deleted file mode 100644 index 5dfe44d7d7..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.5.0.20180608182403__schema-add-analysis-gen-progress.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_analysis_gen_info ADD progress INT DEFAULT 0; diff --git a/src/main/resources/db/migration/sqlserver/V2.5.0.20180713123456__cem_v_1.sql b/src/main/resources/db/migration/sqlserver/V2.5.0.20180713123456__cem_v_1.sql deleted file mode 100644 index fdd8299519..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.5.0.20180713123456__cem_v_1.sql +++ /dev/null @@ -1,19 +0,0 @@ -DELETE FROM ${ohdsiSchema}.CONCEPT_SET_GENERATION_INFO; - -DROP TABLE [${ohdsiSchema}].[CONCEPT_SET_NEGATIVE_CONTROLS]; - -DROP SEQUENCE ${ohdsiSchema}.negative_controls_sequence; - -CREATE SEQUENCE ${ohdsiSchema}.negative_controls_sequence; - -CREATE TABLE ${ohdsiSchema}.CONCEPT_SET_NEGATIVE_CONTROLS ( - id int NOT NULL DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.negative_controls_sequence), - evidence_job_id BIGINT NOT NULL, - source_id INTEGER NOT NULL, - concept_set_id INTEGER NOT NULL - CONSTRAINT [PK_CONCEPT_SET_NC] PRIMARY KEY CLUSTERED - ( - [id] ASC - ) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] -); - diff --git a/src/main/resources/db/migration/sqlserver/V2.5.0.20180720117120__source-connection-check-rule.sql b/src/main/resources/db/migration/sqlserver/V2.5.0.20180720117120__source-connection-check-rule.sql deleted file mode 100644 index cea5af5655..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.5.0.20180720117120__source-connection-check-rule.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:connection:*:get', 'Check source connection'); -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'source:connection:*:get' AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.5.0.20180725172844__add-ad-import-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.5.0.20180725172844__add-ad-import-permissions.sql deleted file mode 100644 index 3b62947692..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.5.0.20180725172844__add-ad-import-permissions.sql +++ /dev/null @@ -1,64 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:providers:get', 'Get list of authentication providers AD/LDAP'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:providers:get' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:import:*:groups:get', 'Search groups in AD/LDAP'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:groups:get' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:import:*:post', 'Search users in AD/LDAP'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:import:post', 'Import users from AD/LDAP'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:import:*:mapping:post', 'Save Atlas roles mappings to LDAP groups'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:mapping:post' AND sr.name IN ('admin'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:import:*:mapping:get', 'Read Atlas roles mappings to LDAP groups'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:mapping:get' AND sr.name IN ('admin'); - -CREATE SEQUENCE ${ohdsiSchema}.sec_role_group_seq; - -CREATE TABLE ${ohdsiSchema}.sec_role_group( - id INTEGER PRIMARY KEY DEFAULT NEXT VALUE FOR ${ohdsiSchema}.sec_role_group_seq, - provider VARCHAR NOT NULL, - group_dn VARCHAR NOT NULL, - group_name VARCHAR, - role_id INTEGER NOT NULL, - CONSTRAINT UC_PROVIDER_GROUP_ROLE UNIQUE(provider, group_dn, role_id) -); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql b/src/main/resources/db/migration/sqlserver/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql deleted file mode 100644 index 240b5e75d5..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.5.0.20180730192730__schema-add-kerberos-to-source.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source - ADD krb_auth_method VARCHAR(10) DEFAULT 'PASSWORD' NOT NULL, keytab_name VARCHAR(50), krb_keytab VARBINARY(MAX), krb_admin_server VARCHAR(50); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.5.0.20180817154116__add-extra-import-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.5.0.20180817154116__add-extra-import-permissions.sql deleted file mode 100644 index 455d8200f7..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.5.0.20180817154116__add-extra-import-permissions.sql +++ /dev/null @@ -1,8 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - 'user:import:*:test:get', 'Check LDAP/AD connection'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" = 'user:import:*:test:get' AND sr.name IN ('admin'); diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180731092421__cohort-characterization.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180731092421__cohort-characterization.sql deleted file mode 100644 index 409b4e4c60..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180731092421__cohort-characterization.sql +++ /dev/null @@ -1,277 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cohort_characterization_seq START WITH 1; -CREATE TABLE ${ohdsiSchema}.cohort_characterization -( - id BIGINT NOT NULL CONSTRAINT df_cohort_characterization_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.cohort_characterization_seq, - name VARCHAR(255) NOT NULL, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT (GETDATE()), - modified_by_id INTEGER, - modified_date DATETIME, - hash_code INTEGER NULL, - CONSTRAINT PK_cc PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.cohort_characterization - ADD CONSTRAINT fk_cc_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.cohort_characterization - ADD CONSTRAINT fk_cc_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user (id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -CREATE SEQUENCE ${ohdsiSchema}.cc_param_sequence START WITH 1; -CREATE TABLE ${ohdsiSchema}.cc_param -( - id BIGINT NOT NULL CONSTRAINT df_cc_param_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.cc_param_sequence, - cohort_characterization_id BIGINT NOT NULL, - name VARCHAR(255), - value VARCHAR(255), - CONSTRAINT PK_ccp PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.cc_param - ADD CONSTRAINT fk_ccp_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization (id) -ON UPDATE NO ACTION ON DELETE CASCADE; - - - -CREATE SEQUENCE ${ohdsiSchema}.fe_analysis_sequence START WITH 1; -CREATE TABLE ${ohdsiSchema}.fe_analysis -( - id BIGINT NOT NULL CONSTRAINT df_fe_analysis_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.fe_analysis_sequence, - type VARCHAR(255), - name VARCHAR(255), - domain VARCHAR(255), - descr VARCHAR(1000), - value VARCHAR(255), - design Text, - is_locked BIT, - stat_type VARCHAR(255), - CONSTRAINT PK_fe PRIMARY KEY (id) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:post', 'Create cohort characterization'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:import:post', 'Import cohort characterization'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:get', 'Get cohort characterization'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:get', 'Get cohort characterizations list'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:generation:get', 'Get cohort characterization generations'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:get', 'Get cohort characterization generation'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:delete', 'Delete cohort characterization generation and results'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:result:get', 'Get cohort characterization generation results'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:design:get', 'Get cohort characterization generation design'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:export', 'Export cohort characterization'), - - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:get', 'Get feature analyses list'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:*:get', 'Get feature analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:post', 'Create feature analysis'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:post', - 'cohort-characterization:get', - 'cohort-characterization:import:post', - 'cohort-characterization:*:get', - 'cohort-characterization:*:generation:get', - 'cohort-characterization:generation:*:get', - 'cohort-characterization:generation:*:delete', - 'cohort-characterization:generation:*:result:get', - 'cohort-characterization:generation:*:design:get', - 'cohort-characterization:*:export', - - 'feature-analysis:get', - 'feature-analysis:*:get', - 'feature-analysis:post' -) -AND sr.name IN ('Atlas users'); - - --- SOURCE based permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq AS id, - 'source:' + source_key + ':access' AS value, - 'Access to Source with SourceKey = ' + source_key AS description -FROM ${ohdsiSchema}.source; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.source -join ${ohdsiSchema}.sec_permission sp ON sp.value IN ('source:' + source_key + ':access') -join ${ohdsiSchema}.sec_role sr ON sr.name = 'Source user (' + source_key + ')'; - - -CREATE TABLE ${ohdsiSchema}.cc_analysis -( - cohort_characterization_id BIGINT NOT NULL, - fe_analysis_id BIGINT NOT NULL -); - -ALTER TABLE ${ohdsiSchema}.cc_analysis - ADD CONSTRAINT fk_c_char_a_fe_analysis FOREIGN KEY (fe_analysis_id) -REFERENCES ${ohdsiSchema}.fe_analysis(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cc_analysis - ADD CONSTRAINT fk_c_char_a_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -CREATE SEQUENCE ${ohdsiSchema}.fe_analysis_criteria_sequence; -CREATE TABLE ${ohdsiSchema}.fe_analysis_criteria -( - id BIGINT CONSTRAINT df_fe_analysis_criteria_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.fe_analysis_criteria_sequence, - name VARCHAR(255), - expression varchar(max), - fe_analysis_id BIGINT, - CONSTRAINT PK_fea_c PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD CONSTRAINT fk_fec_fe_analysis FOREIGN KEY (fe_analysis_id) -REFERENCES ${ohdsiSchema}.fe_analysis(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - - - -CREATE TABLE ${ohdsiSchema}.cc_cohort -( - cohort_characterization_id BIGINT NOT NULL, - cohort_id INT NOT NULL -); - -ALTER TABLE ${ohdsiSchema}.cc_cohort - ADD CONSTRAINT fk_c_char_c_fe_analysis FOREIGN KEY (cohort_id) -REFERENCES ${ohdsiSchema}.cohort_definition(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cc_cohort - ADD CONSTRAINT fk_c_char_c_cc FOREIGN KEY (cohort_characterization_id) -REFERENCES ${ohdsiSchema}.cohort_characterization(id) -ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cohort_definition_details ADD hash_code int null; - -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Short Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the short term window.', null, 'MeasurementRangeGroupShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Start Long Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the long term window.', null, 'ConditionGroupEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Start Medium Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the medium term window.', null, 'DrugGroupEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Short Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the short term window.', null, 'ConditionEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Long Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the long term window.', null, 'DrugGroupEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Overlapping', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with the end of the risk window.', null, 'ConditionGroupEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Short Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the short term window.', null, 'DrugGroupEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Medium Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any part of the medium term window.', null, 'DrugGroupEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Start Long Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the long term window.', null, 'ConditionEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Any Time Prior', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any time prior to index.', null, 'ConditionEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Start Medium Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the medium term window.', null, 'ConditionGroupEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Long Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the long term window.', null, 'DrugExposureLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Long Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the long term window.', null, 'MeasurementRangeGroupLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Medium Term', NULL, 'Covariates indicating whether measurements are below, within, or above normal range in the medium term window.', null, 'MeasurementRangeGroupMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Any Time Prior', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with any time prior to index.', null, 'DrugGroupEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Medium Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the medium term window.', null, 'ConditionEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Overlapping', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with the end of the risk window.', null, 'ConditionEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Start Short Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the short term window.', null, 'ConditionEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Start Short Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the short term window.', null, 'DrugGroupEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Short Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the short term window.', null, 'ConditionGroupEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Start Medium Term', 'CONDITION', 'One covariate per condition in the condition_era table starting in the medium term window.', null, 'ConditionEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Medium Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the medium term window.', null, 'ProcedureOccurrenceMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Era Long Term', 'CONDITION', 'One covariate per condition in the condition_era table overlapping with any part of the long term window.', null, 'ConditionEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Start Long Term', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table starting in the long term window.', null, 'DrugGroupEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Group Era Overlapping', 'DRUG', 'One covariate per drug rolled up to ATC groups in the drug_era table overlapping with the end of the risk window.', null, 'DrugGroupEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Range Group Any Time Prior', NULL, 'Covariates indicating whether measurements are below, within, or above normal range any time prior to index.', null, 'MeasurementRangeGroupAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Any Time Prior', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any time prior to index.', null, 'ConditionGroupEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Any Time Prior', 'DRUG', 'One covariate per drug in the drug_exposure table starting any time prior to index.', null, 'DrugExposureAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Start Short Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table starting in the short term window.', null, 'ConditionGroupEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Long Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the long term window.', null, 'ConditionGroupEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Short Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the short term window.', null, 'DrugExposureShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Group Era Medium Term', 'CONDITION', 'One covariate per condition era rolled up to groups in the condition_era table overlapping with any part of the medium term window.', null, 'ConditionGroupEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Exposure Medium Term', 'DRUG', 'One covariate per drug in the drug_exposure table starting in the medium term window.', null, 'DrugExposureMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Short Term', 'OBSERVATION', 'One covariate per observation in the observation table in the short term window.', null, 'ObservationShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Start Long Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the long term window.', null, 'DrugEraStartLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Dcsi', 'CONDITION', 'The Diabetes Comorbidity Severity Index (DCSI) using all conditions prior to the window end.', null, 'Dcsi', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Start Short Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the long short window.', null, 'DrugEraStartShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Ingredient Count Medium Term', 'DRUG', 'The number of distinct ingredients observed in the medium term window.', null, 'DistinctIngredientCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Any Time Prior', 'MEASUREMENT', 'One covariate per measurement in the measurement table any time prior to index.', null, 'MeasurementAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Medium Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the medium term window.', null, 'MeasurementMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Condition Count Long Term', 'CONDITION', 'The number of distinct condition concepts observed in the long term window.', null, 'DistinctConditionCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Long Term', NULL, 'One covariate containing the value per measurement-unit combination in the long term window.', null, 'MeasurementValueLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Short Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the short window.', null, 'DrugEraShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Overlapping', 'DRUG', 'One covariate per drug in the drug_era table overlapping with the end of the risk window.', null, 'DrugEraOverlapping', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Any Time Prior', 'OBSERVATION', 'One covariate per observation in the observation table any time prior to index.', null, 'ObservationAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Ingredient Count Long Term', 'DRUG', 'The number of distinct ingredients observed in the long term window.', null, 'DistinctIngredientCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Procedure Count Short Term', 'PROCEDURE', 'The number of distinct procedures observed in the short term window.', null, 'DistinctProcedureCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Condition Count Short Term', 'CONDITION', 'The number of distinct condition concepts observed in the short term window.', null, 'DistinctConditionCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Charlson Index', 'CONDITION', 'The Charlson comorbidity index (Romano adaptation) using all conditions prior to the window end.', null, 'CharlsonIndex', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Short Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the short term window.', null, 'MeasurementShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Procedure Count Medium Term', 'PROCEDURE', 'The number of distinct procedures observed in the medium term window.', null, 'DistinctProcedureCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Any Time Prior', 'DEVICE', 'One covariate per device in the device exposure table starting any time prior to index.', null, 'DeviceExposureAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Long Term', 'OBSERVATION', 'One covariate per observation in the observation table in the long term window.', null, 'ObservationLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Condition Count Medium Term', 'CONDITION', 'The number of distinct condition concepts observed in the medium term window.', null, 'DistinctConditionCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Short Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the short term window.', null, 'ProcedureOccurrenceShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Observation Medium Term', 'OBSERVATION', 'One covariate per observation in the observation table in the medium term window.', null, 'ObservationMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Long Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the long term window.', null, 'DeviceExposureLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Short Term', NULL, 'One covariate containing the value per measurement-unit combination in the short term window.', null, 'MeasurementValueShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Medium Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the medium term window.', null, 'DeviceExposureMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Long Term', 'MEASUREMENT', 'One covariate per measurement in the measurement table in the long term window.', null, 'MeasurementLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Medium Term', NULL, 'One covariate containing the value per measurement-unit combination in the medium term window.', null, 'MeasurementValueMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Start Medium Term', 'DRUG', 'One covariate per drug in the drug_era table starting in the medium term window.', null, 'DrugEraStartMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Measurement Value Any Time Prior', NULL, 'One covariate containing the value per measurement-unit combination any time prior to index.', null, 'MeasurementValueAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Ingredient Count Short Term', 'DRUG', 'The number of distinct ingredients observed in the short term window.', null, 'DistinctIngredientCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Device Exposure Short Term', 'DEVICE', 'One covariate per device in the device exposure table starting in the short term window.', null, 'DeviceExposureShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Procedure Count Long Term', 'PROCEDURE', 'The number of distinct procedures observed in the long term window.', null, 'DistinctProcedureCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Long Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the long term window.', null, 'ConditionOccurrenceLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Index Month', 'DEMOGRAPHICS', 'Month of the index date.', null, 'DemographicsIndexMonth', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Any Time Prior', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting any time prior to index.', null, 'ConditionOccurrenceAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Ethnicity', 'DEMOGRAPHICS', 'Ethnicity of the subject.', null, 'DemographicsEthnicity', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Age Group', 'DEMOGRAPHICS', 'Age of the subject on the index date (in 5 year age groups)', null, 'DemographicsAgeGroup', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Race', 'DEMOGRAPHICS', 'Race of the subject.', null, 'DemographicsRace', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Prior Observation Time', 'DEMOGRAPHICS', 'Number of continuous days of observation time preceding the index date.', null, 'DemographicsPriorObservationTime', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Gender', 'DEMOGRAPHICS', 'Gender of the subject.', null, 'DemographicsGender', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Index Year Month', 'DEMOGRAPHICS', 'Both calendar year and month of the index date in a single variable.', null, 'DemographicsIndexYearMonth', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Medium Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the medium term window.', null, 'ConditionOccurrenceMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Age', 'DEMOGRAPHICS', 'Age of the subject on the index date (in years).', null, 'DemographicsAge', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Chads 2', 'CONDITION', 'The CHADS2 score using all conditions prior to the window end.', null, 'Chads2', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Time In Cohort', 'DEMOGRAPHICS', 'Number of days of observation time during cohort period.', null, 'DemographicsTimeInCohort', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Index Year', 'DEMOGRAPHICS', 'Year of the index date.', null, 'DemographicsIndexYear', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Demographics Post Observation Time', 'DEMOGRAPHICS', 'Number of continuous days of observation time following the index date.', null, 'DemographicsPostObservationTime', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Chads 2 Vasc', 'CONDITION', 'The CHADS2VASc score using all conditions prior to the window end.', null, 'Chads2Vasc', 1, 'DISTRIBUTION'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Primary Inpatient Long Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the long term window.', null, 'ConditionOccurrencePrimaryInpatientLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Long Term', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table in the long term window.', null, 'ProcedureOccurrenceLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Primary Inpatient Any Time Prior', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting any time prior to index.', null, 'ConditionOccurrencePrimaryInpatientAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Long Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the long term window.', null, 'DrugEraLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Procedure Occurrence Any Time Prior', 'PROCEDURE', 'One covariate per procedure in the procedure_occurrence table any time prior to index.', null, 'ProcedureOccurrenceAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Medium Term', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any part of the medium term window.', null, 'DrugEraMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Drug Era Any Time Prior', 'DRUG', 'One covariate per drug in the drug_era table overlapping with any time prior to index.', null, 'DrugEraAnyTimePrior', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Condition Occurrence Short Term', 'CONDITION', 'One covariate per condition in the condition_occurrence table starting in the short term window.', null, 'ConditionOccurrenceShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Measurement Count Short Term', 'MEASUREMENT', 'The number of distinct measurements observed in the short term window.', null, 'DistinctMeasurementCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Concept Count Short Term', 'VISIT', 'The number of visits observed in the short term window, stratified by visit concept ID.', null, 'VisitConceptCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Observation Count Medium Term', 'OBSERVATION', 'The number of distinct observations observed in the medium term window.', null, 'DistinctObservationCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Observation Count Long Term', 'OBSERVATION', 'The number of distinct observations observed in the long term window.', null, 'DistinctObservationCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Measurement Count Long Term', 'MEASUREMENT', 'The number of distinct measurements observed in the long term window.', null, 'DistinctMeasurementCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Measurement Count Medium Term', 'MEASUREMENT', 'The number of distinct measurements observed in the medium term window.', null, 'DistinctMeasurementCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Distinct Observation Count Short Term', 'OBSERVATION', 'The number of distinct observations observed in the short term window.', null, 'DistinctObservationCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Concept Count Long Term', 'VISIT', 'The number of visits observed in the long term window, stratified by visit concept ID.', null, 'VisitConceptCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Concept Count Medium Term', 'VISIT', 'The number of visits observed in the medium term window, stratified by visit concept ID.', null, 'VisitConceptCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Count Medium Term', 'VISIT', 'The number of visits observed in the medium term window.', null, 'VisitCountMediumTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Count Short Term', 'VISIT', 'The number of visits observed in the short term window.', null, 'VisitCountShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Occurrence Primary Inpatient Short Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the short term window.', null, 'ConditionOccurrencePrimaryInpatientShortTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Visit Count Long Term', 'VISIT', 'The number of visits observed in the long term window.', null, 'VisitCountLongTerm', 1, 'PREVALENCE'); -INSERT INTO ${ohdsiSchema}.fe_analysis (type, name, domain, descr, value, design, is_locked, stat_type) VALUES ('PRESET', 'Occurrence Primary Inpatient Medium Term', 'CONDITION', 'One covariate per condition observed as a primary diagnosis in an inpatient setting in the condition_occurrence table starting in the medium term window.', null, 'ConditionOccurrencePrimaryInpatientMediumTerm', 1, 'PREVALENCE'); - -CREATE TABLE ${ohdsiSchema}.analysis_generation_info ( - job_execution_id INTEGER NOT NULL, - design TEXT NOT NULL, - hash_code VARCHAR(16) NOT NULL, - created_by_id INTEGER -); - -ALTER TABLE ${ohdsiSchema}.analysis_generation_info - ADD CONSTRAINT fk_cgi_sec_user FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id) - ON UPDATE NO ACTION ON DELETE NO ACTION; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180731092422__cohort-characterization-generations-view.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180731092422__cohort-characterization-generations-view.sql deleted file mode 100644 index 5c3fdf9ece..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180731092422__cohort-characterization-generations-view.sql +++ /dev/null @@ -1,21 +0,0 @@ -CREATE VIEW ${ohdsiSchema}.cc_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(cc_id_param.string_val AS INTEGER) cc_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ); diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180906220021__pathway_analysis.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180906220021__pathway_analysis.sql deleted file mode 100644 index 3e8ba3a951..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180906220021__pathway_analysis.sql +++ /dev/null @@ -1,77 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.pathway_analysis_sequence START WITH 1; -CREATE TABLE ${ohdsiSchema}.pathway_analysis -( - id INTEGER NOT NULL, - name VARCHAR(255) NOT NULL, - combination_window INTEGER, - min_cell_count INTEGER, - max_depth INTEGER, - allow_repeats bit DEFAULT 0, - created_by_id INTEGER, - created_date datetime, - modified_by_id INTEGER, - modified_date datetime, - hash_code INTEGER, - CONSTRAINT [PK_pathway_analysis] PRIMARY KEY (id) -); - -CREATE SEQUENCE ${ohdsiSchema}.pathway_cohort_sequence START WITH 1; - -CREATE TABLE ${ohdsiSchema}.pathway_target_cohort -( - id INTEGER NOT NULL, - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - pathway_analysis_id INTEGER NOT NULL , - CONSTRAINT [PK_pathway_target_cohort] PRIMARY KEY (id), - CONSTRAINT FK_ptc_cd_id - FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition(id), - CONSTRAINT FK_ptc_pa_id - FOREIGN KEY (pathway_analysis_id) - REFERENCES ${ohdsiSchema}.pathway_analysis(id) -); - -CREATE TABLE ${ohdsiSchema}.pathway_event_cohort -( - id INTEGER, - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - pathway_analysis_id INTEGER NOT NULL, - is_deleted INTEGER DEFAULT 0, - CONSTRAINT [PK_pathway_event_cohort] PRIMARY KEY (id), - CONSTRAINT FK_pec_cd_id - FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition(id), - CONSTRAINT FK_pec_pa_id - FOREIGN KEY (pathway_analysis_id) - REFERENCES ${ohdsiSchema}.pathway_analysis(id) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:post', 'Create Pathways Analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:import:post', 'Import Pathways Analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:get', 'Get Pathways Analyses list'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:get', 'Get Pathways Analysis instance'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:generation:get', 'Get Pathways Analysis generations list'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:generation:*:get', 'Get Pathways Analysis generation instance'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:generation:*:result:get', 'Get Pathways Analysis generation results'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:generation:*:design:get', 'Get Pathways Analysis generation design'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:export:get', 'Export Pathways Analysis'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.SEC_ROLE_PERMISSION_SEQUENCE, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'pathway-analysis:post', - 'pathway-analysis:import:post', - 'pathway-analysis:get', - 'pathway-analysis:*:get', - 'pathway-analysis:*:generation:get', - 'pathway-analysis:generation:*:get', - 'pathway-analysis:generation:*:result:get', - 'pathway-analysis:generation:*:design:get', - 'pathway-analysis:*:export:get' -) -AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180906220022__pathway_analysis-generation-view.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180906220022__pathway_analysis-generation-view.sql deleted file mode 100644 index 49457ddc11..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180906220022__pathway_analysis-generation-view.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE VIEW ${ohdsiSchema}.pathway_analysis_generation as ( -SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job -JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' -JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' -LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id -) diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql deleted file mode 100644 index 7e3ef74727..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180910113305__migrate_common_entities_to_user_rel.sql +++ /dev/null @@ -1,101 +0,0 @@ --- Cohort Definition - -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD created_by_id INT NULL, CONSTRAINT FK_cd_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.cohort_definition ADD modified_by_id INT NULL, CONSTRAINT FK_cd_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -GO - -UPDATE ${ohdsiSchema}.cohort_definition SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = created_by AND created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.cohort_definition SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = modified_by AND modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.cohort_definition DROP COLUMN created_by, modified_by; - -GO - --- Feasibility Study - -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD created_by_id INT NULL, CONSTRAINT FK_fs_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.feasibility_study ADD modified_by_id INT NULL, CONSTRAINT FK_fs_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -GO - -UPDATE ${ohdsiSchema}.feasibility_study SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = created_by AND created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.feasibility_study SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = modified_by AND modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.feasibility_study DROP COLUMN created_by, modified_by; - -GO - --- Incidence Rate Analysis - -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD created_by_id INT NULL, CONSTRAINT FK_ira_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.ir_analysis ADD modified_by_id INT NULL, CONSTRAINT FK_ira_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -GO - -UPDATE ${ohdsiSchema}.ir_analysis SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = created_by AND created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.ir_analysis SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = modified_by AND modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.ir_analysis DROP COLUMN created_by, modified_by; - -GO - --- CCA - -ALTER TABLE ${ohdsiSchema}.cca ADD created_by_id INT NULL, CONSTRAINT FK_cca_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.cca ADD modified_by_id INT NULL, CONSTRAINT FK_cca_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -GO - -UPDATE ${ohdsiSchema}.cca SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = created_by AND created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.cca SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = modified_by AND modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.cca DROP COLUMN created_by, modified_by; - -GO - --- ConceptSet - -ALTER TABLE ${ohdsiSchema}.concept_set ADD created_by_id INT NULL, CONSTRAINT FK_cs_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.concept_set ADD modified_by_id INT NULL, CONSTRAINT FK_cs_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -GO - -UPDATE ${ohdsiSchema}.concept_set SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = created_by AND created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.concept_set SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = modified_by AND modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.concept_set DROP COLUMN created_by, modified_by; - -GO - --- Patient Level Prediction - -ALTER TABLE ${ohdsiSchema}.plp ADD created_by_id INT NULL, CONSTRAINT FK_plp_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); -ALTER TABLE ${ohdsiSchema}.plp ADD modified_by_id INT NULL, CONSTRAINT FK_plp_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -GO - -UPDATE ${ohdsiSchema}.plp SET created_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = created_by AND created_by IS NOT NULL; - -UPDATE ${ohdsiSchema}.plp SET modified_by_id = u.id - FROM ${ohdsiSchema}.sec_user u WHERE u.login = modified_by AND modified_by IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.plp DROP COLUMN created_by, modified_by; - -GO diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180921202400__fe-analysis-id.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180921202400__fe-analysis-id.sql deleted file mode 100644 index cad8d37831..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180921202400__fe-analysis-id.sql +++ /dev/null @@ -1,19 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cc_analysis DROP CONSTRAINT fk_c_char_a_fe_analysis; -ALTER TABLE ${ohdsiSchema}.cc_analysis ALTER COLUMN fe_analysis_id INTEGER; - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP CONSTRAINT fk_fec_fe_analysis; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ALTER COLUMN fe_analysis_id INTEGER; - -ALTER TABLE ${ohdsiSchema}.fe_analysis DROP CONSTRAINT PK_fe; -ALTER TABLE ${ohdsiSchema}.fe_analysis DROP CONSTRAINT df_fe_analysis_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis ALTER COLUMN id INTEGER NOT NULL; -ALTER TABLE ${ohdsiSchema}.fe_analysis ADD CONSTRAINT df_fe_analysis_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.fe_analysis_sequence) FOR id; -ALTER TABLE ${ohdsiSchema}.fe_analysis ADD CONSTRAINT PK_fe PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD CONSTRAINT fk_fec_fe_analysis FOREIGN KEY (fe_analysis_id) - REFERENCES ${ohdsiSchema}.fe_analysis(id) - ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cc_analysis ADD CONSTRAINT fk_c_char_a_fe_analysis FOREIGN KEY (fe_analysis_id) - REFERENCES ${ohdsiSchema}.fe_analysis(id) - ON UPDATE NO ACTION ON DELETE CASCADE; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180924172208__fe_analysis_design_datatype.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180924172208__fe_analysis_design_datatype.sql deleted file mode 100644 index 78c57840ca..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180924172208__fe_analysis_design_datatype.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis ALTER COLUMN design VARCHAR(MAX); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20180928145448__fe_analysis_seq_start.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20180928145448__fe_analysis_seq_start.sql deleted file mode 100644 index 7d7a9a0ed0..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20180928145448__fe_analysis_seq_start.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER SEQUENCE ${ohdsiSchema}.fe_analysis_sequence MINVALUE 0 MAXVALUE 2147483647; - -ALTER SEQUENCE ${ohdsiSchema}.fe_analysis_criteria_sequence RESTART WITH 1000 MINVALUE 0 MAXVALUE 2147483647; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181001200021__estimation_prediction.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181001200021__estimation_prediction.sql deleted file mode 100644 index ed3f2a7bbb..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181001200021__estimation_prediction.sql +++ /dev/null @@ -1,50 +0,0 @@ --- Estimation -CREATE SEQUENCE ${ohdsiSchema}.estimation_seq START WITH 1; -CREATE TABLE ${ohdsiSchema}.estimation -( - estimation_id INTEGER NOT NULL CONSTRAINT df_estimation_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.estimation_seq, - name VARCHAR(255) NOT NULL, - type VARCHAR(255) NOT NULL, - description VARCHAR(1000), - specification VARCHAR(MAX) NOT NULL, - created_by_id INTEGER, - created_date DATETIME, - modified_by_id INTEGER, - modified_date DATETIME, - CONSTRAINT pk_estimation PRIMARY KEY (estimation_id) -); - -ALTER TABLE ${ohdsiSchema}.estimation - ADD CONSTRAINT fk_estimation_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.estimation - ADD CONSTRAINT fk_estimation_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - --- Prediction -CREATE SEQUENCE ${ohdsiSchema}.prediction_seq START WITH 1; -CREATE TABLE ${ohdsiSchema}.prediction -( - prediction_id INTEGER NOT NULL CONSTRAINT df_prediction_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.prediction_seq, - name VARCHAR(255) NOT NULL, - description VARCHAR(1000), - specification VARCHAR(MAX) NOT NULL, - created_by_id INTEGER, - created_date DATETIME, - modified_by_id INTEGER, - modified_date DATETIME, - CONSTRAINT pk_prediction PRIMARY KEY (prediction_id) -); - -ALTER TABLE ${ohdsiSchema}.prediction - ADD CONSTRAINT fk_prediction_ser_user_creator FOREIGN KEY (created_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.prediction - ADD CONSTRAINT fk_prediction_ser_user_updater FOREIGN KEY (modified_by_id) -REFERENCES ${ohdsiSchema}.sec_user(id) -ON UPDATE NO ACTION ON DELETE NO ACTION; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181002110845__fe_analysis_conceptsets.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181002110845__fe_analysis_conceptsets.sql deleted file mode 100644 index 185ed788ce..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181002110845__fe_analysis_conceptsets.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD conceptsets VARCHAR(MAX); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181005122300__schema-create-fe-conceptset.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181005122300__schema-create-fe-conceptset.sql deleted file mode 100644 index 5bbaf547f2..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181005122300__schema-create-fe-conceptset.sql +++ /dev/null @@ -1,19 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.fe_conceptset_sequence START WITH 1; - -CREATE TABLE ${ohdsiSchema}.fe_analysis_conceptset ( - id bigint NOT NULL, - fe_analysis_id int NOT NULL, - expression varchar(max) -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT df_fe_conceptset_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.fe_conceptset_sequence) FOR id; - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT pk_fe_conceptset_id PRIMARY KEY (id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_conceptset - ADD CONSTRAINT fk_fe_conceptset_fe_analysis FOREIGN KEY (fe_analysis_id) - REFERENCES ${ohdsiSchema}.fe_analysis(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN conceptsets; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181008210200__source-deleted-at-field.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181008210200__source-deleted-at-field.sql deleted file mode 100644 index b2f96bd18e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181008210200__source-deleted-at-field.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source ADD deleted_date datetime; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181009110500__fix-fe-analysis-types.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181009110500__fix-fe-analysis-types.sql deleted file mode 100644 index 158c738d35..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181009110500__fix-fe-analysis-types.sql +++ /dev/null @@ -1,45 +0,0 @@ -UPDATE ${ohdsiSchema}.fe_analysis -SET stat_type = 'DISTRIBUTION' -WHERE type = 'PRESET' and design IN ( - -- DemographicsAge.sql - 'DemographicsAge', - -- DemographicsTime.sql - 'DemographicsPriorObservationTime', - 'DemographicsPostObservationTime', - 'DemographicsTimeInCohort', - -- Chads2.sql - 'Chads2', - -- Chads2Vasc.sql - 'Chads2Vasc', - -- ConceptCounts.sql - 'DistinctConditionCountLongTerm', - 'DistinctConditionCountMediumTerm', - 'DistinctConditionCountShortTerm', - 'DistinctIngredientCountLongTerm', - 'DistinctIngredientCountMediumTerm', - 'DistinctIngredientCountShortTerm', - 'DistinctProcedureCountLongTerm', - 'DistinctProcedureCountMediumTerm', - 'DistinctProcedureCountShortTerm', - 'DistinctMeasurementCountLongTerm', - 'DistinctMeasurementCountMediumTerm', - 'DistinctMeasurementCountShortTerm', - 'DistinctObservationCountLongTerm', - 'DistinctObservationCountMediumTerm', - 'DistinctObservationCountShortTerm', - 'VisitCountLongTerm', - 'VisitCountMediumTerm', - 'VisitCountShortTerm', - 'VisitConceptCountLongTerm', - 'VisitConceptCountMediumTerm', - 'VisitConceptCountShortTerm', - -- MeasurementValue.sql - 'MeasurementValueAnyTimePrior', - 'MeasurementValueLongTerm', - 'MeasurementValueMediumTerm', - 'MeasurementValueShortTerm', - -- CharlsonIndex.sql - 'CharlsonIndex', - -- Dcsi.sql - 'Dcsi' -); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181009115500__fix-ple-plp-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181009115500__fix-ple-plp-permissions.sql deleted file mode 100644 index 19d8678d22..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181009115500__fix-ple-plp-permissions.sql +++ /dev/null @@ -1,47 +0,0 @@ --- Estimation - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:post', 'Create Estimation'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:get', 'Get Estimation list'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:get', 'Get Estimation instance'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:copy:get', 'Copy Estimation instance'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:download:get', 'Download Estimation package'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:export:get', 'Export Estimation'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'estimation:post', - 'estimation:get', - 'estimation:*:get', - 'estimation:*:copy:get', - 'estimation:*:download:get', - 'estimation:*:export:get' -) -AND sr.name IN ('Atlas users'); - --- Prediction - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:post', 'Create Prediction'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:get', 'Get Prediction list'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:get', 'Get Prediction instance'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:copy:get', 'Copy Prediction instance'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:download:get', 'Download Prediction package'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:export:get', 'Export Prediction'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'prediction:post', - 'prediction:get', - 'prediction:*:get', - 'prediction:*:copy:get', - 'prediction:*:download:get', - 'prediction:*:export:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181010133216__schema-add-job-is-canceled.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181010133216__schema-add-job-is-canceled.sql deleted file mode 100644 index 494bd592cf..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181010133216__schema-add-job-is-canceled.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info ADD is_canceled BIT NOT NULL DEFAULT 0; - -ALTER TABLE ${ohdsiSchema}.concept_set_generation_info ADD is_canceled BIT NOT NULL DEFAULT 0; - -ALTER TABLE ${ohdsiSchema}.feas_study_generation_info ADD is_canceled BIT NOT NULL DEFAULT 0; - -ALTER TABLE ${ohdsiSchema}.ir_execution ADD is_canceled BIT NOT NULL DEFAULT 0; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181010185036__schema-user-import-scheduler.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181010185036__schema-user-import-scheduler.sql deleted file mode 100644 index 97f8562b9f..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181010185036__schema-user-import-scheduler.sql +++ /dev/null @@ -1,44 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.user_import_job_seq START WITH 0; - -CREATE TABLE ${ohdsiSchema}.user_import_job( - id BIGINT NOT NULL CONSTRAINT df_user_import_job_id DEFAULT NEXT VALUE FOR ${ohdsiSchema}.user_import_job_seq, - is_enabled BIT NOT NULL DEFAULT 0, - start_date DATETIMEOFFSET, - frequency VARCHAR(100) NOT NULL, - recurring_times INTEGER NOT NULL, - recurring_until_date DATETIMEOFFSET, - cron VARCHAR(255) NOT NULL, - last_executed_at DATETIMEOFFSET, - executed_times INTEGER DEFAULT 0 NOT NULL, - is_closed BIT DEFAULT 0 NOT NULL, - provider_type VARCHAR(100) NOT NULL, - preserve_roles BIT NOT NULL DEFAULT 1, - CONSTRAINT pk_user_import_job PRIMARY KEY(id) -); - -CREATE TABLE ${ohdsiSchema}.user_import_job_weekdays( - user_import_job_id BIGINT NOT NULL, - day_of_week VARCHAR(100) NOT NULL, - CONSTRAINT pk_user_import_job_weekdays PRIMARY KEY(user_import_job_id, day_of_week) -); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:import:job:get', 'List user import jobs'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:import:job:post', 'Create new user import job'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:import:job:*:put', 'Update user import job'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:import:job:*:get', 'Get user import job'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:import:job:*:delete', 'Delete user import job'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:import:job:*:history:get', 'Get user import history'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'user:import:job:get', - 'user:import:job:post', - 'user:import:job:*:put', - 'user:import:job:*:get', - 'user:import:job:*:delete', - 'user:import:job:*:history:get') - AND sr.name IN ('admin'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql deleted file mode 100644 index ebd1030551..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181010185037__schema-user-import-scheduler-history.sql +++ /dev/null @@ -1,23 +0,0 @@ -CREATE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - provider_param.STRING_VAL as provider_type, - author_param.STRING_VAL as author - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS provider_param - ON job.JOB_EXECUTION_ID = provider_param.JOB_EXECUTION_ID AND provider_param.KEY_NAME = 'provider' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport' \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181015182101__role-group-mapping.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181015182101__role-group-mapping.sql deleted file mode 100644 index 72fbb6c083..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181015182101__role-group-mapping.sql +++ /dev/null @@ -1,17 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_role_group ADD job_id BIGINT; - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ADD CONSTRAINT fk_role_group_job FOREIGN KEY(job_id) - REFERENCES ${ohdsiSchema}.user_import_job(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.sec_role_group DROP CONSTRAINT UC_PROVIDER_GROUP_ROLE; - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ALTER COLUMN [provider] VARCHAR(100); -ALTER TABLE ${ohdsiSchema}.sec_role_group - ALTER COLUMN group_dn VARCHAR(4000); -ALTER TABLE ${ohdsiSchema}.sec_role_group - ALTER COLUMN group_name VARCHAR(1000); - -ALTER TABLE ${ohdsiSchema}.sec_role_group - ADD CONSTRAINT UC_PROVIDER_GROUP_ROLE UNIQUE(provider, group_dn, role_id, job_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql deleted file mode 100644 index 75139a3895..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181016171200__add_last_viewed_notifications_time.sql +++ /dev/null @@ -1,18 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user ADD last_viewed_notifications_time DATETIMEOFFSET; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'notifications:viewed:post', 'Remember last viewed notification timestamp'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'notifications:viewed:get', 'Get last viewed notification timestamp'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'notifications:get', 'Get notifications'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'notifications:viewed:post', - 'notifications:viewed:get', - 'notifications:get' -) -AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181024150353__separate_system_personal_roles.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181024150353__separate_system_personal_roles.sql deleted file mode 100644 index e2877740e5..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181024150353__separate_system_personal_roles.sql +++ /dev/null @@ -1,11 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_role ADD system_role BIT CONSTRAINT DF_ROLE_SYSTEM DEFAULT(0) NOT NULL -Go - -ALTER TABLE ${ohdsiSchema}.sec_role DROP CONSTRAINT sec_role_name_uq -Go - -UPDATE ${ohdsiSchema}.sec_role SET system_role = 1 - WHERE NOT EXISTS(SELECT * FROM ${ohdsiSchema}.sec_user WHERE [login] = sec_role.name) -Go - -ALTER TABLE ${ohdsiSchema}.sec_role ADD CONSTRAINT sec_role_name_uq UNIQUE (name, system_role); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181107165252__fe_criteria_type.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181107165252__fe_criteria_type.sql deleted file mode 100644 index a83027c147..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181107165252__fe_criteria_type.sql +++ /dev/null @@ -1,8 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD criteria_type VARCHAR(255) -GO - -UPDATE fc - SET criteria_type = CASE WHEN fa.stat_type = 'PREVALENCE' THEN 'CRITERIA_GROUP' - WHEN fa.stat_type = 'DISTRIBUTION' THEN 'WINDOWED_CRITERIA' END -FROM ${ohdsiSchema}.fe_analysis_criteria fc -JOIN ${ohdsiSchema}.fe_analysis fa ON fa.id = fc.fe_analysis_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.6.0.20181128150100__add_missing_pk.sql b/src/main/resources/db/migration/sqlserver/V2.6.0.20181128150100__add_missing_pk.sql deleted file mode 100644 index 2457f929d1..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.6.0.20181128150100__add_missing_pk.sql +++ /dev/null @@ -1,99 +0,0 @@ -SELECT DISTINCT cohort_characterization_id, cohort_id -INTO ${ohdsiSchema}.cc_cohort_tmp -FROM ${ohdsiSchema}.cc_cohort; - -DELETE FROM ${ohdsiSchema}.cc_cohort; - -INSERT INTO ${ohdsiSchema}.cc_cohort (cohort_characterization_id, cohort_id) -SELECT cohort_characterization_id, cohort_id -FROM ${ohdsiSchema}.cc_cohort_tmp; - -TRUNCATE TABLE ${ohdsiSchema}.cc_cohort_tmp; -DROP TABLE ${ohdsiSchema}.cc_cohort_tmp; -GO - -IF OBJECT_ID('${ohdsiSchema}.pk_analysis_exec', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD CONSTRAINT pk_analysis_exec PRIMARY KEY (id); -GO -IF OBJECT_ID('${ohdsiSchema}.pk_an_gen_info', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.analysis_generation_info ADD CONSTRAINT pk_an_gen_info PRIMARY KEY (job_execution_id); -GO - -UPDATE ${ohdsiSchema}.cc_analysis SET fe_analysis_id = 0 WHERE cc_analysis.fe_analysis_id IS NULL; -ALTER TABLE ${ohdsiSchema}.cc_analysis ALTER COLUMN fe_analysis_id INT NOT NULL; -GO -IF OBJECT_ID('${ohdsiSchema}.pk_cc_analysis', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cc_analysis ADD CONSTRAINT pk_cc_analysis PRIMARY KEY (cohort_characterization_id, fe_analysis_id); -GO - -IF OBJECT_ID('${ohdsiSchema}.pk_cc_cohort', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cc_cohort ADD CONSTRAINT pk_cc_cohort PRIMARY KEY (cohort_characterization_id, cohort_id); -GO -IF OBJECT_ID('${ohdsiSchema}.pk_cca_exec_ext', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cca_execution_ext ADD CONSTRAINT pk_cca_exec_ext PRIMARY KEY (cca_execution_id); -GO -IF OBJECT_ID('${ohdsiSchema}.pk_cohort', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort ADD CONSTRAINT pk_cohort PRIMARY KEY (cohort_definition_id, subject_id); -GO - -UPDATE ${ohdsiSchema}.cohort_analysis_list_xref SET source_id = 0 WHERE source_id IS NULL; -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ALTER COLUMN source_id INT NOT NULL; -GO -UPDATE ${ohdsiSchema}.cohort_analysis_list_xref SET cohort_id = 0 WHERE cohort_id IS NULL; -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ALTER COLUMN cohort_id INT NOT NULL; -GO -UPDATE ${ohdsiSchema}.cohort_analysis_list_xref SET analysis_id = 0 WHERE analysis_id IS NULL; -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ALTER COLUMN analysis_id INT NOT NULL; -GO -IF OBJECT_ID('${ohdsiSchema}.pk_cohort_an_list_xref', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort_analysis_list_xref ADD CONSTRAINT pk_cohort_an_list_xref PRIMARY KEY (source_id, cohort_id, analysis_id); -GO - -UPDATE ${ohdsiSchema}.cohort_concept_map SET cohort_definition_id = 0 WHERE cohort_definition_id IS NULL; -ALTER TABLE ${ohdsiSchema}.cohort_concept_map ALTER COLUMN cohort_definition_id INT NOT NULL; -GO -IF OBJECT_ID('${ohdsiSchema}.pk_cohort_concept_map', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort_concept_map ADD CONSTRAINT pk_cohort_concept_map PRIMARY KEY (cohort_definition_id); -GO - -IF OBJECT_ID('${ohdsiSchema}.pk_cohort_incl', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort_inclusion ADD CONSTRAINT pk_cohort_incl PRIMARY KEY (cohort_definition_id); -IF OBJECT_ID('${ohdsiSchema}.pk_cohort_incl_res', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort_inclusion_result ADD CONSTRAINT pk_cohort_incl_res PRIMARY KEY (cohort_definition_id); -IF OBJECT_ID('${ohdsiSchema}.pk_cohort_incl_stat', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort_inclusion_stats ADD CONSTRAINT pk_cohort_incl_stat PRIMARY KEY (cohort_definition_id); -IF OBJECT_ID('${ohdsiSchema}.pk_cohort_summary_stat', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.cohort_summary_stats ADD CONSTRAINT pk_cohort_summary_stat PRIMARY KEY (cohort_definition_id); -IF OBJECT_ID('${ohdsiSchema}.pk_feas_st_incl_stats', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.feas_study_inclusion_stats ADD CONSTRAINT pk_feas_st_incl_stats PRIMARY KEY (study_id); -IF OBJECT_ID('${ohdsiSchema}.pk_feas_st_indx_stats', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.feas_study_index_stats ADD CONSTRAINT pk_feas_st_indx_stats PRIMARY KEY (study_id); -IF OBJECT_ID('${ohdsiSchema}.pk_feas_study_result', 'PK') IS NULL -ALTER TABLE ${ohdsiSchema}.feas_study_result ADD CONSTRAINT pk_feas_study_result PRIMARY KEY (study_id); -GO - -UPDATE ${ohdsiSchema}.feasibility_inclusion SET name = '' WHERE name IS NULL; -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion ALTER COLUMN name VARCHAR(255) NOT NULL; -GO -ALTER TABLE ${ohdsiSchema}.feasibility_inclusion ADD CONSTRAINT pk_feas_inclusion PRIMARY KEY (study_id, sequence); -GO - -UPDATE ${ohdsiSchema}.heracles_analysis SET analysis_id = 0 WHERE analysis_id IS NULL; -ALTER TABLE ${ohdsiSchema}.heracles_analysis ALTER COLUMN analysis_id INT NOT NULL; -GO -ALTER TABLE ${ohdsiSchema}.heracles_analysis ADD CONSTRAINT pk_heracles_analysis PRIMARY KEY (analysis_id); - -ALTER TABLE ${ohdsiSchema}.source ADD CONSTRAINT pk_source PRIMARY KEY (SOURCE_ID); - -ALTER TABLE ${ohdsiSchema}.cohort_features ADD id INT IDENTITY CONSTRAINT pk_cohort_features PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.cohort_features_analysis_ref ADD id INT IDENTITY CONSTRAINT pk_coh_features_an_ref PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.cohort_features_dist ADD id INT IDENTITY CONSTRAINT pk_coh_features_dist PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.cohort_features_ref ADD id INT IDENTITY CONSTRAINT pk_coh_features_ref PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.heracles_heel_results ADD id INT IDENTITY CONSTRAINT pk_heracles_heel_res PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.heracles_results ADD id INT IDENTITY CONSTRAINT pk_heracles_res PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.heracles_results_dist ADD id INT IDENTITY CONSTRAINT pk_heracles_res_dist PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_analysis_dist ADD id INT IDENTITY CONSTRAINT pk_ir_analysis_dist PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_analysis_result ADD id INT IDENTITY CONSTRAINT pk_ir_analysis_res PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_analysis_strata_stats ADD id INT IDENTITY CONSTRAINT pk_ir_an_strata_stats PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.ir_strata ADD id INT IDENTITY CONSTRAINT pk_ir_strata PRIMARY KEY; -ALTER TABLE ${ohdsiSchema}.penelope_laertes_uni_pivot ADD id INT IDENTITY CONSTRAINT pk_penelope_lae_uni_piv PRIMARY KEY; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20181119162154__cc_strata.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20181119162154__cc_strata.sql deleted file mode 100644 index 015f5defd0..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20181119162154__cc_strata.sql +++ /dev/null @@ -1,39 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cc_strata_seq START WITH 1; - -CREATE TABLE ${ohdsiSchema}.cc_strata( - id BIGINT NOT NULL, - cohort_characterization_id BIGINT NOT NULL, - name VARCHAR(255) NOT NULL, - expression VARCHAR(MAX) -); - -ALTER TABLE ${ohdsiSchema}.cc_strata - ADD CONSTRAINT df_cc_strata_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.cc_strata_seq) FOR id; - -ALTER TABLE ${ohdsiSchema}.cc_strata - ADD CONSTRAINT pk_cc_strata_id PRIMARY KEY(id); - -ALTER TABLE ${ohdsiSchema}.cc_strata - ADD CONSTRAINT fk_cc_strata_cc FOREIGN KEY (cohort_characterization_id) - REFERENCES ${ohdsiSchema}.cohort_characterization(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -CREATE SEQUENCE ${ohdsiSchema}.cc_strata_conceptset_seq START WITH 1; - -CREATE TABLE ${ohdsiSchema}.cc_strata_conceptset( - id BIGINT NOT NULL, - cohort_characterization_id BIGINT NOT NULL, - expression VARCHAR(MAX) -); - -ALTER TABLE ${ohdsiSchema}.cc_strata_conceptset - ADD CONSTRAINT df_cc_strata_conceptset_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.cc_strata_conceptset_seq) FOR id; - -ALTER TABLE ${ohdsiSchema}.cc_strata_conceptset - ADD CONSTRAINT pk_cc_strata_conceptset_id PRIMARY KEY(id); - -ALTER TABLE ${ohdsiSchema}.cc_strata_conceptset - ADD CONSTRAINT fk_cc_strata_conceptset_cc FOREIGN KEY (cohort_characterization_id) - REFERENCES ${ohdsiSchema}.cohort_characterization(id) ON UPDATE NO ACTION ON DELETE CASCADE; - -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD stratified_by VARCHAR(255); -ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD strata_only BIT DEFAULT 0; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190116183005__default_stat_type.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190116183005__default_stat_type.sql deleted file mode 100644 index 0e89d41cbb..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190116183005__default_stat_type.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis - ADD CONSTRAINT df_stat_type DEFAULT 'PREVALENCE' FOR stat_type; - -UPDATE ${ohdsiSchema}.fe_analysis -SET stat_type = 'PREVALENCE' -WHERE stat_type IS NULL; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190125113000__fe-analysis-created-modified.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190125113000__fe-analysis-created-modified.sql deleted file mode 100644 index 53c8e90a17..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190125113000__fe-analysis-created-modified.sql +++ /dev/null @@ -1,11 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD created_by_id INT NULL, CONSTRAINT FK_fac_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD created_date DATETIME CONSTRAINT DF_fe_analysis_criteria_cd DEFAULT(GETDATE()); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD modified_by_id INT NULL, CONSTRAINT FK_fac_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria - ADD modified_date DATETIME; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql deleted file mode 100644 index ce87c8e558..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190125141500__fe-analysis-criteria_stat-type-fix.sql +++ /dev/null @@ -1,18 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.fe_analysis ALTER COLUMN stat_type VARCHAR(255) NOT NULL; - -UPDATE ${ohdsiSchema}.fe_analysis_criteria - SET criteria_type = - CASE WHEN criteria_type IS NULL THEN - CASE - WHEN fa.stat_type = 'PREVALENCE' THEN 'CRITERIA_GROUP' - WHEN fa.stat_type = 'DISTRIBUTION' THEN - CASE WHEN expression LIKE '{"Criteria":%' - THEN 'WINDOWED_CRITERIA' - ELSE 'DEMOGRAPHIC_CRITERIA' - END - END - ELSE - criteria_type - END -FROM ${ohdsiSchema}.fe_analysis fa -WHERE fa.id = fe_analysis_criteria.fe_analysis_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190128134827__replace_identities_with_sequences.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190128134827__replace_identities_with_sequences.sql deleted file mode 100644 index ec69fd7a3c..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190128134827__replace_identities_with_sequences.sql +++ /dev/null @@ -1,129 +0,0 @@ --- Table 'analysis_execution' -CREATE SEQUENCE ${ohdsiSchema}.analysis_execution_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.analysis_execution SET id_tmp = id; -GO - -IF OBJECT_ID('${ohdsiSchema}.pk_analysis_exec', 'PK') IS NOT NULL -ALTER TABLE ${ohdsiSchema}.analysis_execution DROP CONSTRAINT pk_analysis_exec; -GO - -ALTER TABLE ${ohdsiSchema}.analysis_execution DROP COLUMN id; -GO - -EXEC sp_rename '[${ohdsiSchema}].analysis_execution.id_tmp', 'id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.analysis_execution ALTER COLUMN id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.analysis_execution - ADD CONSTRAINT df_analysis_execution_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.analysis_execution_sequence) FOR id; -GO - -ALTER TABLE ${ohdsiSchema}.analysis_execution ADD CONSTRAINT pk_analysis_exec PRIMARY KEY (id); -GO - -DECLARE @analysis_execution_id_val INT; -DECLARE @sql NVARCHAR(MAX); -SELECT @analysis_execution_id_val = coalesce(MAX(id), 1) FROM ${ohdsiSchema}.analysis_execution; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.analysis_execution_sequence RESTART WITH ' + CAST(@analysis_execution_id_val as NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - --- Table 'cca_execution' -CREATE SEQUENCE ${ohdsiSchema}.cca_execution_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.cca_execution ADD cca_execution_id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.cca_execution SET cca_execution_id_tmp = cca_execution_id; -GO - -IF OBJECT_ID('${ohdsiSchema}.fk_sif_cca_execution') IS NOT NULL -ALTER TABLE ${ohdsiSchema}.output_files DROP CONSTRAINT fk_sif_cca_execution; -GO - -IF OBJECT_ID('${ohdsiSchema}.fk_sof_cca_execution') IS NOT NULL -ALTER TABLE ${ohdsiSchema}.input_files DROP CONSTRAINT fk_sof_cca_execution; -GO - -IF OBJECT_ID('${ohdsiSchema}.cca_execution_pk', 'PK') IS NOT NULL -ALTER TABLE ${ohdsiSchema}.cca_execution DROP CONSTRAINT cca_execution_pk; -GO - -ALTER TABLE ${ohdsiSchema}.cca_execution DROP COLUMN cca_execution_id; -GO - -EXEC sp_rename '[${ohdsiSchema}].cca_execution.cca_execution_id_tmp', 'cca_execution_id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.cca_execution ALTER COLUMN cca_execution_id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.cca_execution - ADD CONSTRAINT df_cca_execution_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.cca_execution_sequence) FOR cca_execution_id; -GO - -ALTER TABLE ${ohdsiSchema}.cca_execution ADD CONSTRAINT cca_execution_pk PRIMARY KEY (cca_execution_id); -GO - -ALTER TABLE ${ohdsiSchema}.output_files - ADD CONSTRAINT fk_sif_cca_execution FOREIGN KEY (cca_execution_id) - REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) - ON DELETE CASCADE; -GO - -ALTER TABLE ${ohdsiSchema}.input_files - ADD CONSTRAINT fk_sof_cca_execution FOREIGN KEY (cca_execution_id) - REFERENCES ${ohdsiSchema}.cca_execution (cca_execution_id) - ON DELETE CASCADE; -GO - -DECLARE @cca_execution_id_val INT; -DECLARE @sql NVARCHAR(MAX); -SELECT @cca_execution_id_val = coalesce(MAX(cca_execution_id), 1) FROM ${ohdsiSchema}.cca_execution; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.cca_execution_sequence RESTART WITH ' + CAST(@cca_execution_id_val as NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO - --- Table 'HERACLES_VISUALIZATION_DATA' -CREATE SEQUENCE ${ohdsiSchema}.heracles_visualization_data_sequence; -GO - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ADD id_tmp INT; -GO - -UPDATE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA SET id_tmp = id; -GO - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP CONSTRAINT pk_heracles_viz_data; -GO - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP COLUMN id; -GO - -EXEC sp_rename '[${ohdsiSchema}].HERACLES_VISUALIZATION_DATA.id_tmp', 'id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ALTER COLUMN id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA - ADD CONSTRAINT df_heracles_vis_data_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.heracles_visualization_data_sequence) FOR id; -GO - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA ADD CONSTRAINT pk_heracles_viz_data PRIMARY KEY CLUSTERED(id asc); -GO - -DECLARE @heracles_vis_data_id_val INT; -DECLARE @sql NVARCHAR(MAX); -SELECT @heracles_vis_data_id_val = coalesce(MAX(id), 1) FROM ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.heracles_visualization_data_sequence RESTART WITH ' + CAST(@heracles_vis_data_id_val as NVARCHAR(20)) + ';'; -EXEC sp_executesql @sql; -GO diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql deleted file mode 100644 index 70a325b281..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190129083000__fe-analysis-created-modified-fix.sql +++ /dev/null @@ -1,28 +0,0 @@ -DECLARE @ConstraintName nvarchar(200); - -SELECT @ConstraintName = Name FROM SYS.DEFAULT_CONSTRAINTS -WHERE PARENT_OBJECT_ID = OBJECT_ID('${ohdsiSchema}.fe_analysis_criteria') - AND PARENT_COLUMN_ID = (SELECT column_id FROM sys.columns -WHERE NAME = 'created_date' - AND object_id = OBJECT_ID('${ohdsiSchema}.fe_analysis_criteria')); - -IF @ConstraintName IS NOT NULL - EXEC('ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP CONSTRAINT ' + @ConstraintName); -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP CONSTRAINT FK_fac_su_cid; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP CONSTRAINT FK_fac_su_mid; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN created_by_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN created_date; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN modified_by_id; -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria DROP COLUMN modified_date; - -ALTER TABLE ${ohdsiSchema}.fe_analysis - ADD created_by_id INT NULL, CONSTRAINT FK_fa_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis - ADD created_date DATETIME CONSTRAINT DF_fe_analysis_cd DEFAULT(GETDATE()); - -ALTER TABLE ${ohdsiSchema}.fe_analysis - ADD modified_by_id INT NULL, CONSTRAINT FK_fa_su_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -ALTER TABLE ${ohdsiSchema}.fe_analysis - ADD modified_date DATETIME; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql deleted file mode 100644 index aa78164dc1..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190201090000__bjep_idx_and_cleanup.sql +++ /dev/null @@ -1 +0,0 @@ -CREATE INDEX BJEP_JOB_STRING_IDX ON ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS (JOB_EXECUTION_ID,STRING_VAL); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql deleted file mode 100644 index 87db150084..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190204153542__cc-and-pathway-cancel-job-permissions.sql +++ /dev/null @@ -1,31 +0,0 @@ --- cohort-characterizations permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(value, ':post', ':delete'), - 'Cancel Generation of Cohort Characterization with ID = ' + REPLACE(REPLACE(value, 'cohort-characterization:', ''), ':generation:*:post', '') - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - WHERE sp.VALUE like 'cohort-characterization:%:generation:*:post' AND NOT sp.value = 'cohort-characterization:*:generation:*:post'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - select srp.role_id, spc.id as permission_id from ${ohdsiSchema}.SEC_PERMISSION sp - join ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - join ${ohdsiSchema}.SEC_PERMISSION spc ON replace(replace(sp.value, 'cohort-characterization:', ''),':generation:*:post', '') = replace(replace(spc.value, 'cohort-characterization:', ''),':generation:*:delete', '') - and spc.value like 'cohort-characterization:%:generation:*:delete' - where sp.VALUE like 'cohort-characterization:%:generation:*:post'; - --- pathways permissions - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(value, ':post', ':delete'), - 'Cancel Generation of Pathway Analysis with ID = ' + REPLACE(REPLACE(value, 'cohort-characterization:', ''), ':generation:*:post', '') - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - WHERE sp.VALUE like 'pathway-analysis:%:generation:*:post' AND NOT sp.value = 'pathway-analysis:*:generation:*:post'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - select srp.role_id, spc.id as permission_id from ${ohdsiSchema}.SEC_PERMISSION sp - join ${ohdsiSchema}.SEC_ROLE_PERMISSION srp on srp.PERMISSION_ID = sp.ID - join ${ohdsiSchema}.SEC_PERMISSION spc ON replace(replace(sp.value, 'pathway-analysis:', ''),':generation:*:post', '') = replace(replace(spc.value, 'pathway-analysis:', ''),':generation:*:delete', '') - and spc.value like 'pathway-analysis:%:generation:*:delete' - where sp.VALUE like 'pathway-analysis:%:generation:*:post'; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190204183006__ir-cancel-job-permission.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190204183006__ir-cancel-job-permission.sql deleted file mode 100644 index ef940ac612..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190204183006__ir-cancel-job-permission.sql +++ /dev/null @@ -1,10 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:execute:*:delete', 'Cancel IR analysis execution'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:*:execute:*:delete' - ) - AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql deleted file mode 100644 index 7e8f077a18..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190205174343__cc-pathway-copy-permissions.sql +++ /dev/null @@ -1,23 +0,0 @@ --- cc copy permissions - -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION(id, "value", "description") - VALUES (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:post', ''); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:post' - ) AND sr.name IN ('Atlas users'); - --- pathway copy permissions - -INSERT INTO ${ohdsiSchema}.SEC_PERMISSION(id, "value", "description") -VALUES (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:post', ''); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'pathway-analysis:*:post' - ) AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190208164736__analysis_execution-add-job_id.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190208164736__analysis_execution-add-job_id.sql deleted file mode 100644 index 6518663397..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190208164736__analysis_execution-add-job_id.sql +++ /dev/null @@ -1,9 +0,0 @@ -IF COL_LENGTH('${ohdsiSchema}.analysis_execution', 'job_execution_id') IS NULL - ALTER TABLE ${ohdsiSchema}.analysis_execution ADD job_execution_id BIGINT; -GO - -alter table ${ohdsiSchema}.analysis_execution drop column analysis_id, analysis_type, duration, sec_user_id, executed, source_id, update_password; -GO - -exec sp_rename '${ohdsiSchema}.analysis_execution', 'ee_analysis_status'; -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql deleted file mode 100644 index 40cf483e12..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190211181105__prediction-estimation-generation-permissions.sql +++ /dev/null @@ -1,23 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, "value", "description") - VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:generation:*:post', 'Execute Prediction Generation Job'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:generation:get', 'View Prediction Generations'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:generation:*:result:get', 'View Prediction Generation Results'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in ('prediction:*:generation:*:post', 'prediction:*:generation:get', 'prediction:generation:*:result:get') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, "value", "description") - VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:generation:*:post', 'Execute Estimation Generation Job'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:generation:get', 'View Estimation Generations'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:generation:*:result:get', 'View Estimation Generation Results'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in ('estimation:*:generation:*:post', 'estimation:*:generation:get', 'estimation:generation:*:result:get') - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190211182000__permissions-fixes.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190211182000__permissions-fixes.sql deleted file mode 100644 index adc209bbba..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190211182000__permissions-fixes.sql +++ /dev/null @@ -1,64 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:*:get' val - UNION ALL - SELECT 'vocabulary:%s:included-concepts:count:post' - UNION ALL - SELECT 'vocabulary:%s:resolveConceptSetExpression:post' - UNION ALL - SELECT 'vocabulary:%s:lookup:identifiers:post' - UNION ALL - SELECT 'vocabulary:%s:lookup:identifiers:ancestors:post' - UNION ALL - SELECT 'vocabulary:%s:lookup:mapped:post' - UNION ALL - SELECT 'vocabulary:%s:compare:post' - UNION ALL - SELECT 'vocabulary:%s:optimize:post' - UNION ALL - SELECT 'cdmresults:%s:*:get' - UNION ALL - SELECT 'cdmresults:%s:*:*:get' - UNION ALL - SELECT 'cdmresults:%s:conceptRecordCount:post' - UNION ALL - SELECT 'cohortresults:%s:*:*:get' - UNION ALL - SELECT 'cohortresults:%s:*:*:*:get' - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:expression:get', 'Resolve concept set expression'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:generationinfo:get', 'Get generation info for concept set'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:check:get', 'Get cohort definition design checks'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'sqlrender:translate:post' , 'Translate SQL'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:info' , 'Get IR info'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'job:type:*:name:*:get' , 'Get IR info'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'conceptset:*:expression:get', - 'conceptset:*:generationinfo:get', - 'cohortdefinition:*:check:get', - 'sqlrender:translate:post', - 'ir:*:info', - 'job:type:*:name:*:get' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190212154939__analysis_execution_files.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190212154939__analysis_execution_files.sql deleted file mode 100644 index dd77b738b3..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190212154939__analysis_execution_files.sql +++ /dev/null @@ -1,22 +0,0 @@ -IF COL_LENGTH('${ohdsiSchema}.output_files', 'media_type') IS NULL - ALTER TABLE ${ohdsiSchema}.output_files ADD media_type VARCHAR(255); -GO - -ALTER TABLE ${ohdsiSchema}.output_files DROP CONSTRAINT fk_sif_cca_execution; -ALTER TABLE ${ohdsiSchema}.output_files DROP COLUMN cca_execution_id; - -ALTER TABLE ${ohdsiSchema}.input_files DROP CONSTRAINT fk_sof_cca_execution; -ALTER TABLE ${ohdsiSchema}.input_files DROP COLUMN cca_execution_id; - -IF COL_LENGTH('${ohdsiSchema}.output_files', 'execution_id') IS NULL -ALTER TABLE ${ohdsiSchema}.output_files ADD execution_id INTEGER; -GO -IF COL_LENGTH('${ohdsiSchema}.input_files', 'execution_id') IS NULL -ALTER TABLE ${ohdsiSchema}.input_files ADD execution_id INTEGER; -GO -IF OBJECT_ID('${ohdsiSchema}.output_file_seq', 'SO') IS NULL -CREATE SEQUENCE ${ohdsiSchema}.output_file_seq START WITH 1; -GO -IF OBJECT_ID('${ohdsiSchema}.input_file_seq', 'SO') IS NULL -CREATE SEQUENCE ${ohdsiSchema}.input_file_seq START WITH 1; -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.201902130900__source-sequences.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.201902130900__source-sequences.sql deleted file mode 100644 index 574f5e798b..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.201902130900__source-sequences.sql +++ /dev/null @@ -1,95 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.source_sequence - AS BIGINT - START WITH 1 - NO CYCLE; -GO - --- Create sid,, -ALTER TABLE ${ohdsiSchema}.source ADD sid INT; -GO - -UPDATE ${ohdsiSchema}.source SET sid = SOURCE_ID; -GO - --- DROP constraints and columns,, -ALTER TABLE ${ohdsiSchema}.source DROP CONSTRAINT PK_source; -GO - -ALTER TABLE ${ohdsiSchema}.source DROP COLUMN SOURCE_ID; -GO - --- sid is column,, -EXEC sp_rename '[${ohdsiSchema}].source.sid', 'SOURCE_ID', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.source ALTER COLUMN SOURCE_ID INT NOT NULL; -GO - - -ALTER TABLE ${ohdsiSchema}.source ADD CONSTRAINT DF_source_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.source_sequence) FOR SOURCE_ID; -GO - -ALTER TABLE ${ohdsiSchema}.source ADD CONSTRAINT PK_source PRIMARY KEY clustered(SOURCE_ID asc); -GO - --- DECLARE current id -DECLARE @cur_id_val INT; -DECLARE @sql NVARCHAR(MAX); - --- GET current ID for source table --- and resetting number -SELECT @cur_id_val = coalesce(MAX(SOURCE_ID), 1) FROM ${ohdsiSchema}.source; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.source_sequence RESTART WITH ' + CAST(@cur_id_val as NVARCHAR(20)) + ';'; - -EXEC sp_executesql @sql; -GO - - -CREATE SEQUENCE ${ohdsiSchema}.source_daimon_sequence - AS BIGINT - START WITH 1 - NO CYCLE; -GO - --- Create source diamon id,, -ALTER TABLE ${ohdsiSchema}.source_daimon ADD sd_id INT; -GO - -UPDATE ${ohdsiSchema}.source_daimon SET sd_id = source_daimon_id; -GO - --- DROP previous column -DECLARE @pk nvarchar(512); -SELECT @pk = Name FROM SYS.KEY_CONSTRAINTS WHERE [type] = 'PK' AND PARENT_OBJECT_ID = OBJECT_ID('${ohdsiSchema}.source_daimon') - -IF @pk IS NOT NULL -EXEC('ALTER TABLE ${ohdsiSchema}.source_daimon DROP CONSTRAINT ' + @pk); -GO - -ALTER TABLE ${ohdsiSchema}.source_daimon DROP COLUMN source_daimon_id; -GO - --- sd_id is column,, -EXEC sp_rename '[${ohdsiSchema}].source_daimon.sd_id', 'source_daimon_id', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.source_daimon ALTER COLUMN source_daimon_id INT NOT NULL; -GO - -ALTER TABLE ${ohdsiSchema}.source_daimon ADD CONSTRAINT DF_source_daimon_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.source_daimon_sequence) FOR source_daimon_id; -GO - -ALTER TABLE ${ohdsiSchema}.source_daimon ADD CONSTRAINT PK_source_daimon PRIMARY KEY clustered(source_daimon_id asc); -GO - --- DECLARE current id -DECLARE @cur_id_val INT; -DECLARE @sql NVARCHAR(MAX); - --- GET current id for previous source_daimon table --- and resetting number -SELECT @cur_id_val = coalesce(MAX(source_daimon_id), 1) FROM ${ohdsiSchema}.source_daimon; -SET @sql = N'ALTER SEQUENCE ${ohdsiSchema}.source_daimon_sequence RESTART WITH ' + CAST(@cur_id_val as NVARCHAR(20)) + ';'; - -EXEC sp_executesql @sql; -GO diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190213133000__generations-views-fixes.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190213133000__generations-views-fixes.sql deleted file mode 100644 index ff4fa3574a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190213133000__generations-views-fixes.sql +++ /dev/null @@ -1,44 +0,0 @@ --- MS SQL 2017 only fix - -ALTER VIEW ${ohdsiSchema}.cc_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(cc_id_param.string_val AS INTEGER) cc_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ); -GO - -ALTER VIEW ${ohdsiSchema}.pathway_analysis_generation as ( -SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job -JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' -JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' -LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id -); -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190213161124__add-fk-to-source-daimon.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190213161124__add-fk-to-source-daimon.sql deleted file mode 100644 index 655edd0c98..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190213161124__add-fk-to-source-daimon.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source_daimon - ADD CONSTRAINT FK_source_daimon_source_id FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source (source_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190214110000__permissions-fixes-2.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190214110000__permissions-fixes-2.sql deleted file mode 100644 index 42f0a00f98..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190214110000__permissions-fixes-2.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:design:get', 'Get cohort characterization design'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:design:get', 'Get cohort characterization design list'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:design:get', - 'cohort-characterization:design:get' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190214145000__permissions-fixes-3.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190214145000__permissions-fixes-3.sql deleted file mode 100644 index 7211a31ab2..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190214145000__permissions-fixes-3.sql +++ /dev/null @@ -1,32 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:concept:*:get' val - UNION ALL - SELECT 'vocabulary:%s:concept:*:related:get' - UNION ALL - SELECT 'cohortdefinition:*:cancel:%s:get' - UNION ALL - SELECT 'featureextraction:query:prevalence:*:%s:get' - UNION ALL - SELECT 'featureextraction:query:distributions:*:%s:get' - UNION ALL - SELECT 'featureextraction:explore:prevalence:*:%s:*:get' - UNION ALL - SELECT 'featureextraction:generate:%s:*:get' - UNION ALL - SELECT 'featureextraction:generatesql:%s:*:get' - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190215113000__permissions-fixes-4.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190215113000__permissions-fixes-4.sql deleted file mode 100644 index 6595c098a9..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190215113000__permissions-fixes-4.sql +++ /dev/null @@ -1,29 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:search:post' val - ) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:check:post', 'Fix cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohortdefinition:*:check:post' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql deleted file mode 100644 index 1c6cf439fe..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190220113500__permissions-fixes-ir-profile.sql +++ /dev/null @@ -1,43 +0,0 @@ -DELETE -FROM ${ohdsiSchema}.sec_role_permission -WHERE permission_id IN (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value NOT IN ('user:me:get')) -AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'public'); - -DELETE -FROM ${ohdsiSchema}.sec_role_permission -WHERE permission_id IN (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value IN ('ir:*:execute:*:get', 'ir:*:execute:*:delete', '*:person:*:get')) -AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; - -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - REPLACE(CAST(new_perms.val AS VARCHAR), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:execute:%s:get' val - UNION ALL - SELECT 'ir:*:execute:%s:delete' - UNION ALL - SELECT '%s:person:*:get' - ) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get' AND sp.value <> 'cohortdefinition:*:generate:*:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; - --- Allow Atlas users to see list of sources -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'configuration:edit:ui' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql deleted file mode 100644 index d4826bc05a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190222113000__permissions-fixes-source-codes-import.sql +++ /dev/null @@ -1,18 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'vocabulary:%s:lookup:sourcecodes:post' val - ) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190222154724__permission-fixes-conceptsets.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190222154724__permission-fixes-conceptsets.sql deleted file mode 100644 index 4064a12bfa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190222154724__permission-fixes-conceptsets.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:export:get', 'Export ConceptSet'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:export:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190225165203__plp_gen_view_fixes.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190225165203__plp_gen_view_fixes.sql deleted file mode 100644 index a872a7613d..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190225165203__plp_gen_view_fixes.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(plp_id_param.string_val AS INTEGER) prediction_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190225165752__estimation_gen_view_fixes.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190225165752__estimation_gen_view_fixes.sql deleted file mode 100644 index b034c8a18a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190225165752__estimation_gen_view_fixes.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.design design, - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql deleted file mode 100644 index 679a2d891a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190226160020__permissions-fixes-cohort-export-conceptsets.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:export:conceptset:get', 'Export ConceptSet'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:export:conceptset:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql deleted file mode 100644 index 95183483e6..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190228160000__permissions-fixes-cc-explore.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:explore:prevalence:*:*:*:get', 'Explore covariate in Cohort Characterization'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:generation:*:explore:prevalence:*:*:*:get' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190301130000__cc-unique-stratas.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190301130000__cc-unique-stratas.sql deleted file mode 100644 index 19e0b8dbaa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190301130000__cc-unique-stratas.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cc_strata ADD CONSTRAINT cc_strata_name_uq UNIQUE (cohort_characterization_id, name); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304084500__plp-ple-import.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304084500__plp-ple-import.sql deleted file mode 100644 index 6c3ee03dce..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304084500__plp-ple-import.sql +++ /dev/null @@ -1,13 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:import:post', 'Import PLP analyses'); - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:import:post', 'Import PLE analyses'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'prediction:import:post', - 'estimation:import:post' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304131519__standardize-permissions-cc.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304131519__standardize-permissions-cc.sql deleted file mode 100644 index 8136dacf28..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304131519__standardize-permissions-cc.sql +++ /dev/null @@ -1,28 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where - value like 'cohort-characterization:%:generation:*:post' or - value like 'cohort-characterization:%:generation:*:delete' - ); -delete from ${ohdsiSchema}.sec_permission where - value like 'cohort-characterization:%:generation:*:post' or - value like 'cohort-characterization:%:generation:*:delete'; - -alter table ${ohdsiSchema}.sec_permission add for_role_id int; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( - SELECT 'cohort-characterization:*:generation:%s:post' val UNION ALL - SELECT 'cohort-characterization:*:generation:%s:delete' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id - FROM ${ohdsiSchema}.sec_permission sp - WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304160255__standardize-permissions-pathways.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304160255__standardize-permissions-pathways.sql deleted file mode 100644 index b48b57ce43..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304160255__standardize-permissions-pathways.sql +++ /dev/null @@ -1,28 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where - value like 'pathway-analysis:%:generation:*:post' or - value like 'pathway-analysis:%:generation:*:delete' - ); -delete from ${ohdsiSchema}.sec_permission where - value like 'pathway-analysis:%:generation:*:post' or - value like 'pathway-analysis:%:generation:*:delete'; - -alter table ${ohdsiSchema}.sec_permission add for_role_id int; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( -SELECT 'pathway-analysis:*:generation:%s:post' val UNION ALL -SELECT 'pathway-analysis:*:generation:%s:delete' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304162609__standardize-permissions-ir.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304162609__standardize-permissions-ir.sql deleted file mode 100644 index e9a2cf8004..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304162609__standardize-permissions-ir.sql +++ /dev/null @@ -1,45 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('ir:*:delete')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('ir:*:info')); - -delete from ${ohdsiSchema}.sec_permission where - value in ('ir:*:info'); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) - values - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:info:get', 'Get IR info'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:*:info:get' - ) - AND sr.name IN ('Atlas users'); - - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value like 'ir:%:report:*:get'); -delete from ${ohdsiSchema}.sec_permission where value like 'ir:%:report:*:get'; - -alter table ${ohdsiSchema}.sec_permission add for_role_id int; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:report:%s:get' val - ) new_perms - WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id - FROM ${ohdsiSchema}.sec_permission sp - WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304213000__standardize-permissions-cohorts.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304213000__standardize-permissions-cohorts.sql deleted file mode 100644 index e8f6361f99..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304213000__standardize-permissions-cohorts.sql +++ /dev/null @@ -1,10 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('cohortdefinition:*:put', 'cohortdefinition:*:delete')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); - -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('cohortdefinition:delete')); - --- Dummy permission: there is no such endpoint -delete from ${ohdsiSchema}.sec_permission where - value in ('cohortdefinition:delete'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql deleted file mode 100644 index b3103c7982..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304220000__standardize-permissions-conceptsets.sql +++ /dev/null @@ -1,3 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission where - permission_id in (select id from ${ohdsiSchema}.sec_permission where value in ('conceptset:*:delete', 'conceptset:*:put', 'conceptset:*:items:put')) - AND role_id = (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304220500__role-moderator.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190304220500__role-moderator.sql deleted file mode 100644 index 8e1a13ed75..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190304220500__role-moderator.sql +++ /dev/null @@ -1,36 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role(id, name, system_role) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_role_sequence, 'Moderator', 1); - -insert into ${ohdsiSchema}.sec_permission(id, value, description) -values - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:put', 'Edit any Cohort Characterization'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:delete', 'Delete any Cohort Characterization'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:put', 'Edit any Pathways analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:delete', 'Delete any Pathways analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:put', 'Edit any IR analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:info:*:delete', 'Delete any IR analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:put', 'Edit any Estimation analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:delete', 'Delete any Estimation analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:put', 'Edit any Prediction analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:delete', 'Delete any Prediction analysis'); - --- 16 perms -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - -- All Concept Sets edit and delete - 'conceptset:*:delete', 'conceptset:*:put', 'conceptset:*:items:put', - -- All Cohort Definitions edit and delete - 'cohortdefinition:*:put', 'cohortdefinition:*:delete', - -- All CC edit and delete - 'cohort-characterization:*:put', 'cohort-characterization:*:delete', - -- All Pathways edit and delete - 'pathway-analysis:*:put', 'pathway-analysis:*:delete', - -- All IRs edit and delete - 'ir:*:put', 'ir:*:delete', 'ir:*:info:*:delete', - -- All Estimation analyses edit and delete - 'estimation:*:put', 'estimation:*:delete', - -- All Prediction analyses edit and delete - 'prediction:*:put', 'prediction:*:delete' -) AND sr.name IN ('Moderator'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190305123620__ir-executioninfo-permissions.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190305123620__ir-executioninfo-permissions.sql deleted file mode 100644 index f74f98dc06..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190305123620__ir-executioninfo-permissions.sql +++ /dev/null @@ -1,18 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( - SELECT 'ir:*:info:%s:get' val -) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190306094500__sources-endpoint-permission.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190306094500__sources-endpoint-permission.sql deleted file mode 100644 index 7181ad8857..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190306094500__sources-endpoint-permission.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, permission_id, role_id) -SELECT - NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, - (select id from ${ohdsiSchema}.sec_permission where value in ('source:*:get')) permission_id, - (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'public') role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190306154500__rename_heracles_seq.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190306154500__rename_heracles_seq.sql deleted file mode 100644 index 98acd0e700..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190306154500__rename_heracles_seq.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA DROP CONSTRAINT df_heracles_vis_data_id; -GO - -exec sp_rename @objname = '${ohdsiSchema}.heracles_visualization_data_sequence', @newname = 'heracles_vis_data_sequence'; - -ALTER TABLE ${ohdsiSchema}.HERACLES_VISUALIZATION_DATA - ADD CONSTRAINT df_heracles_vis_data_id DEFAULT (NEXT VALUE FOR ${ohdsiSchema}.heracles_vis_data_sequence) FOR [id]; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql deleted file mode 100644 index 1638acdc7a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190311152238__permissions-fixes-ir-sql.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:sql:post', 'Generate SQL from Incidence Rates expression'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'ir:sql:post' -) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190311182048__fix_vocab_search_permissions.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190311182048__fix_vocab_search_permissions.sql deleted file mode 100644 index 0f9869c4fb..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190311182048__fix_vocab_search_permissions.sql +++ /dev/null @@ -1,24 +0,0 @@ -delete from ${ohdsiSchema}.sec_role_permission - where permission_id in (select id from ${ohdsiSchema}.sec_permission where value = 'vocabulary:*:search:*:get'); - -delete from ${ohdsiSchema}.sec_permission - where value = 'vocabulary:*:search:*:get'; - -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -insert into ${ohdsiSchema}.sec_permission(id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'cohortdefinition:*:generate:', ''), ':get', '')), role_id -FROM ${ohdsiSchema}.sec_permission sp -JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -CROSS JOIN ( -SELECT 'vocabulary:%s:search:*:get' val -) new_perms -WHERE sp.value LIKE 'cohortdefinition:*:generate:%:get'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190312164953__fix_permission_id_seq_value.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190312164953__fix_permission_id_seq_value.sql deleted file mode 100644 index 3928daa01a..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190312164953__fix_permission_id_seq_value.sql +++ /dev/null @@ -1,8 +0,0 @@ --- Updates sec_permission_id_seq to maximum identity + 1 -DECLARE @maxid INTEGER; -SELECT @maxid = (SELECT max(id) + 1 FROM ${ohdsiSchema}.sec_permission); -DECLARE @statement NVARCHAR(256); - -SET @statement = N'ALTER SEQUENCE ${ohdsiSchema}.sec_permission_id_seq RESTART WITH ' + CAST(@maxid AS VARCHAR(12)) + ';'; - -EXEC sp_executesql @statement; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190313161353__fix_permission_heracles.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190313161353__fix_permission_heracles.sql deleted file mode 100644 index 159df82208..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190313161353__fix_permission_heracles.sql +++ /dev/null @@ -1,20 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD role_id_tmp INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description, role_id_tmp) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), REPLACE(new_perms.descr, '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'cohortresults:%s:*:healthcareutilization:*:*:get' val, 'Get cohort results baseline on period for Source with SourceKey = %s' descr - UNION ALL - SELECT 'cohortresults:%s:*:healthcareutilization:*:*:*:get', 'Get cohort results baseline on occurrence for Source with SourceKey = %s' - ) new_perms -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.role_id_tmp, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.role_id_tmp IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN role_id_tmp; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql deleted file mode 100644 index 079a219f35..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190314171003__alter-ir-execution-status-as-string.sql +++ /dev/null @@ -1,13 +0,0 @@ -EXEC sp_rename '${ohdsiSchema}.ir_execution.status', 'int_status', 'COLUMN'; -GO - -ALTER TABLE ${ohdsiSchema}.ir_execution ADD status VARCHAR(128); -GO - -UPDATE ${ohdsiSchema}.ir_execution SET status = CASE int_status - WHEN -1 THEN 'ERROR' - WHEN 0 THEN 'PENDING' - WHEN 1 THEN 'RUNNING' - WHEN 2 THEN 'COMPLETE' - END; -ALTER TABLE ${ohdsiSchema}.ir_execution DROP COLUMN int_status; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql b/src/main/resources/db/migration/sqlserver/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql deleted file mode 100644 index c1b9aa1210..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.0.20190328172203__added-ir-report-perms-for-sources.sql +++ /dev/null @@ -1,23 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission - ADD role_id_tmp INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description, role_id_tmp) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq id, REPLACE(new_perms.val, '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', '')) value, - REPLACE(new_perms.descr, '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', '')) description, srp.role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:*:report:%s:get' val, 'Get IR generation report with SourceKey = %s' descr - ) new_perms - WHERE sp.value LIKE 'source:%:access' - AND NOT EXISTS(SELECT tsp.id FROM ${ohdsiSchema}.sec_permission tsp JOIN ${ohdsiSchema}.sec_role_permission tsrp ON tsrp.permission_id = tsp.id - AND tsp.value = REPLACE(new_perms.val, '%s', REPLACE(REPLACE(sp.value, 'source:', ''), ':access', ''))); - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.role_id_tmp, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.role_id_tmp IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission - DROP COLUMN role_id_tmp; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.1.20190405124500__split_output_files.sql b/src/main/resources/db/migration/sqlserver/V2.7.1.20190405124500__split_output_files.sql deleted file mode 100644 index bc7ecaee10..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.1.20190405124500__split_output_files.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE TABLE ${ohdsiSchema}.output_file_contents ( - output_file_id BIGINT, - file_contents VARBINARY(max), - CONSTRAINT output_file_contents_pkey PRIMARY KEY (output_file_id) -) -GO - -ALTER TABLE ${ohdsiSchema}.output_file_contents - ADD CONSTRAINT fk_ofc_of_id FOREIGN KEY (output_file_id) - REFERENCES ${ohdsiSchema}.output_files (id) - ON UPDATE NO ACTION ON DELETE CASCADE -GO - -INSERT INTO ${ohdsiSchema}.output_file_contents (output_file_id, file_contents) -SELECT id, file_contents -FROM ${ohdsiSchema}.output_files -GO - -ALTER TABLE ${ohdsiSchema}.output_files DROP COLUMN file_contents -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.2.20190429174506__run-as_permission.sql b/src/main/resources/db/migration/sqlserver/V2.7.2.20190429174506__run-as_permission.sql deleted file mode 100644 index 6861a90923..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.2.20190429174506__run-as_permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'user:runas:post', 'Sign in as another user'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value = 'user:runas:post') sp - CROSS JOIN (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'admin' AND system_role = 1) sr; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.2.20190528153600__fix-ir-report-perms.sql b/src/main/resources/db/migration/sqlserver/V2.7.2.20190528153600__fix-ir-report-perms.sql deleted file mode 100644 index 5113a14189..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.2.20190528153600__fix-ir-report-perms.sql +++ /dev/null @@ -1,18 +0,0 @@ -alter table ${ohdsiSchema}.sec_permission add for_role_id int; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, REPLACE(CAST(new_perms.val AS VARCHAR(255)), '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), role_id - FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id - CROSS JOIN ( - SELECT 'ir:%s:info:*:delete' val - ) new_perms - WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id - FROM ${ohdsiSchema}.sec_permission sp - WHERE sp.for_role_id IS NOT NULL; - -alter table ${ohdsiSchema}.sec_permission drop column for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.4.20190905163100__cache-clear-permission.sql b/src/main/resources/db/migration/sqlserver/V2.7.4.20190905163100__cache-clear-permission.sql deleted file mode 100644 index c88ee9c6a7..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.4.20190905163100__cache-clear-permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cache:clear:get', 'Clear middle-tier caches'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM (SELECT id FROM ${ohdsiSchema}.sec_permission WHERE value = 'cache:clear:get') sp - CROSS JOIN (SELECT id FROM ${ohdsiSchema}.sec_role WHERE name = 'admin' AND system_role = 1) sr; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.7.8.20200728164800__add_conceptset_permission.sql b/src/main/resources/db/migration/sqlserver/V2.7.8.20200728164800__add_conceptset_permission.sql deleted file mode 100644 index ae721977c1..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.7.8.20200728164800__add_conceptset_permission.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:expression:*:get', 'Resolve concept set expression with data source'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'conceptset:*:expression:*:get' -) -AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190319114500__delete_design_column_from_views.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190319114500__delete_design_column_from_views.sql deleted file mode 100644 index c153d1bf45..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190319114500__delete_design_column_from_views.sql +++ /dev/null @@ -1,88 +0,0 @@ -ALTER VIEW ${ohdsiSchema}.cc_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(cc_id_param.string_val AS INTEGER) cc_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id - ); -GO - -ALTER VIEW ${ohdsiSchema}.estimation_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id - ); -GO - -ALTER VIEW ${ohdsiSchema}.pathway_analysis_generation as ( -SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id -FROM ${ohdsiSchema}.batch_job_execution job -JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' -JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' -LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id -); -GO - -ALTER VIEW ${ohdsiSchema}.prediction_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(plp_id_param.string_val AS INTEGER) prediction_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id -); -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190326152000__fix-role-perms.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190326152000__fix-role-perms.sql deleted file mode 100644 index b6ed772467..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190326152000__fix-role-perms.sql +++ /dev/null @@ -1,3 +0,0 @@ -UPDATE ${ohdsiSchema}.sec_permission -SET value = REPLACE(value, ':post', ':put') -WHERE value LIKE 'role:%:post'; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190326180601__add-cc-download-permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190326180601__add-cc-download-permission.sql deleted file mode 100644 index 4d7238cdb1..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190326180601__add-cc-download-permission.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:download:get', 'Download Cohort Characterization package'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:*:download:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190405140828__cc_generation_export_all.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190405140828__cc_generation_export_all.sql deleted file mode 100644 index d7702cc822..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190405140828__cc_generation_export_all.sql +++ /dev/null @@ -1,17 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:result:export:post', 'Export all cohort characterization generation results'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:result:count:get', 'Get total count of results for this generation'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohort-characterization:generation:*:result:export:post', - 'cohort-characterization:generation:*:result:count:get' -) -AND sr.name IN ('Atlas users'); - -UPDATE ${ohdsiSchema}.sec_permission -SET value = 'cohort-characterization:generation:*:result:post' -WHERE VALUE = 'cohort-characterization:generation:*:result:get' \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190414180601__add-entity-exists-permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190414180601__add-entity-exists-permission.sql deleted file mode 100644 index a35f313835..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190414180601__add-entity-exists-permission.sql +++ /dev/null @@ -1,39 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:exists:get', 'Check name uniqueness of concept set'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:exists:get', 'Check name uniqueness of cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:exists:get', 'Check name uniqueness of pathway analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:exists:get', 'Check name uniqueness of cohort characterization'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:*:exists:get', 'Check name uniqueness of feature analysis'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:exists:get', 'Check name uniqueness of incidence rate'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:*:exists:get', 'Check name uniqueness of prediction'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:*:exists:get', 'Check name uniqueness of estimation'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:exists:get' -AND sr.name IN ('concept set creator', 'Moderator'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'cohortdefinition:*:exists:get' -AND sr.name IN ('cohort creator', 'Moderator'); - - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'pathway-analysis:*:exists:get', - 'cohort-characterization:*:exists:get', - 'feature-analysis:*:exists:get', - 'ir:*:exists:get', - 'prediction:*:exists:get', - 'estimation:*:exists:get' -) -AND sr.name IN ('Atlas users', 'Moderator'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql deleted file mode 100644 index 19cfc32364..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190417120100__pathway-analysis-minSegmentLength.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.pathway_analysis ADD min_segment_length INT; diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql deleted file mode 100644 index ee57d8ba63..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190424140601__add-entity-exists-permission-cohort-concept.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:exists:get' -AND sr.name = 'Atlas users'; - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'cohortdefinition:*:exists:get' -AND sr.name = 'Atlas users'; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql deleted file mode 100644 index 07a4eeeddf..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190424150601__add-unique-name-constraint-to-entities.sql +++ /dev/null @@ -1,529 +0,0 @@ --- Alter Concept Set table - -CREATE PROCEDURE ${ohdsiSchema}.rename_cs_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT concept_set_name FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT concept_set_name FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.concept_set - SET concept_set_name = concept_set_name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE concept_set_id = - (SELECT TOP (1) concept_set_id FROM ${ohdsiSchema}.concept_set - WHERE concept_set_name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - SET @k = (SELECT COUNT(*) FROM (SELECT concept_set_name FROM ${ohdsiSchema}.concept_set - GROUP BY concept_set_name - HAVING COUNT(*) > 1) AS temp); - END; - - ALTER TABLE ${ohdsiSchema}.concept_set ADD CONSTRAINT uq_cs_name UNIQUE (concept_set_name); -END; -GO - -EXEC ${ohdsiSchema}.rename_cs_names; -GO - --- Alter Cohort Definition table - -CREATE PROCEDURE ${ohdsiSchema}.rename_cd_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.cohort_definition - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE id = - (SELECT TOP (1) id FROM ${ohdsiSchema}.cohort_definition - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.cohort_definition - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - END; - - ALTER TABLE ${ohdsiSchema}.cohort_definition ADD CONSTRAINT uq_cd_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_cd_names; -GO - --- Alter Cohort Characterization table - -CREATE PROCEDURE ${ohdsiSchema}.rename_cc_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.cohort_characterization - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE id = - (SELECT TOP (1) id FROM ${ohdsiSchema}.cohort_characterization - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.cohort_characterization - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - END; - - ALTER TABLE ${ohdsiSchema}.cohort_characterization ADD CONSTRAINT uq_cc_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_cc_names; -GO - --- Alter Fe Analysis Table - -CREATE PROCEDURE ${ohdsiSchema}.rename_fe_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.fe_analysis - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE id = - (SELECT TOP (1) id FROM ${ohdsiSchema}.fe_analysis - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.fe_analysis - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - END; - - ALTER TABLE ${ohdsiSchema}.fe_analysis ADD CONSTRAINT uq_fe_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_fe_names; -GO - --- Alter Pathway Analysis Table - -CREATE PROCEDURE ${ohdsiSchema}.rename_pw_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.pathway_analysis - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE id = - (SELECT TOP (1) id FROM ${ohdsiSchema}.pathway_analysis - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.pathway_analysis - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - END; - - ALTER TABLE ${ohdsiSchema}.pathway_analysis ADD CONSTRAINT uq_pw_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_pw_names; -GO - --- Alter IR Analysis Table - -CREATE PROCEDURE ${ohdsiSchema}.rename_ir_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.ir_analysis - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE id = - (SELECT TOP (1) id FROM ${ohdsiSchema}.ir_analysis - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.ir_analysis - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - END; - - ALTER TABLE ${ohdsiSchema}.ir_analysis ADD CONSTRAINT uq_ir_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_ir_names; -GO - --- Alter Estimation table - -CREATE PROCEDURE ${ohdsiSchema}.rename_estimation_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.estimation - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE estimation_id = - (SELECT TOP (1) estimation_id FROM ${ohdsiSchema}.estimation - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.estimation - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - END; - - ALTER TABLE ${ohdsiSchema}.estimation ADD CONSTRAINT uq_es_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_estimation_names; -GO - --- Alter Prediction table - -CREATE PROCEDURE ${ohdsiSchema}.rename_prediction_names AS -BEGIN - DECLARE @duplicate_names TABLE(id int IDENTITY (1, 1), duplicate_name varchar(255)); - DECLARE @name_repeats TABLE (id int IDENTITY (1, 1), repeat_number int); - DECLARE @amount_of_duplicate_names int; - DECLARE @k int; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - - WHILE @k > 0 - BEGIN - INSERT INTO @duplicate_names - SELECT name FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1; - - INSERT INTO @name_repeats - SELECT COUNT(*) FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1; - - SET @amount_of_duplicate_names = (SELECT COUNT(*) FROM @duplicate_names); - - DECLARE @i int = 1; - DECLARE @j int = 1; - DECLARE @name_repeat int = 0; - DECLARE @dupl_name varchar(255); - - WHILE @i <= coalesce(@amount_of_duplicate_names, 0) - BEGIN - SET @name_repeat = (SELECT repeat_number FROM @name_repeats WHERE id = @i); - WHILE @j <= coalesce(@name_repeat, 0) - BEGIN - SET @dupl_name = (SELECT duplicate_name FROM @duplicate_names WHERE id = @i); - - UPDATE ${ohdsiSchema}.prediction - SET name = name + ' (' + CAST(@j AS varchar(15)) + ')' - WHERE prediction_id = - (SELECT TOP (1) prediction_id FROM ${ohdsiSchema}.prediction - WHERE name = @dupl_name - ); - SET @j = @j + 1; - END; - SET @i = @i + 1; - SET @j = 1; - END; - - SET @k = (SELECT COUNT(*) FROM (SELECT name FROM ${ohdsiSchema}.prediction - GROUP BY name - HAVING COUNT(*) > 1) AS temp); - DELETE FROM @duplicate_names WHERE id = id; - DELETE FROM @name_repeats WHERE id = id; - END; - - ALTER TABLE ${ohdsiSchema}.prediction ADD CONSTRAINT uq_pd_name UNIQUE (name); -END; -GO - -EXEC ${ohdsiSchema}.rename_prediction_names; -GO - -DROP PROCEDURE ${ohdsiSchema}.rename_cs_names; -DROP PROCEDURE ${ohdsiSchema}.rename_cd_names; -DROP PROCEDURE ${ohdsiSchema}.rename_cc_names; -DROP PROCEDURE ${ohdsiSchema}.rename_fe_names; -DROP PROCEDURE ${ohdsiSchema}.rename_pw_names; -DROP PROCEDURE ${ohdsiSchema}.rename_ir_names; -DROP PROCEDURE ${ohdsiSchema}.rename_estimation_names; -DROP PROCEDURE ${ohdsiSchema}.rename_prediction_names; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190527190601__add_cs_name_copy_permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190527190601__add_cs_name_copy_permission.sql deleted file mode 100644 index e6fd2ecffb..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190527190601__add_cs_name_copy_permission.sql +++ /dev/null @@ -1,10 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:copy-name:get', 'Get name for copying concept set'); - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'conceptset:*:copy-name:get' -AND sr.name IN ('concept set creator', 'Moderator', 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql deleted file mode 100644 index b94d93214f..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190531181956__alter_job-execution-params_string-val.sql +++ /dev/null @@ -1,123 +0,0 @@ -DROP VIEW ${ohdsiSchema}.cc_generation; -DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; -DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; -DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; -DROP VIEW ${ohdsiSchema}.user_import_job_history; - -ALTER TABLE ${ohdsiSchema}.user_import_job ADD user_roles VARCHAR(MAX); -GO - -CREATE VIEW ${ohdsiSchema}.cc_generation as ( - SELECT - -- Spring batch based - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(cc_id_param.string_val AS INTEGER) cc_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -); -GO - -CREATE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; -GO - -CREATE VIEW ${ohdsiSchema}.pathway_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id); -GO - -CREATE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - CAST(plp_id_param.string_val AS INTEGER) prediction_id, - CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; -GO - -CREATE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - CAST(user_import_param.string_val AS INTEGER) user_import_id, - author_param.STRING_VAL as author - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.batch_job_execution_params user_import_param - ON job.job_execution_id = user_import_param.job_execution_id AND user_import_param.key_name = 'user_import_id' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport'; -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190604111801__ir_import_export_permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190604111801__ir_import_export_permission.sql deleted file mode 100644 index 7806e39938..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190604111801__ir_import_export_permission.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:design:post', 'Import Incidence Rates design'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:design:get', 'Export Incidence Rates design'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'ir:design:post', - 'ir:*:design:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190728224300__ds-common-entity.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190728224300__ds-common-entity.sql deleted file mode 100644 index 383c5257ce..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190728224300__ds-common-entity.sql +++ /dev/null @@ -1,11 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.source - ADD created_by_id INT NULL, CONSTRAINT FK_source_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -ALTER TABLE ${ohdsiSchema}.source - ADD created_date DATETIME; - -ALTER TABLE ${ohdsiSchema}.source - ADD modified_by_id INT NULL, CONSTRAINT FK_source_mid FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); - -ALTER TABLE ${ohdsiSchema}.source - ADD modified_date DATETIME; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190809215200__daimon-priority.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190809215200__daimon-priority.sql deleted file mode 100644 index 5bb7fbcf22..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190809215200__daimon-priority.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:daimon:priority:get', 'Get priority of Source Daimons'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'source:daimon:priority:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20190816173000__generation-cache.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20190816173000__generation-cache.sql deleted file mode 100644 index 1c1fc7d746..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20190816173000__generation-cache.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.generation_cache_sequence; - -CREATE TABLE ${ohdsiSchema}.generation_cache ( - id INTEGER DEFAULT NEXT VALUE FOR ${ohdsiSchema}.generation_cache_sequence, - type VARCHAR(255) NOT NULL, - design_hash VARCHAR(255) NOT NULL, - source_id INTEGER NOT NULL, - result_identifier INTEGER NOT NULL, - result_checksum VARCHAR(255), -- can be null in case of empty result set - created_date DATE NOT NULL, - CONSTRAINT PK_generation_cache PRIMARY KEY (id) -); - -ALTER TABLE ${ohdsiSchema}.generation_cache - ADD CONSTRAINT FK_gc_source_id_source FOREIGN KEY (source_id) -REFERENCES ${ohdsiSchema}.source (source_id) -ON UPDATE NO ACTION ON DELETE NO ACTION; - -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_result UNIQUE (type, source_id, result_identifier); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20191203200000__generation-cache-updates.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20191203200000__generation-cache-updates.sql deleted file mode 100644 index deab429850..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20191203200000__generation-cache-updates.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.generation_cache DROP CONSTRAINT uq_gc_result; -ALTER TABLE ${ohdsiSchema}.generation_cache DROP COLUMN result_identifier; -ALTER TABLE ${ohdsiSchema}.generation_cache DROP CONSTRAINT uq_gc_hash; -ALTER TABLE ${ohdsiSchema}.generation_cache ALTER COLUMN design_hash INTEGER; -ALTER TABLE ${ohdsiSchema}.generation_cache ADD CONSTRAINT uq_gc_hash UNIQUE (type, design_hash, source_id); diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20191219183702__migrate_feature_extraction_id.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20191219183702__migrate_feature_extraction_id.sql deleted file mode 100644 index c778765adc..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20191219183702__migrate_feature_extraction_id.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO ${ohdsiSchema}.fe_analysis(type, name, domain, descr, value, design, is_locked, stat_type) - values ('PRESET', 'Hospital Frailty Risk Score', 'CONDITION', 'The Hospital Frailty Risk Score score using all conditions prior to the window end.', null, 'Hfrs', 1, 'DISTRIBUTION'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200109100200__cohort_sample_tables.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200109100200__cohort_sample_tables.sql deleted file mode 100644 index 927913b4da..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200109100200__cohort_sample_tables.sql +++ /dev/null @@ -1,23 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.cohort_sample_sequence; - -CREATE TABLE ${ohdsiSchema}.cohort_sample( - id BIGINT PRIMARY KEY CLUSTERED NOT NULL, - name VARCHAR(255) NOT NULL, - cohort_definition_id INTEGER NOT NULL, - source_id INTEGER NOT NULL, - size INT NOT NULL, - age_min SMALLINT NULL, - age_max SMALLINT NULL, - age_mode VARCHAR(24), - gender_concept_ids VARCHAR(255) NULL, - created_by_id INTEGER, - created_date DATETIMEOFFSET, - modified_by_id INTEGER, - modified_date DATETIMEOFFSET, - CONSTRAINT fk_cohort_sample_definition_id FOREIGN KEY (cohort_definition_id) - REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE, - CONSTRAINT fk_cohort_sample_source_id FOREIGN KEY (source_id) - REFERENCES ${ohdsiSchema}.source (source_id) ON DELETE CASCADE -); - -CREATE INDEX idx_cohort_sample_source ON ${ohdsiSchema}.cohort_sample (cohort_definition_id, source_id); diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200109132902__fe_domain_null_fix.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200109132902__fe_domain_null_fix.sql deleted file mode 100644 index 5fec3a4f71..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200109132902__fe_domain_null_fix.sql +++ /dev/null @@ -1,14 +0,0 @@ -UPDATE ${ohdsiSchema}.fe_analysis -SET domain = 'MEASUREMENT' -WHERE type = 'PRESET' -AND design IN ( - 'MeasurementRangeGroupShortTerm', - 'MeasurementRangeGroupLongTerm', - 'MeasurementRangeGroupMediumTerm', - 'MeasurementRangeGroupAnyTimePrior', - 'MeasurementValueLongTerm', - 'MeasurementValueShortTerm', - 'MeasurementValueMediumTerm', - 'MeasurementValueAnyTimePrior' -) -; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200116134252__remove_obsolete_field_pathway_event_cohort_deleted_id.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200116134252__remove_obsolete_field_pathway_event_cohort_deleted_id.sql deleted file mode 100644 index 669f31ee11..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200116134252__remove_obsolete_field_pathway_event_cohort_deleted_id.sql +++ /dev/null @@ -1,13 +0,0 @@ --- at first removing default value -declare @command nvarchar(1000) -select @command = 'ALTER TABLE ${ohdsiSchema}.pathway_event_cohort DROP CONSTRAINT ' + d.name -from sys.tables t - join sys.default_constraints d on d.parent_object_id = t.object_id - join sys.columns c on c.object_id = t.object_id and c.column_id = d.parent_column_id -where - t.name = 'pathway_event_cohort' - and t.schema_id = schema_id('${ohdsiSchema}') - and c.name = 'is_deleted'; -execute (@command) - -ALTER TABLE ${ohdsiSchema}.pathway_event_cohort DROP COLUMN is_deleted; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql deleted file mode 100644 index 73751c94a1..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200122173000__insert_cohort_sample_permissions.sql +++ /dev/null @@ -1,19 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES -(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortsample:*:*:get', 'List cohort samples'), -(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortsample:*:*:*:get', 'Get single cohort samples'), -(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortsample:*:*:*:delete', 'Delete cohort sample'), -(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortsample:*:*:delete', 'Delete all cohort samples of a cohort.'), -(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortsample:*:*:post', 'Create cohort sample'), -(NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortsample:*:*:*:refresh:post', 'Refresh cohort sample'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortsample:*:*:get', - 'cohortsample:*:*:*:get', - 'cohortsample:*:*:*:delete', - 'cohortsample:*:*:delete', - 'cohortsample:*:*:post', - 'cohortsample:*:*:*:refresh:post' - ) AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql deleted file mode 100644 index 82c492923d..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200127101702__restore_rest_endpoint_perms.sql +++ /dev/null @@ -1,17 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'source:priorityVocabulary:get', 'Get source with highest priority vocabulary daimon' -; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:generation:*:result:get', 'Get cohort characterization generation results - 2.7.x compatible' -; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'source:priorityVocabulary:get', - 'cohort-characterization:generation:*:result:get' -) -AND sr.name IN ('Atlas users', 'Moderator') -; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200130124345__fe_analysis_aggregate.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200130124345__fe_analysis_aggregate.sql deleted file mode 100644 index 862b582566..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200130124345__fe_analysis_aggregate.sql +++ /dev/null @@ -1,97 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.fe_aggregate_sequence START WITH 1; - -CREATE TABLE ${ohdsiSchema}.fe_analysis_aggregate( - id INTEGER NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.fe_aggregate_sequence, - name VARCHAR(255) NOT NULL, - domain VARCHAR(255), - agg_function VARCHAR(255), - criteria_columns VARCHAR(MAX), - expression VARCHAR(MAX), - join_table VARCHAR(255), - join_type VARCHAR(255), - join_condition VARCHAR(MAX), - is_default BIT DEFAULT 0, - missing_means_zero BIT DEFAULT 0, - CONSTRAINT pk_fe_aggregate PRIMARY KEY(id) -); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD fe_aggregate_id INTEGER; - -INSERT INTO ${ohdsiSchema}.fe_analysis_aggregate(name, domain, agg_function, criteria_columns, expression, join_table, join_type, join_condition, is_default, missing_means_zero) VALUES - ('Events count', null, 'COUNT', null, '*', null, null, null, 1, 1), - ('Distinct start dates', null, 'COUNT', 'START_DATE', 'DISTINCT v.start_date', null, null, null, 0, 1), - ('Duration', null, null, 'DURATION', 'duration', null, null, null, 0, 0), - ('Duration (max)', null, 'MAX', 'DURATION', 'duration', null, null, null, 0, 0), - ('Duration (min)', null, 'MIN', 'DURATION', 'duration', null, null, null, 0, 0), - ('Duration (average)', null, 'AVG', 'DURATION', 'duration', null, null, null, 0, 0), - ('Value as number', 'MEASUREMENT', null, 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Value as number (max)', 'MEASUREMENT', 'MAX', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Value as number (min)', 'MEASUREMENT', 'MIN', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Value as number (average)', 'MEASUREMENT', 'AVG', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Range high', 'MEASUREMENT', null, 'RANGE_HIGH', 'range_high', null, null, null, 0, 0), - ('Range high (max)', 'MEASUREMENT', 'MAX', 'RANGE_HIGH', 'range_high', null, null, null, 0, 0), - ('Range high (min)', 'MEASUREMENT', 'MIN', 'RANGE_HIGH', 'range_high', null, null, null, 0, 0), - ('Range high (average)', 'MEASUREMENT', 'AVG', 'RANGE_HIGH', 'range_high', null, null, null, 0, 0), - ('Range low', 'MEASUREMENT', null, 'RANGE_LOW', 'range_low', null, null, null, 0, 0), - ('Range low (max)', 'MEASUREMENT', 'MAX', 'RANGE_LOW', 'range_low', null, null, null, 0, 0), - ('Range low (min)', 'MEASUREMENT', 'MIN', 'RANGE_LOW', 'range_low', null, null, null, 0, 0), - ('Range low (average)', 'MEASUREMENT', 'AVG', 'RANGE_LOW', 'range_low', null, null, null, 0, 0), - ('Distinct drug concepts per person', 'DRUG', 'COUNT', 'DOMAIN_CONCEPT', 'DISTINCT domain_concept', null, null, null, 0, 0), - ('Refills', 'DRUG', null, 'REFILLS', 'refills', null, null, null, 0, 0), - ('Refills (max)', 'DRUG', 'MAX', 'REFILLS', 'refills', null, null, null, 0, 0), - ('Refills (min)', 'DRUG', 'MIN', 'REFILLS', 'refills', null, null, null, 0, 0), - ('Refills (average)', 'DRUG', 'AVG', 'REFILLS', 'refills', null, null, null, 0, 0), - ('Quantity', 'DRUG', null, 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Quantity (max)', 'DRUG', 'MAX', 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Quantity (min)', 'DRUG', 'MIN', 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Quantity (average)', 'DRUG', 'AVG', 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Days supply', 'DRUG', null, 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0), - ('Days supply (max)', 'DRUG', 'MAX', 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0), - ('Days supply (min)', 'DRUG', 'MIN', 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0), - ('Days supply (average)', 'DRUG', 'AVG', 'DAYS_SUPPLY', 'days_supply', null, null, null, 0, 0), - ('Drug exposure count', 'DRUG_ERA', null, 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Drug exposure count (max)', 'DRUG_ERA', 'MAX', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Drug exposure count (min)', 'DRUG_ERA', 'MIN', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Drug exposure count (average)', 'DRUG_ERA', 'AVG', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Gap days', 'DRUG_ERA', null, 'GAP_DAYS', 'gap_days', null, null, null, 0, 0), - ('Gap days (max)', 'DRUG_ERA', 'MAX', 'GAP_DAYS', 'gap_days', null, null, null, 0, 0), - ('Gap days (min)', 'DRUG_ERA', 'MIN', 'GAP_DAYS', 'gap_days', null, null, null, 0, 0), - ('Gap days (average)', 'DRUG_ERA', 'AVG', 'GAP_DAYS', 'gap_days', null, null, null, 0, 0), - ('Condition occurrence count', 'CONDITION_ERA', null, 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Condition occurrence count (max)', 'CONDITION_ERA', 'MAX', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Condition occurrence count (min)', 'CONDITION_ERA', 'MIN', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Condition occurrence count (average)', 'CONDITION_ERA', 'AVG', 'ERA_OCCURRENCES', 'era_occurrences', null, null, null, 0, 0), - ('Value as number', 'OBSERVATION', null, 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Value as number (max)', 'OBSERVATION', 'MAX', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Value as number (min)', 'OBSERVATION', 'MIN', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Value as number (average)', 'OBSERVATION', 'AVG', 'VALUE_AS_NUMBER', 'value_as_number', null, null, null, 0, 0), - ('Quantity', 'PROCEDURE', null, 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Quantity (max)', 'PROCEDURE', 'MAX', 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Quantity (min)', 'PROCEDURE', 'MIN', 'QUANTITY', 'quantity', null, null, null, 0, 0), - ('Quantity (average)', 'PROCEDURE', 'AVG', 'QUANTITY', 'quantity', null, null, null, 0, 0); - -UPDATE - ${ohdsiSchema}.fe_analysis_criteria -SET - fe_aggregate_id = ag.id -FROM - ${ohdsiSchema}.fe_analysis_criteria feac JOIN - ${ohdsiSchema}.fe_analysis fea ON fea.id = feac.fe_analysis_id, - ${ohdsiSchema}.fe_analysis_aggregate ag -WHERE - ag.name = 'Events count' - AND fea.type = 'CRITERIA_SET' - AND fea.stat_type = 'DISTRIBUTION'; - -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:aggregates:get', 'List available aggregates for Feature Analyses'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'feature-analysis:aggregates:get' - ) AND sr.name IN ('Atlas users'); - -ALTER TABLE ${ohdsiSchema}.fe_analysis_criteria ADD CONSTRAINT fk_criteria_aggregate - FOREIGN KEY (fe_aggregate_id) REFERENCES ${ohdsiSchema}.fe_analysis_aggregate(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200325145111__check_required_params.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200325145111__check_required_params.sql deleted file mode 100644 index 250ab54efe..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200325145111__check_required_params.sql +++ /dev/null @@ -1,24 +0,0 @@ - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:check:post', 'Run diagnostics for cohort characterization params'); - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:check:post', 'Run diagnostics for pathway params'); - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:check:post', 'Run diagnostics for incident rates'); - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'prediction:check:post', 'Run diagnostics for prediction'); - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'estimation:check:post', 'Run diagnostics for estimation'); - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:check:post', 'Run diagnostics for cohort definition'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohort-characterization:check:post', - 'pathway-analysis:check:post', - 'ir:check:post', - 'prediction:check:post', - 'estimation:check:post', - 'cohortdefinition:check:post' - ) AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql deleted file mode 100644 index 3c52e04fc4..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200409133802__add-ir-permission-to-atlas-user.sql +++ /dev/null @@ -1,4 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr -WHERE sp.value = 'ir:*:put' AND sr.name = 'Atlas users'; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200413150815__gis_service_api.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200413150815__gis_service_api.sql deleted file mode 100644 index 05e709d168..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200413150815__gis_service_api.sql +++ /dev/null @@ -1,18 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'gis:cohort:*:bounds:*:get', 'Get gis bounds for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'gis:cohort:*:clusters:*:get', 'Get gis clusters for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'gis:cohort:*:density:*:get', 'Get gis density for source'); -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'gis:person:*:bounds:*:get', 'Get bounds for person'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'gis:cohort:*:bounds:*:get', - 'gis:cohort:*:clusters:*:get', - 'gis:cohort:*:density:*:get', - 'gis:person:*:bounds:*:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200427161830__modify_user_login.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200427161830__modify_user_login.sql deleted file mode 100644 index 28ad6c6c56..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200427161830__modify_user_login.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_user DROP CONSTRAINT sec_user_login_unique; - -ALTER TABLE ${ohdsiSchema}.sec_user ALTER COLUMN login VARCHAR(1024); - -ALTER TABLE ${ohdsiSchema}.sec_user ADD CONSTRAINT sec_user_login_unique UNIQUE (login); diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql deleted file mode 100644 index fb7ab6ccb1..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200428122109__add_created_by_to_cohort_generation_info.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.cohort_generation_info - ADD created_by_id INT NULL, CONSTRAINT FK_cohort_def_su_cid FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user(id); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200616112935__fe_check_permissions.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200616112935__fe_check_permissions.sql deleted file mode 100644 index 118da2cc31..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200616112935__fe_check_permissions.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:*:copy:get', 'Copy the specified feature analysis'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'feature-analysis:*:copy:get' - ) AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200724121114__daimon-priority-public.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200724121114__daimon-priority-public.sql deleted file mode 100644 index 0381888cea..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200724121114__daimon-priority-public.sql +++ /dev/null @@ -1,6 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'source:daimon:priority:get' - ) AND sr.name IN ('public'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql deleted file mode 100644 index 054731129e..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200811155100__remove-ir-put-permission-from-atlas-user.sql +++ /dev/null @@ -1,4 +0,0 @@ -DELETE FROM ${ohdsiSchema}.sec_role_permission WHERE - permission_id in (SELECT id FROM ${ohdsiSchema}.sec_permission sp WHERE sp.value = 'ir:*:put') - AND - role_id in (SELECT id FROM ${ohdsiSchema}.sec_role sr WHERE sr.name = 'Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20200903120903__drop-cohort-features-columns.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20200903120903__drop-cohort-features-columns.sql deleted file mode 100644 index c6ad6cc2a5..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20200903120903__drop-cohort-features-columns.sql +++ /dev/null @@ -1,37 +0,0 @@ -alter table ${ohdsiSchema}.cohort_generation_info drop column include_features; - -delete -from - ${ohdsiSchema}.sec_role_permission -where - id in ( - select - srp.id - from - ${ohdsiSchema}.sec_role_permission srp - join ${ohdsiSchema}.sec_permission sp on - sp.id = srp.permission_id - where - sp.value like 'featureextraction:query:prevalence:*:%:get' - or sp.value like 'featureextraction:query:distributions:*:%:get' - or sp.value like 'featureextraction:explore:prevalence:*:%:*:get' - or sp.value like 'featureextraction:generatesql:%:*:get' - or sp.value like 'featureextraction:generate:%:*:get'); - -delete -from - ${ohdsiSchema}.sec_permission -where - value like 'featureextraction:query:prevalence:*:%:get' - or value like 'featureextraction:query:distributions:*:%:get' - or value like 'featureextraction:explore:prevalence:*:%:*:get' - or value like 'featureextraction:generatesql:%:*:get' - or value like 'featureextraction:generate:%:*:get'; - -drop table ${ohdsiSchema}.cohort_features_dist; - -drop table ${ohdsiSchema}.cohort_features; - -drop table ${ohdsiSchema}.cohort_features_ref; - -drop table ${ohdsiSchema}.cohort_features_analysis_ref; diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.202010130001__print_friendly_security.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.202010130001__print_friendly_security.sql deleted file mode 100644 index 03fae789aa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.202010130001__print_friendly_security.sql +++ /dev/null @@ -1,12 +0,0 @@ - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:printfriendly:cohort:post', 'Get print-friendly HTML of cohort expression'); - INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:printfriendly:conceptsets:post', 'Get print-friendly HTML of conceptset list'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value IN ( - 'cohortdefinition:printfriendly:cohort:post', - 'cohortdefinition:printfriendly:conceptsets:post' - ) AND sr.name IN ('Atlas users'); diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql deleted file mode 100644 index f33f1356f3..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20201022120031__concept_ancestor_and_descendants.sql +++ /dev/null @@ -1,17 +0,0 @@ -ALTER TABLE ${ohdsiSchema}.sec_permission ADD for_role_id INTEGER; -GO - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, for_role_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, - REPLACE('vocabulary:%s:concept:*:ancestorAndDescendant:get', '%s', REPLACE(REPLACE(value, 'source:', ''), ':access', '')), - role_id -FROM ${ohdsiSchema}.sec_permission sp - JOIN ${ohdsiSchema}.sec_role_permission srp on sp.id = srp.permission_id -WHERE sp.value LIKE 'source:%:access'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (id, role_id, permission_id) -SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sp.for_role_id, sp.id -FROM ${ohdsiSchema}.sec_permission sp -WHERE sp.for_role_id IS NOT NULL; - -ALTER TABLE ${ohdsiSchema}.sec_permission DROP COLUMN for_role_id; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql deleted file mode 100644 index 9c5b801ff5..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.20201103171300__add_source_daimon_unique_constraint.sql +++ /dev/null @@ -1,9 +0,0 @@ -delete sd1 from ${ohdsiSchema}.source_daimon sd1 -where sd1.priority = -1 - and sd1.source_daimon_id < ( - select max(source_daimon_id) - from ${ohdsiSchema}.source_daimon sd2 - where sd1.source_id = sd2.source_id - and sd1.daimon_type = sd2.daimon_type); - -ALTER TABLE ${ohdsiSchema}.source_daimon ADD CONSTRAINT un_source_daimon UNIQUE (source_id,daimon_type); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.0.202012220000__fix_generation_view_try_cast.sql b/src/main/resources/db/migration/sqlserver/V2.8.0.202012220000__fix_generation_view_try_cast.sql deleted file mode 100644 index 258f39676c..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.0.202012220000__fix_generation_view_try_cast.sql +++ /dev/null @@ -1,123 +0,0 @@ -DROP VIEW ${ohdsiSchema}.cc_generation; -DROP VIEW ${ohdsiSchema}.estimation_analysis_generation; -DROP VIEW ${ohdsiSchema}.pathway_analysis_generation; -DROP VIEW ${ohdsiSchema}.prediction_analysis_generation; -DROP VIEW ${ohdsiSchema}.user_import_job_history; - -GO - -CREATE VIEW ${ohdsiSchema}.cc_generation as ( - SELECT - -- Spring batch based - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(cc_id_param.string_val AS INTEGER) cc_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params cc_id_param - ON job.job_execution_id = cc_id_param.job_execution_id AND cc_id_param.key_name = 'cohort_characterization_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id -); -GO - -CREATE VIEW ${ohdsiSchema}.estimation_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(estimation_id_param.string_val AS INTEGER) estimation_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params estimation_id_param ON job.job_execution_id = estimation_id_param.job_execution_id AND estimation_id_param.key_name = 'estimation_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; -GO - -CREATE VIEW ${ohdsiSchema}.pathway_analysis_generation as - (SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(pa_id_param.string_val AS INTEGER) pathway_analysis_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params pa_id_param - ON job.job_execution_id = pa_id_param.job_execution_id AND pa_id_param.key_name = 'pathway_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param - ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info - ON job.job_execution_id = gen_info.job_execution_id); -GO - -CREATE VIEW ${ohdsiSchema}.prediction_analysis_generation as - SELECT - job.job_execution_id id, - job.create_time start_time, - job.end_time end_time, - job.status status, - job.exit_message exit_message, - TRY_CAST(plp_id_param.string_val AS INTEGER) prediction_id, - TRY_CAST(source_param.string_val AS INTEGER) source_id, - passwd_param.string_val update_password, - -- Generation info based - gen_info.hash_code hash_code, - gen_info.created_by_id created_by_id, - -- Execution info based - exec_info.id analysis_execution_id - FROM ${ohdsiSchema}.batch_job_execution job - JOIN ${ohdsiSchema}.batch_job_execution_params plp_id_param ON job.job_execution_id = plp_id_param.job_execution_id AND plp_id_param.key_name = 'prediction_analysis_id' - JOIN ${ohdsiSchema}.batch_job_execution_params source_param ON job.job_execution_id = source_param.job_execution_id AND source_param.key_name = 'source_id' - JOIN ${ohdsiSchema}.batch_job_execution_params passwd_param ON job.job_execution_id = passwd_param.job_execution_id AND passwd_param.key_name = 'update_password' - LEFT JOIN ${ohdsiSchema}.ee_analysis_status exec_info ON job.job_execution_id = exec_info.job_execution_id - LEFT JOIN ${ohdsiSchema}.analysis_generation_info gen_info ON job.job_execution_id = gen_info.job_execution_id; -GO - - -CREATE VIEW ${ohdsiSchema}.user_import_job_history - AS - SELECT - job.job_execution_id as id, - job.start_time as start_time, - job.end_time as end_time, - job.status as status, - job.exit_code as exit_code, - job.exit_message as exit_message, - name_param.STRING_VAL as job_name, - TRY_CAST(user_import_param.string_val AS INTEGER) user_import_id, - author_param.STRING_VAL as author - FROM - ${ohdsiSchema}.BATCH_JOB_EXECUTION job - JOIN ${ohdsiSchema}.BATCH_JOB_INSTANCE instance ON instance.JOB_INSTANCE_ID = job.JOB_INSTANCE_ID - JOIN ${ohdsiSchema}.batch_job_execution_params name_param - ON job.job_execution_id = name_param.job_execution_id AND name_param.KEY_NAME = 'jobName' - JOIN ${ohdsiSchema}.batch_job_execution_params user_import_param - ON job.job_execution_id = user_import_param.job_execution_id AND user_import_param.key_name = 'user_import_id' - JOIN ${ohdsiSchema}.BATCH_JOB_EXECUTION_PARAMS author_param - ON job.JOB_EXECUTION_ID = author_param.JOB_EXECUTION_ID AND author_param.KEY_NAME = 'jobAuthor' - WHERE - instance.JOB_NAME = 'usersImport'; -GO \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.1.20210203163300__gis_service_add_check_source_permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.1.20210203163300__gis_service_add_check_source_permission.sql deleted file mode 100644 index d07846190d..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.1.20210203163300__gis_service_add_check_source_permission.sql +++ /dev/null @@ -1,7 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'gis:source:check:*:get', 'Check availability of geodata in source'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE sp.value = 'gis:source:check:*:get' AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.1.20210219100459__evidence_get_permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.1.20210219100459__evidence_get_permission.sql deleted file mode 100644 index 98c2f2207d..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.1.20210219100459__evidence_get_permission.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq,'evidence:*:negativecontrols:*:get','Get evidence information'; -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq,'evidence:*:druglabel:post','Get drug label information'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in - ( - 'evidence:*:negativecontrols:*:get', - 'evidence:*:druglabel:post' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.8.1.20210226100460__evidence_get_permission.sql b/src/main/resources/db/migration/sqlserver/V2.8.1.20210226100460__evidence_get_permission.sql deleted file mode 100644 index 717318d7b9..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.8.1.20210226100460__evidence_get_permission.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq,'evidence:*:drugconditionpairs:post','Get drug condition pairs information'; - -INSERT INTO ${ohdsiSchema}.sec_role_permission (role_id, permission_id) - SELECT sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission sp, ${ohdsiSchema}.sec_role sr - WHERE sp."value" in - ( - 'evidence:*:drugconditionpairs:post' - ) - AND sr.name IN ('Atlas users'); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.9.0.20210423125133__assets_tags.sql b/src/main/resources/db/migration/sqlserver/V2.9.0.20210423125133__assets_tags.sql deleted file mode 100644 index 6b92bbfb13..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.9.0.20210423125133__assets_tags.sql +++ /dev/null @@ -1,172 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) - VALUES - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'tag:get', 'List tags'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'tag:search:get', 'Search tags by name'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'tag:post', 'Create tag'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'tag:*:put', 'Update tag'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'tag:*:get', 'Get tag'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'tag:*:delete', 'Delete tag'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:tag:post', 'Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:tag:*:delete', 'Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:protectedtag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:protectedtag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:tag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:tag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:protectedtag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:protectedtag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:check:post','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:tag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:tag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:protectedtag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:protectedtag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:tag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:tag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:protectedtag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:protectedtag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:tag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:tag:*:delete','Unassign tag from cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:protectedtag:post','Assign tag to cohort definition'), - (NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:protectedtag:*:delete','Unassign tag from cohort definition') -; - - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'tag:get', - 'tag:search:get', - 'tag:post', - 'tag:*:put', - 'tag:*:get', - 'tag:*:delete', - 'cohortdefinition:*:tag:post', - 'cohortdefinition:*:tag:*:delete', - 'conceptset:*:tag:post', - 'conceptset:*:tag:*:delete', - 'conceptset:check:post', - 'cohort-characterization:*:tag:post', - 'cohort-characterization:*:tag:*:delete', - 'ir:*:tag:post', - 'ir:*:tag:*:delete', - 'pathway-analysis:*:tag:post', - 'pathway-analysis:*:tag:*:delete') - AND sr.name IN ('Atlas users'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission sp, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:protectedtag:post', - 'cohortdefinition:*:protectedtag:*:delete', - 'conceptset:*:protectedtag:post', - 'conceptset:*:protectedtag:*:delete', - 'cohort-characterization:*:protectedtag:post', - 'cohort-characterization:*:protectedtag:*:delete', - 'ir:*:protectedtag:post', - 'ir:*:protectedtag:*:delete', - 'pathway-analysis:*:protectedtag:post', - 'pathway-analysis:*:protectedtag:*:delete') - AND sr.name IN ('admin'); - - -CREATE SEQUENCE ${ohdsiSchema}.tags_seq; - --- Possible types are: --- 0 - System (predefined) tags --- 1 - Custom tags --- 2 - Prizm tags -CREATE TABLE ${ohdsiSchema}.tags -( - id INTEGER DEFAULT NEXT VALUE FOR ${ohdsiSchema}.tags_seq, - name VARCHAR(50) NOT NULL, - type INT NOT NULL DEFAULT 0, - count INT NOT NULL DEFAULT 0, - show_group BIT NOT NULL DEFAULT 0, - icon VARCHAR(100) NULL, - color VARCHAR(7) NULL, - multi_selection BIT NOT NULL DEFAULT 0, - permission_protected BIT NOT NULL DEFAULT 0, - mandatory BIT NOT NULL DEFAULT 0, - allow_custom BIT NOT NULL DEFAULT 0, - description VARCHAR(MAX) NULL, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT SYSDATETIMEOFFSET(), - modified_by_id INTEGER, - modified_date DATETIME, - CONSTRAINT pk_tags_id PRIMARY KEY (id), - CONSTRAINT fk_tags_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_tags_sec_user_updater FOREIGN KEY (modified_by_id) REFERENCES ${ohdsiSchema}.sec_user (id) -); - -CREATE UNIQUE INDEX tags_name_idx ON ${ohdsiSchema}.tags (name); - -CREATE TABLE ${ohdsiSchema}.tag_groups -( - tag_id INT NOT NULL, - group_id INT NOT NULL, - CONSTRAINT tag_groups_group_fk FOREIGN KEY (group_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE, - CONSTRAINT tag_groups_tag_fk FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE TABLE ${ohdsiSchema}.concept_set_tags -( - asset_id INT NOT NULL, - tag_id INT NOT NULL, - CONSTRAINT pk_concept_set_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT concept_set_tags_fk_sets FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.concept_set (concept_set_id) ON DELETE NO ACTION, --CHANGE ON DELETE ACTION BECAUSE OF ERROR - CONSTRAINT concept_set_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX concept_set_tags_concept_id_idx ON ${ohdsiSchema}.concept_set_tags (asset_id); -CREATE INDEX concept_set_tags_tag_id_idx ON ${ohdsiSchema}.concept_set_tags (tag_id); - -CREATE TABLE ${ohdsiSchema}.cohort_tags -( - asset_id INT NOT NULL, - tag_id INT NOT NULL, - CONSTRAINT pk_cohort_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT cohort_tags_fk_definitions FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE, - CONSTRAINT cohort_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX cohort_tags_cohort_id_idx ON ${ohdsiSchema}.cohort_tags (asset_id); -CREATE INDEX cohort_tags_tag_id_idx ON ${ohdsiSchema}.cohort_tags (tag_id); - -CREATE TABLE ${ohdsiSchema}.cohort_characterization_tags -( - asset_id bigint NOT NULL, - tag_id INT NOT NULL, - CONSTRAINT pk_cc_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT cc_tags_fk_ccs FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_characterization (id) ON DELETE CASCADE, - CONSTRAINT cc_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX cc_tags_cc_id_idx ON ${ohdsiSchema}.cohort_characterization_tags (asset_id); -CREATE INDEX cc_tags_tag_id_idx ON ${ohdsiSchema}.cohort_characterization_tags (tag_id); - -CREATE TABLE ${ohdsiSchema}.ir_tags -( - asset_id INT NOT NULL, - tag_id INT NOT NULL, - CONSTRAINT pk_ir_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT ir_tags_fk_irs FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.ir_analysis (id) ON DELETE CASCADE, - CONSTRAINT ir_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX ir_tags_ir_id_idx ON ${ohdsiSchema}.ir_tags (asset_id); -CREATE INDEX ir_tags_tag_id_idx ON ${ohdsiSchema}.ir_tags (tag_id); - -CREATE TABLE ${ohdsiSchema}.pathway_tags -( - asset_id INT NOT NULL, - tag_id INT NOT NULL, - CONSTRAINT pk_pathway_tags_id PRIMARY KEY (asset_id, tag_id), - CONSTRAINT pathway_tags_fk_irs FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.pathway_analysis (id) ON DELETE CASCADE, - CONSTRAINT pathway_tags_fk_tags FOREIGN KEY (tag_id) REFERENCES ${ohdsiSchema}.tags (id) ON DELETE CASCADE -); - -CREATE INDEX pathway_tags_pathway_id_idx ON ${ohdsiSchema}.pathway_tags (asset_id); -CREATE INDEX pathway_tags_tag_id_idx ON ${ohdsiSchema}.pathway_tags (tag_id); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.9.0.20210513111520__versioning.sql b/src/main/resources/db/migration/sqlserver/V2.9.0.20210513111520__versioning.sql deleted file mode 100644 index 7a1aeb8710..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.9.0.20210513111520__versioning.sql +++ /dev/null @@ -1,150 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission(id, value, description) -VALUES - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:version:get','Get list of cohort versions'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:version:*:get','Get cohort version'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:version:*:put','Update cohort version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:version:*:delete','Delete cohort version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohortdefinition:*:version:*:createAsset:put','Copy cohort version as new cohort'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:get','Get list of concept set versions'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:*:get','Get concept set version'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:*:put','Update concept set version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:*:delete','Delete concept set version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:*:createAsset:put','Copy concept set version as new concept set'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:*:expression:get','Get expression for concept set items for default source'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'conceptset:*:version:*:expression:*:get','Get expression for concept set items for certain source'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:version:get','Get list of characterization versions'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:version:*:get','Get characterization version'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:version:*:put','Update characterization version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:version:*:delete','Delete characterization version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:version:*:createAsset:put','Copy characterization version as new cohort'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:version:get','Get list of incidence rate analysis versions'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:version:*:get','Get incidence rate analysis version'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:version:*:put','Update incidence rate analysis version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:version:*:delete','Delete incidence rate analysis version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'ir:*:version:*:createAsset:put','Copy incidence rate analysis version as new cohort'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:version:get','Get list of pathway analysis versions'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:version:*:get','Get pathway analysis version'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:version:*:put','Update pathway analysis version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:version:*:delete','Delete pathway analysis version info'), - (NEXT VALUE for ${ohdsiSchema}.sec_permission_id_seq, 'pathway-analysis:*:version:*:createAsset:put','Copy pathway analysis version as new cohort'); - -INSERT INTO ${ohdsiSchema}.sec_role_permission(role_id, permission_id) -SELECT sr.id, sp.id -FROM ${ohdsiSchema}.sec_permission SP, - ${ohdsiSchema}.sec_role sr -WHERE sp.value IN ( - 'cohortdefinition:*:version:get', - 'cohortdefinition:*:version:*:get', - 'cohortdefinition:*:version:*:put', - 'cohortdefinition:*:version:*:delete', - 'cohortdefinition:*:version:*:createAsset:put', - 'conceptset:*:version:get', - 'conceptset:*:version:*:get', - 'conceptset:*:version:*:put', - 'conceptset:*:version:*:delete', - 'conceptset:*:version:*:createAsset:put', - 'conceptset:*:version:*:expression:get', - 'conceptset:*:version:*:expression:*:get', - 'cohort-characterization:*:version:get', - 'cohort-characterization:*:version:*:get', - 'cohort-characterization:*:version:*:put', - 'cohort-characterization:*:version:*:delete', - 'cohort-characterization:*:version:*:createAsset:put', - 'ir:*:version:get', - 'ir:*:version:*:get', - 'ir:*:version:*:put', - 'ir:*:version:*:delete', - 'ir:*:version:*:createAsset:put', - 'pathway-analysis:*:version:get', - 'pathway-analysis:*:version:*:get', - 'pathway-analysis:*:version:*:put', - 'pathway-analysis:*:version:*:delete', - 'pathway-analysis:*:version:*:createAsset:put') - AND sr.name IN ('Atlas users'); - --- Cohorts -CREATE TABLE ${ohdsiSchema}.cohort_version -( - asset_id INT NOT NULL, - comment VARCHAR(MAX) NULL, - description VARCHAR(MAX) NULL, - version INT NOT NULL DEFAULT 1, - asset_json VARCHAR(MAX) NOT NULL, - archived BIT NOT NULL DEFAULT 0, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT (SYSDATETIMEOFFSET()), - CONSTRAINT pk_cohort_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_cohort_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_cohort_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_definition (id) ON DELETE CASCADE -); - -CREATE INDEX cohort_version_asset_idx ON ${ohdsiSchema}.cohort_version (asset_id); - --- Cohort characterizations -CREATE TABLE ${ohdsiSchema}.cohort_characterization_version -( - asset_id bigint NOT NULL, - comment VARCHAR(MAX) NULL, - version INT NOT NULL DEFAULT 1, - asset_json VARCHAR(MAX) NOT NULL, - archived BIT NOT NULL DEFAULT 0, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT (SYSDATETIMEOFFSET()), - CONSTRAINT pk_cc_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_cc_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_cc_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.cohort_characterization (id) ON DELETE CASCADE -); - -CREATE INDEX cc_version_asset_idx ON ${ohdsiSchema}.cohort_characterization_version (asset_id); - --- Concept sets -CREATE TABLE ${ohdsiSchema}.concept_set_version -( - asset_id INT NOT NULL, - comment VARCHAR(MAX) NULL, - version INT NOT NULL DEFAULT 1, - asset_json VARCHAR(MAX) NOT NULL, - archived BIT NOT NULL DEFAULT 0, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT (SYSDATETIMEOFFSET()), - CONSTRAINT pk_concept_set_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_concept_set_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_concept_set_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.concept_set (concept_set_id) ON DELETE CASCADE -); - -CREATE INDEX concept_set_version_asset_idx ON ${ohdsiSchema}.concept_set_version (asset_id); - --- Incidence rates -CREATE TABLE ${ohdsiSchema}.ir_version -( - asset_id INT NOT NULL, - comment VARCHAR(MAX) NULL, - description VARCHAR(MAX) NULL, - version INT NOT NULL DEFAULT 1, - asset_json VARCHAR(MAX) NOT NULL, - archived BIT NOT NULL DEFAULT 0, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT (SYSDATETIMEOFFSET()), - CONSTRAINT pk_ir_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_ir_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_ir_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.ir_analysis (id) ON DELETE CASCADE -); - -CREATE INDEX ir_version_asset_idx ON ${ohdsiSchema}.ir_version (asset_id); - --- Pathways -CREATE TABLE ${ohdsiSchema}.pathway_version -( - asset_id INT NOT NULL, - comment VARCHAR(MAX) NULL, - version INT NOT NULL DEFAULT 1, - asset_json VARCHAR(MAX) NOT NULL, - archived BIT NOT NULL DEFAULT 0, - created_by_id INTEGER, - created_date DATETIME NOT NULL DEFAULT (SYSDATETIMEOFFSET()), - CONSTRAINT pk_pathway_version_id PRIMARY KEY (asset_id, version), - CONSTRAINT fk_pathway_version_sec_user_creator FOREIGN KEY (created_by_id) REFERENCES ${ohdsiSchema}.sec_user (id), - CONSTRAINT fk_pathway_version_asset_id FOREIGN KEY (asset_id) REFERENCES ${ohdsiSchema}.pathway_analysis (id) ON DELETE CASCADE -); - -CREATE INDEX pathway_version_asset_idx ON ${ohdsiSchema}.pathway_version (asset_id); diff --git a/src/main/resources/db/migration/sqlserver/V2.9.0.20210727101117__achilles_cache.sql b/src/main/resources/db/migration/sqlserver/V2.9.0.20210727101117__achilles_cache.sql deleted file mode 100644 index 2463a449fa..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.9.0.20210727101117__achilles_cache.sql +++ /dev/null @@ -1,13 +0,0 @@ -CREATE SEQUENCE ${ohdsiSchema}.achilles_cache_seq START WITH 1; - -CREATE TABLE ${ohdsiSchema}.achilles_cache -( - id bigint NOT NULL DEFAULT NEXT VALUE FOR ${ohdsiSchema}.achilles_cache_seq, - source_id INT NOT NULL, - cache_name varchar NOT NULL, - cache text, - CONSTRAINT achilles_cache_pk PRIMARY KEY (id), - CONSTRAINT achilles_cache_fk FOREIGN KEY (source_id) REFERENCES ${ohdsiSchema}.source (source_id) ON DELETE CASCADE -); - -CREATE UNIQUE INDEX achilles_cache_source_id_idx ON ${ohdsiSchema}.achilles_cache (source_id, cache_name); \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/V2.9.0.20210812164224__assets_tags_renaming.sql b/src/main/resources/db/migration/sqlserver/V2.9.0.20210812164224__assets_tags_renaming.sql deleted file mode 100644 index 6d8c13ab87..0000000000 --- a/src/main/resources/db/migration/sqlserver/V2.9.0.20210812164224__assets_tags_renaming.sql +++ /dev/null @@ -1,11 +0,0 @@ --- Rename sequence -EXEC sp_rename ${ohdsiSchema}.tags_seq, 'tag_seq'; - --- Rename tables -EXEC sp_rename ${ohdsiSchema}.tags, 'tag', 'OBJECT'; -EXEC sp_rename ${ohdsiSchema}.tag_groups, 'tag_group', 'OBJECT'; -EXEC sp_rename ${ohdsiSchema}.concept_set_tags, 'concept_set_tag', 'OBJECT'; -EXEC sp_rename ${ohdsiSchema}.cohort_tags, 'cohort_tag', 'OBJECT'; -EXEC sp_rename ${ohdsiSchema}.cohort_characterization_tags, 'cohort_characterization_tag', 'OBJECT'; -EXEC sp_rename ${ohdsiSchema}.ir_tags, 'ir_tag', 'OBJECT'; -EXEC sp_rename ${ohdsiSchema}.pathway_tags, 'pathway_tag', 'OBJECT'; diff --git a/src/main/resources/db/migration/sqlserver/V20200213165742__export-conceptsets-permissions.sql b/src/main/resources/db/migration/sqlserver/V20200213165742__export-conceptsets-permissions.sql deleted file mode 100644 index 59224a46e0..0000000000 --- a/src/main/resources/db/migration/sqlserver/V20200213165742__export-conceptsets-permissions.sql +++ /dev/null @@ -1,18 +0,0 @@ -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'feature-analysis:*:export:conceptset:get', 'Get archive with Feature Analysis Concept Sets' -; - -INSERT INTO ${ohdsiSchema}.sec_permission (id, value, description) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_permission_id_seq, 'cohort-characterization:*:export:conceptset:get', 'Get archive with Cohort Characterization Concept Sets' -; - -INSERT INTO ${ohdsiSchema}.sec_role_permission(id, role_id, permission_id) - SELECT NEXT VALUE FOR ${ohdsiSchema}.sec_role_permission_sequence, sr.id, sp.id - FROM ${ohdsiSchema}.sec_permission SP, ${ohdsiSchema}.sec_role sr - WHERE - sp.value IN ( - 'feature-analysis:*:export:conceptset:get', - 'cohort-characterization:*:export:conceptset:get' - ) - AND sr.name IN ('Atlas users') -; diff --git a/src/main/resources/db/migration/sqlserver/rollback/1.0.0.1__schema-drop_spring_batch.sql b/src/main/resources/db/migration/sqlserver/rollback/1.0.0.1__schema-drop_spring_batch.sql deleted file mode 100644 index 6367b4ea89..0000000000 --- a/src/main/resources/db/migration/sqlserver/rollback/1.0.0.1__schema-drop_spring_batch.sql +++ /dev/null @@ -1,10 +0,0 @@ -DROP TABLE BATCH_STEP_EXECUTION_CONTEXT ; -DROP TABLE BATCH_JOB_EXECUTION_CONTEXT ; -DROP TABLE BATCH_STEP_EXECUTION ; -DROP TABLE BATCH_JOB_EXECUTION_PARAMS ; -DROP TABLE BATCH_JOB_EXECUTION ; -DROP TABLE BATCH_JOB_INSTANCE ; - -DROP TABLE BATCH_STEP_EXECUTION_SEQ ; -DROP TABLE BATCH_JOB_EXECUTION_SEQ ; -DROP TABLE BATCH_JOB_SEQ ; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/rollback/1.0.0.2__schema-drop_jpa.sql b/src/main/resources/db/migration/sqlserver/rollback/1.0.0.2__schema-drop_jpa.sql deleted file mode 100644 index 9b71ee76ea..0000000000 --- a/src/main/resources/db/migration/sqlserver/rollback/1.0.0.2__schema-drop_jpa.sql +++ /dev/null @@ -1,3 +0,0 @@ -DROP TABLE EXAMPLEAPP_WIDGET; - -DROP TABLE HIBERNATE_SEQUENCE; \ No newline at end of file diff --git a/src/main/resources/db/migration/sqlserver/rollback/1.0.0.9__schema-drop_shiro.sql b/src/main/resources/db/migration/sqlserver/rollback/1.0.0.9__schema-drop_shiro.sql deleted file mode 100644 index 34a85b13ad..0000000000 --- a/src/main/resources/db/migration/sqlserver/rollback/1.0.0.9__schema-drop_shiro.sql +++ /dev/null @@ -1,11 +0,0 @@ -DROP TABLE SEC_ROLE_PERMISSION; -DROP TABLE SEC_USER_ROLE; -DROP TABLE SEC_PERMISSION; -DROP TABLE SEC_ROLE; -DROP TABLE SEC_USER; - -DROP SEQUENCE SEC_ROLE_PERMISSION_SEQUENCE; -DROP SEQUENCE SEC_USER_ROLE_SEQUENCE; -DROP SEQUENCE SEC_PERMISSION_SEQUENCE; -DROP SEQUENCE SEC_ROLE_SEQUENCE; -DROP SEQUENCE SEC_USER_SEQUENCE; \ No newline at end of file