SlideShare ist ein Scribd-Unternehmen logo
1 von 58
Downloaden Sie, um offline zu lesen
Tips and Techniques for Improving the Performance of
Validation Procedures in Oracle Clinical
Steve Rifkin, Lead Technical Analyst, Clinical Data Management & EDC
Life Sciences Business Unit
facebook.com/perficient twitter.com/perficient_LSlinkedin.com/company/perficient
Welcome & Introduction
Steve Rifkin
Lead Technical Analyst
Clinical Data Management & EDC
Life Sciences, Perficient
• Extensive Oracle Clinical/RDC experience
– 18+ years of experience with Oracle Clinical/RDC
– Member of the team that implements, supports,
enhances and integrates Oracle Clinical/RDC solutions
– 50+ implementations and integrations
Perficient is a leading information technology consulting firm serving clients throughout
North America and Europe.
We help clients implement business-driven technology solutions that integrate business
processes, improve worker productivity, increase customer loyalty and create a more agile
enterprise to better respond to new business opportunities.
About Perficient
• Founded in 1997
• Public, NASDAQ: PRFT
• 2013 revenue ~$373 million
• Major market locations throughout North America
• Atlanta, Boston, Charlotte, Chicago, Cincinnati, Cleveland,
Columbus, Dallas, Denver, Detroit, Fairfax, Houston,
Indianapolis, Los Angeles, Minneapolis, New Orleans, New
York City, Northern California, Philadelphia, Southern
California, St. Louis, Toronto and Washington, D.C.
• Global delivery centers in China, Europe and India
• >2,100 colleagues
• Dedicated solution practices
• ~85% repeat business rate
• Alliance partnerships with major technology vendors
• Multiple vendor/industry technology and growth awards
Perficient Profile
BUSINESS SOLUTIONS
Business Intelligence
Business Process Management
Customer Experience and CRM
Enterprise Performance Management
Enterprise Resource Planning
Experience Design (XD)
Management Consulting
TECHNOLOGY SOLUTIONS
Business Integration/SOA
Cloud Services
Commerce
Content Management
Custom Application Development
Education
Information Management
Mobile Platforms
Platform Integration
Portal & Social
Our Solutions Expertise
Life SciencesPractices/Solutions
Implementation
Migration
Integration
Validation
Consulting
Upgrades
Managed Services
Application Development
Private Cloud Hosting
Application Support
Sub-licensing
Study Setup
Services
Deep Clinical and Pharmacovigilance Applications Expertise
Clinical Trial
Management
Clinical Trial Planning and Budgeting
Oracle ClearTrial
CTMS
Oracle Siebel CTMS / ASCEND
Mobile CRA
Clinical Data Management
& Electronic Data Capture
CDMS
Oracle Clinical
Electronic Data Capture
Oracle Remote Data Capture
Oracle InForm
Medical Coding
Oracle Thesaurus Management System
Safety &
Pharmacovigilance
Adverse Event Reporting
Oracle Argus Safety Suite
Oracle AERS / Empirica Trace
Axway Synchrony Gateway
Signal Management
Oracle Empirica Signal/Topics
Medical Coding
Oracle Thesaurus Management System
Clinical Data
Warehousing & Analytics
Clinical Data Warehousing
Oracle Life Sciences Data Hub
Clinical Data Analytics
Oracle Clinical Development Analytics
JReview
Data Review and Cleansing
Oracle Data Management Workbench
Clients
Agenda
• What is an Oracle Clinical Procedure
• Review of PL/SQL Concepts
– Cursors and Package Structure
• Oracle Clinical Cursors
• Structure of Oracle Clinical MAIN Procedure
• Retrieval Techniques
– Correlations
– Qualifying Expressions
– WHERE clause extension
– Visit Limitations
• Performance Considerations
What is an Oracle Clinical Procedure?
Definition => Validation Procs => Procedures
Definition => Validation Procs => Procedures
It’s a program!
What is an Oracle Clinical Procedure?
• Procedure templates are completed
• Procedure is “generated” and
What is an Oracle Clinical Procedure?
A PL/SQL Program is created!
To get the most out of OC procedures, you need to understand the
structure of the program you create.
Review of PL/SQL Concepts
• Detailed knowledge of PL/SQL syntax is not required
for understanding the overall program structure.
– However, knowledge of PL/SQL cursors and of the
PL/SQL Package structure is required.
PL/SQL Cursors
In SQL*Plus, a “select statement” retrieves an entire set of records:
SQL> select patient, patient_position_id from patient_positions;
PATIENT PATIENT_POSITION_ID
---------- -------------------
100 5001
101 5101
102 5201
103 5301
104 5401
105 5501
106 5601
107 5701
108 5801
109 5901
Cursors also retrieve of a set of
records; but unlike SQL*Plus,
cursors allow access to one record
at a time for procedural operations
on data within the record.
• Cursors are objects in a PL/SQL program
• To use, cursors must be
1. Declared (to define the set of results)
2. Opened (to initialize)
3. Fetched (to retrieve one row for operations)
4. Closed (to release)
PL/SQL Cursors
• Cursor declaration defines the set of records to be
retrieved from the database:
• Like a “file” a cursor must be opened before it can be
used:
CURSOR cHeight IS
SELECT height, height_unit
FROM height_table WHERE
patient=‘100’
ORDER BY visit_number;
OPEN cHeight;
PL/SQL Cursors
PL/SQL Cursors
• A “fetch” on the cursor retrieves a single row from the
set of selected records and places the result into
program variables:
FETCH cHeight INTO height_var, height_unit_var;
CLOSE cHeight;
• Cursors are closed to release memory and perform
internal cleanup:
PL/SQL Cursors
• Cursors are often fetched in a “loop” which processes
the record:
LOOP
FETCH cHeight INTO height_var, height_unit_var ;
IF cHeight%NOTFOUND THEN
EXIT LOOP;
ELSE
<process current height_var, height_unit_var>
END IF;
END LOOP;
PAT_LOOP
FETCH cPatient_data into patient_var;
IF cPatient_data%FOUND THEN
ELSE
EXIT PAT_LOOP;
END IF;
END PAT_LOOP;
HEIGHT_LOOP
FETCH cHeight INTO height_var, height_unit_var ;
IF cHeight%FOUND THEN
<process patient_var, height_var, height_unit_var>
ELSE
EXIT HEIGHT_LOOP;
END IF;
END HEIGHT_LOOP
Nesting PL/SQL Cursors
Cursors used by Oracle Clinical
• Patient Information Cursor
– Retrieves a record with all the information recorded for a
single patient
• DCM Cursor(s)
– A DCM cursor for each “alias” listed on the procedure
question group form
– Retrieves the DCM responses (for the questions on the
procedure question screen) and DCM header
information
Fields Retrieved by the Patient Cursor
• V_CLINICAL_STUDY_VERSION_ID
• V_DATA_MODIFIED_FLAG
• V_PROCEDURE_ID
• V_PROCEDURE_VERSION_SN
• V_PROCEDURE_TYPE_CODE
• V_USERNAME
• V_DEBUG
• V_LAST_BATCH_TS
• V_CURRENT_LOCATION
• V_MODE
• V_LAB_DEPENDENT_FLAG
• REPORTED_SEX
• REPORTED_BIRTH_DATE
• PATIENT_POSITION_ID
• CLINICAL_STUDY_ID
• REPORTED_DEATH_DATE
• PATIENT
• INVESTIGATOR_ID
• SITE_ID
• EARLY_TERMINATION_FLAG
• PATIENT_ENROLLMENT_DATE
• CLINICAL_SUBJECT_ID
• INCLUSION_EXCLUSION_DATE
• REPORTED_PATIENT_REFERENCE
• REPORTED_INITIALS
• REPORTED_DATE_LAST_PREGNACY
• FIRST_SCREENING_DATE
• TERMINATION_DATE
Fields Retrieved by a DCM Cursor
• ACTUAL_EVENT_ID
• CLIN_PLAN_EVE_ID
• CLIN_PLAN_EVE_NAME
• DCM_DATE
• DCM_ID
• DCM_SUBSET_SN
• DCM_TIME
• INVESTIGATOR_ID
• LAB
• LAB_ID
• LAB_RANGE_SUBSET_NUM
• QUALIFYING_VALUE
• RECEIVED_DCM_ENTRY_TS
• RECEIVED_DCM_ID
• REPEAT_SN
• SITE_ID
• SUBEVENT_NUMBER
• VISIT_NUMBER
Using Patient Cursor Fields
• To use a value for a “V_” field, prefix the field name
with “rxcpdstd.”
– e.g., rxcpdstd.v_data_modified_flag
• To use all other variables, prefix the name with
“rxcpdstd.patients_rec.”
– e.g., rxcpdstd.patients_rec.reported_birth_date
Fields retrieved in the patient information cursor can be used
to perform tests or calculations in your procedures or can be
used as arguments to custom functions you may write.
Structure of PL/SQL Packages
• Generation of an Oracle Clinical procedure results in a
PL/SQL package
• PL/SQL packages contain one or more functions
and/or procedures and have two sections
– Specification
• Lists all procedures and functions in the package
• Declares all cursors and variables to be available to all the
functions and procedures (i.e. the “common” area)
– Body
• Contains all the procedural code for the procedures and
functions listed in the specification
Package Specification in Oracle Clinical
CREATE PACKAGE rxcpd_xxx_xx as
CURSOR 1 is . . . .
CURSOR 2 is . . . .
CURSOR n is . . . .
PROCEDURE main (… … …); PROCEDURE
insert_discrepancy(… … …); PROCEDURE
exception_handling (… … …); END rxcpd_xxx_xx;
. . .
Package is named
with internal id and
version numbers
Definition and number of cursors declared
depends on the number of “aliases” on the
procedure question group form
Three PL/SQL procedures
are part of each Oracle
Clinical package
Body for a Package in Oracle Clinical
INSERT_DISCREPANCY and EXCEPTION_HANDLING procedures call Oracle
Clinical built-in packages and cannot be readily changed
CREATE PACKAGE BODY rxcpd_xxx_xx as
PROCEDURE main (… … …);
<Program Code >
END main;
PROCEDURE insert_discrepancy(… … …);
< Program Code>
END insert_discrepancy;
PROCEDURE exception_handling (… … …);
<Program Code>
END exception_handling;
END rxcpd_xxx_xx;
Program code in the MAIN
procedure depends on
options chosen on the
procedure definition forms
• MAIN procedure is a series of nested loops
• For a simple procedure, outermost loop fetches the
patient information
– Next loop fetches DCM information as defined by the
first procedure question group definition
• After fetching the innermost loop, the expression
details are evaluated
Simplified Structure of a MAIN Procedure
LOOP<Patient>
Fetch Patient cursor
LOOP <DCM1>
Fetch DCM1 Cursor
Execute Details
End <DCM1> Loop
End <Patient> Loop
Simplified Structure of a MAIN Procedure …
One DCM Procedure Question Group
LOOP<Patient>
Fetch Patient cursor
LOOP <DCM1>
Fetch DCM1 Cursor
Execute Details
End <DCM1> Loop
End <Patient> Loop
LOOP <DCM2>
Fetch DCM2 Cursor
End <DCM2> Loop
Two DCM Procedure Question Groups
Simplified Structure of a MAIN Procedure
Some Techniques to Limit Retrievals
• Correlate inner loop with a more outer loop
– On event
– On qualifying question value
– On question values
• Qualifying expressions
• WHERE clause extension
• Limit visits retrieved by the cursor
Correlations
• Can correlate on events
– Inner cursor retrieves only a visit retrieved by the outer correlated cursor
• Can correlate on qualifying questions
– Inner cursor only retrieves DCMs which have the same value for the DCM
qualifying question
• Can correlate on question values
– Inner cursor fetches only if a question’s value is equal to a question’s value
in the outer cursor
Correlation limits the fetches for inner cursors based
on data obtained by a fetch in a more outer cursor.
Fetch data for Patient 100
Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100
Correlation on Event
Retrieval with No Correlation
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100
Test
Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100
Test
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100
Test
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100
Test
Fetch data for Patient 100
Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100
Correlation on Event
Retrieval with Correlation on Event
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100
Test
Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100
Test
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100
TestX
Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100
TestX
Correlation on Event
Definition => Validation Procs => Procedures, Press [Q-Groups]
Alias to correlate to
Inner loops use the same
event (including subevent)
as retrieved for the outer
(correlated) loop
Correlation on Qualifying Question Value
• Assume two qualified DCMs recorded at a visit
– Vitals DCM: qualified at Pre-Dose, 1 Hr Post-dose
– EKG DCM: qualified at Pre-Dose, 1 Hr Post-dose
• Correlate on both visit and qualifying question
Fetch data for Patient 100
Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100, Pre-Dose
X
Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose
X
X
Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100, Post-Dose
Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100, Pre-Dose
Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose
X
X
X
Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100, Post-Dose
X
Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose
X
X
X
Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose
Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose
X
X
Correlation on Qualifying Question Value
Correlating Questions
• Use responses to DCM questions to correlate between
outer and inner fetch loops
– May want to fetch AE records where AE description
matches the indication given for ConMed
Definition => Validation Procs => Procedures, Press [Q-Groups]
Definition => Validation Procs => Procedures, Press [Q-Groups],
[Correlating Questions]
Inner loop will fetch records only if the values of the
responses to the two pairs of questions are the same!
Outer LoopOuter LoopInner Loop
Correlating Questions
Correlations
• Can correlate on Events
– Inner cursor retrieves only a visit retrieved by the outer correlated cursor
• Can correlate on Qualifying Questions
– Inner cursor only retrieves DCMs which have the same value for the DCM
Qualifying Question
• Can correlate on Questions
– Inner cursor fetches only if a question’s value is equal to a question’s value
in the outer cursor
Correlation limits the fetches for inner cursors based
on data obtained by a fetch in a more outer cursor
Effect of Correlation on Event
ACTUAL_EVENT_ID is retrieved as part
of the standard cursor variables in the
outer cursor
…….
Outer Cursor Definition
Cursor variable i_actual_event_id
specified when cursor is opened
used in the where clause
…….
Inner Cursor Definition
Effect of Correlation on Event
Call to open inner (CM) cursor uses
the actual_event_id retrieved by the
outer_cursor
Fetch on the outer (AE) cursor
retrieves a value of actual_event_id
);
Effect of Correlation on Event
Effect of Qualifying Question Value and
Question Value Correlation
• Other types of correlation (on qualifying question
value or question values) work in the same way
– When procedure compiled using these techniques, the
procedure question group cursors are restricted
– Opening of cursors in the MAIN procedure use cursor
variables
Qualifying Expressions
• Allow selection of records based on any information
retrieved by the current or any more outer cursor
– Can join values between cursors in the qualifying
expression
Continue only if medication
on the AE form is not null
Qualifying Expressions
• Allow selection of records based on any information retrieved
by the current or any more outer cursor
– Can join values between cursors in the qualifying expression
Continue only if Medication
on the AE form is not null
Patient Record Loop
Details
Fetch Qualify Loop
Inner CM Cursor Loop
Outer AE Cursor Loop
Effect of Qualifying Expressions
Fetch an AE record
Exit AE Fetch Qualify loop if no more AEs
Exit AE Fetch Qualify loop if fetch qualifies
Process inner loops/details or exit the cursor loop
Effect of Qualifying Expressions
• Limit cursor fetch with SQL expression comprised of
key DCM fields
– An LOV is available for fields which can be used in the
Extension
– With caution, can use other variables in the
RECEIVED_DCMS and RESPONSES tables, but only
for the current cursor
• One way to limit retrievals to specific visits
WHERE Clause Extension
Can join only fields from the
current cursor
WHERE Clause Extension
• Limit cursor fetch with SQL expression comprised of
key DCM fields
– An LOV is available for fields which can be used in the
Extension
– With caution, can use other variables in the
RECEIVED_DCMS and RESPONSES tables, but only
for the current cursor
• One way to limit retrievals to specific visits
WHERE Clause Extension …
Extension of “where visit_number=1”
Added to the default cursor definition
Effect of Where Clause Extensions
• Can limit to a range of visits fetched by providing the
names of the first and last visits on the procedure
question group form
By default, all patient visits will be
retrieved by the DCM cursor
Controlling Range of Visits
Definition => Validation Procs => Procedures, Press [Q-Groups]
Only DCMs recorded for visits starting at “Visit 1”
and going through “Visit 3” will be retrieved
Controlling Range of Visits
• Can limit to a range of visits fetched by providing the
names of the first and last visits on the Procedure
Question Group form
By default, all patient visits will be
retrieved by the DCM cursor
Controlling Range of Visits …
Effect of Range of Visits Control
These are passed as input when the DCM cursor is opened by the
main procedure
Performance
• Generated PL/SQL code contains a multitude of loops
– Cursors are opened, fetched and closed many times in
the internal fetch loops
• Use as much correlation as possible to improve
performance
– Some types of correlations affect performance more
than others
– Correlation may be necessary to make sure the
procedure does what is expected
Effecting Performance
Event Range In DCM Cursors Large
Correlation
Event In DCM Cursor Large
Qualifying Value In DCM Cursor Large
Correlating Questions In DCM Cursor Large
Where Clause Extension In DCM Cursor Large
Qualifying Expression Test after DCM Fetch Smaller
Where Effect on
Parameter Implemented Performance
Note: In many cases, parameters must be changed so procedure
performs correctly
Summary
• Procedure generation produces a complex PL/SQL
program
• Program makes extensive use of cursors and looping
structure
• Program performance can be changed by correct use
of many techniques available from the form templates
www.facebook.com/perficient
www.perficient.com
www.twitter.com/perficient_LS
Thank You!
For more information, please contact:
steve.rifkin@perficient.com
LifeSciencesInfo@perficient.com (Sales)
+44 (0) 1865 910200 (U.K. Sales)
+1 877 654 0033 (U.S. Sales)

Weitere ähnliche Inhalte

Was ist angesagt?

Cool Functionality and Workarounds to Make Your Life Easier - JD Edwards World
Cool Functionality and Workarounds to Make Your Life Easier - JD Edwards WorldCool Functionality and Workarounds to Make Your Life Easier - JD Edwards World
Cool Functionality and Workarounds to Make Your Life Easier - JD Edwards WorldNERUG
 
Merging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance DatabasesMerging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance DatabasesPerficient
 
How to Plan for a Lync Deployment on a Global Scale
How to Plan for a Lync Deployment on a Global ScaleHow to Plan for a Lync Deployment on a Global Scale
How to Plan for a Lync Deployment on a Global ScalePerficient, Inc.
 
Jd edwards upgrade roundtable at innovate15 empire merchants case study
Jd edwards upgrade roundtable at innovate15 empire merchants case studyJd edwards upgrade roundtable at innovate15 empire merchants case study
Jd edwards upgrade roundtable at innovate15 empire merchants case studyNERUG
 
Marlabs Capabilities Overview: DWBI, Analytics and Big Data Services
Marlabs Capabilities Overview: DWBI, Analytics and Big Data ServicesMarlabs Capabilities Overview: DWBI, Analytics and Big Data Services
Marlabs Capabilities Overview: DWBI, Analytics and Big Data ServicesMarlabs
 
Lingustic Harmony in the Tower of Babel
Lingustic Harmony in the Tower of BabelLingustic Harmony in the Tower of Babel
Lingustic Harmony in the Tower of BabelAnn Kelly
 
Informix Corporate Image and Brand (1990)
Informix Corporate Image and Brand (1990)Informix Corporate Image and Brand (1990)
Informix Corporate Image and Brand (1990)Dinar Yuliati
 
Why ODS? The Role Of The ODS In Today’s BI World And How Oracle Technology H...
Why ODS?  The Role Of The ODS In Today’s BI World And How Oracle Technology H...Why ODS?  The Role Of The ODS In Today’s BI World And How Oracle Technology H...
Why ODS? The Role Of The ODS In Today’s BI World And How Oracle Technology H...C. Scyphers
 
Oracle data integrator suite services
Oracle data integrator suite servicesOracle data integrator suite services
Oracle data integrator suite servicesYASH Technologies
 
Managing Enterprise Content: Solutions that Fit Your Unique Needs
Managing Enterprise Content: Solutions that Fit Your Unique NeedsManaging Enterprise Content: Solutions that Fit Your Unique Needs
Managing Enterprise Content: Solutions that Fit Your Unique NeedsTy Alden Cole
 
Airavaat Technologies October 2013
Airavaat Technologies October 2013Airavaat Technologies October 2013
Airavaat Technologies October 2013VenkataGiri Puthigai
 
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...Sandesh Rao
 
Williams Kirk Oracle Hosted Services Providers (OHSP 2003)
Williams Kirk Oracle Hosted Services Providers (OHSP 2003)Williams Kirk Oracle Hosted Services Providers (OHSP 2003)
Williams Kirk Oracle Hosted Services Providers (OHSP 2003)Norman 'Kirk' Williams
 
Transforming Business Intelligence Testing
Transforming Business Intelligence TestingTransforming Business Intelligence Testing
Transforming Business Intelligence TestingMethod360
 
Validation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study MigrationsValidation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study MigrationsPerficient, Inc.
 
Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...
Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...
Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...Marlabs
 
Marlabs Capabilities Overview: Microsoft SharePoint Services
Marlabs Capabilities Overview: Microsoft SharePoint Services Marlabs Capabilities Overview: Microsoft SharePoint Services
Marlabs Capabilities Overview: Microsoft SharePoint Services Marlabs
 
Marlabs Capabilities Overview: Telecom
Marlabs Capabilities Overview: Telecom Marlabs Capabilities Overview: Telecom
Marlabs Capabilities Overview: Telecom Marlabs
 
Oracle Managed Cloud Services
Oracle Managed Cloud ServicesOracle Managed Cloud Services
Oracle Managed Cloud ServicesYASH Technologies
 

Was ist angesagt? (20)

Cool Functionality and Workarounds to Make Your Life Easier - JD Edwards World
Cool Functionality and Workarounds to Make Your Life Easier - JD Edwards WorldCool Functionality and Workarounds to Make Your Life Easier - JD Edwards World
Cool Functionality and Workarounds to Make Your Life Easier - JD Edwards World
 
Merging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance DatabasesMerging Multiple Drug Safety and Pharmacovigilance Databases
Merging Multiple Drug Safety and Pharmacovigilance Databases
 
How to Plan for a Lync Deployment on a Global Scale
How to Plan for a Lync Deployment on a Global ScaleHow to Plan for a Lync Deployment on a Global Scale
How to Plan for a Lync Deployment on a Global Scale
 
Jd edwards upgrade roundtable at innovate15 empire merchants case study
Jd edwards upgrade roundtable at innovate15 empire merchants case studyJd edwards upgrade roundtable at innovate15 empire merchants case study
Jd edwards upgrade roundtable at innovate15 empire merchants case study
 
Marlabs Capabilities Overview: DWBI, Analytics and Big Data Services
Marlabs Capabilities Overview: DWBI, Analytics and Big Data ServicesMarlabs Capabilities Overview: DWBI, Analytics and Big Data Services
Marlabs Capabilities Overview: DWBI, Analytics and Big Data Services
 
Lingustic Harmony in the Tower of Babel
Lingustic Harmony in the Tower of BabelLingustic Harmony in the Tower of Babel
Lingustic Harmony in the Tower of Babel
 
Informix Corporate Image and Brand (1990)
Informix Corporate Image and Brand (1990)Informix Corporate Image and Brand (1990)
Informix Corporate Image and Brand (1990)
 
Why ODS? The Role Of The ODS In Today’s BI World And How Oracle Technology H...
Why ODS?  The Role Of The ODS In Today’s BI World And How Oracle Technology H...Why ODS?  The Role Of The ODS In Today’s BI World And How Oracle Technology H...
Why ODS? The Role Of The ODS In Today’s BI World And How Oracle Technology H...
 
Oracle data integrator suite services
Oracle data integrator suite servicesOracle data integrator suite services
Oracle data integrator suite services
 
Managing Enterprise Content: Solutions that Fit Your Unique Needs
Managing Enterprise Content: Solutions that Fit Your Unique NeedsManaging Enterprise Content: Solutions that Fit Your Unique Needs
Managing Enterprise Content: Solutions that Fit Your Unique Needs
 
Airavaat Technologies October 2013
Airavaat Technologies October 2013Airavaat Technologies October 2013
Airavaat Technologies October 2013
 
LIMS Result Point Brochure
LIMS Result Point BrochureLIMS Result Point Brochure
LIMS Result Point Brochure
 
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
AIOUG : OTNYathra - Troubleshooting and Diagnosing Oracle Database 12.2 and O...
 
Williams Kirk Oracle Hosted Services Providers (OHSP 2003)
Williams Kirk Oracle Hosted Services Providers (OHSP 2003)Williams Kirk Oracle Hosted Services Providers (OHSP 2003)
Williams Kirk Oracle Hosted Services Providers (OHSP 2003)
 
Transforming Business Intelligence Testing
Transforming Business Intelligence TestingTransforming Business Intelligence Testing
Transforming Business Intelligence Testing
 
Validation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study MigrationsValidation and Business Considerations for Clinical Study Migrations
Validation and Business Considerations for Clinical Study Migrations
 
Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...
Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...
Mahesh Eswar, Chief Revenue Officer at Marlabs, speaks at NJTC event, 'Breakf...
 
Marlabs Capabilities Overview: Microsoft SharePoint Services
Marlabs Capabilities Overview: Microsoft SharePoint Services Marlabs Capabilities Overview: Microsoft SharePoint Services
Marlabs Capabilities Overview: Microsoft SharePoint Services
 
Marlabs Capabilities Overview: Telecom
Marlabs Capabilities Overview: Telecom Marlabs Capabilities Overview: Telecom
Marlabs Capabilities Overview: Telecom
 
Oracle Managed Cloud Services
Oracle Managed Cloud ServicesOracle Managed Cloud Services
Oracle Managed Cloud Services
 

Andere mochten auch

Inside an Oracle Clinical Validation Procedure
Inside an Oracle Clinical Validation ProcedureInside an Oracle Clinical Validation Procedure
Inside an Oracle Clinical Validation ProcedurePerficient
 
Using Lag Variables in Oracle Clinical Procedures
Using Lag Variables in Oracle Clinical ProceduresUsing Lag Variables in Oracle Clinical Procedures
Using Lag Variables in Oracle Clinical ProceduresPerficient
 
Effect of Procedure Question Group Attributes on Performance of Batch Validation
Effect of Procedure Question Group Attributes on Performance of Batch ValidationEffect of Procedure Question Group Attributes on Performance of Batch Validation
Effect of Procedure Question Group Attributes on Performance of Batch ValidationPerficient
 
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...Perficient
 
Freedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UIFreedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UIPerficient
 
Oracle Clinical and RDC Implementation Standards and Best Practices
Oracle Clinical and RDC Implementation Standards and Best PracticesOracle Clinical and RDC Implementation Standards and Best Practices
Oracle Clinical and RDC Implementation Standards and Best PracticesPerficient
 
Managing Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with EaseManaging Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with EasePerficient
 
The Future of OC, RDC, and TMS
The Future of OC, RDC, and TMSThe Future of OC, RDC, and TMS
The Future of OC, RDC, and TMSPerficient
 
Part 4 of RNA-seq for DE analysis: Extracting count table and QC
Part 4 of RNA-seq for DE analysis: Extracting count table and QCPart 4 of RNA-seq for DE analysis: Extracting count table and QC
Part 4 of RNA-seq for DE analysis: Extracting count table and QCJoachim Jacob
 
Introduction to Oracle Clinical Data Model
Introduction to Oracle Clinical Data ModelIntroduction to Oracle Clinical Data Model
Introduction to Oracle Clinical Data ModelPerficient
 

Andere mochten auch (11)

Inside an Oracle Clinical Validation Procedure
Inside an Oracle Clinical Validation ProcedureInside an Oracle Clinical Validation Procedure
Inside an Oracle Clinical Validation Procedure
 
Using Lag Variables in Oracle Clinical Procedures
Using Lag Variables in Oracle Clinical ProceduresUsing Lag Variables in Oracle Clinical Procedures
Using Lag Variables in Oracle Clinical Procedures
 
Effect of Procedure Question Group Attributes on Performance of Batch Validation
Effect of Procedure Question Group Attributes on Performance of Batch ValidationEffect of Procedure Question Group Attributes on Performance of Batch Validation
Effect of Procedure Question Group Attributes on Performance of Batch Validation
 
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
2013 OHSUG - Oracle Clinical and RDC Training for Data Management and Clinica...
 
Freedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UIFreedom and Flexibility with Siebel Clinical (CTMS) Open UI
Freedom and Flexibility with Siebel Clinical (CTMS) Open UI
 
Oracle Clinical and RDC Implementation Standards and Best Practices
Oracle Clinical and RDC Implementation Standards and Best PracticesOracle Clinical and RDC Implementation Standards and Best Practices
Oracle Clinical and RDC Implementation Standards and Best Practices
 
Managing Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with EaseManaging Oracle Clinical, RDC, and TMS User Accounts with Ease
Managing Oracle Clinical, RDC, and TMS User Accounts with Ease
 
Provisional Certificate
Provisional CertificateProvisional Certificate
Provisional Certificate
 
The Future of OC, RDC, and TMS
The Future of OC, RDC, and TMSThe Future of OC, RDC, and TMS
The Future of OC, RDC, and TMS
 
Part 4 of RNA-seq for DE analysis: Extracting count table and QC
Part 4 of RNA-seq for DE analysis: Extracting count table and QCPart 4 of RNA-seq for DE analysis: Extracting count table and QC
Part 4 of RNA-seq for DE analysis: Extracting count table and QC
 
Introduction to Oracle Clinical Data Model
Introduction to Oracle Clinical Data ModelIntroduction to Oracle Clinical Data Model
Introduction to Oracle Clinical Data Model
 

Ähnlich wie Tips and Techniques for Improving the Performance of Validation Procedures in Oracle Clinical

Harvard University database
Harvard University databaseHarvard University database
Harvard University databaseMd.Mojibul Hoque
 
Creating a Project Plan for a Data Warehouse Testing Assignment
Creating a Project Plan for a Data Warehouse Testing AssignmentCreating a Project Plan for a Data Warehouse Testing Assignment
Creating a Project Plan for a Data Warehouse Testing AssignmentRTTS
 
香港六合彩
香港六合彩香港六合彩
香港六合彩taoyan
 
Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...
Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...
Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...Perficient
 
An Introduction to Clinical Study Migrations
An Introduction to Clinical Study MigrationsAn Introduction to Clinical Study Migrations
An Introduction to Clinical Study MigrationsPerficient, Inc.
 
Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...
Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...
Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...Perficient, Inc.
 
Leveraging HPE ALM & QuerySurge to test HPE Vertica
Leveraging HPE ALM & QuerySurge to test HPE VerticaLeveraging HPE ALM & QuerySurge to test HPE Vertica
Leveraging HPE ALM & QuerySurge to test HPE VerticaRTTS
 
Data Warehouse Testing in the Pharmaceutical Industry
Data Warehouse Testing in the Pharmaceutical IndustryData Warehouse Testing in the Pharmaceutical Industry
Data Warehouse Testing in the Pharmaceutical IndustryRTTS
 
The ABCs of Clinical Trial Management Systems
The ABCs of Clinical Trial Management SystemsThe ABCs of Clinical Trial Management Systems
The ABCs of Clinical Trial Management SystemsPerficient, Inc.
 
An overview of clinical data repository
An overview of clinical data repositoryAn overview of clinical data repository
An overview of clinical data repositoryNetrah Laxminarayanan
 
10 Things to Consider When Building a CTMS Business Case
10 Things to Consider When Building a CTMS Business Case10 Things to Consider When Building a CTMS Business Case
10 Things to Consider When Building a CTMS Business CasePerficient, Inc.
 
Getting optimal performance from oracle e business suite
Getting optimal performance from oracle e business suiteGetting optimal performance from oracle e business suite
Getting optimal performance from oracle e business suiteaioughydchapter
 
Getting optimal performance from oracle e business suite(aioug aug2015)
Getting optimal performance from oracle e business suite(aioug aug2015)Getting optimal performance from oracle e business suite(aioug aug2015)
Getting optimal performance from oracle e business suite(aioug aug2015)pasalapudi123
 
Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...
Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...
Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...RTTS
 
BCS DMSG Healthcare Data Management : Transformation through Migration 26-1...
BCS DMSG Healthcare Data Management : Transformation through Migration   26-1...BCS DMSG Healthcare Data Management : Transformation through Migration   26-1...
BCS DMSG Healthcare Data Management : Transformation through Migration 26-1...BCS Data Management Specialist Group
 
Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...
Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...
Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...Chromatography & Mass Spectrometry Solutions
 
Testing in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf SoftwareTesting in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf SoftwareJosiah Renaudin
 

Ähnlich wie Tips and Techniques for Improving the Performance of Validation Procedures in Oracle Clinical (20)

Harvard University database
Harvard University databaseHarvard University database
Harvard University database
 
Creating a Project Plan for a Data Warehouse Testing Assignment
Creating a Project Plan for a Data Warehouse Testing AssignmentCreating a Project Plan for a Data Warehouse Testing Assignment
Creating a Project Plan for a Data Warehouse Testing Assignment
 
香港六合彩
香港六合彩香港六合彩
香港六合彩
 
Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...
Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...
Leveraging Oracle's Clinical Development Analytics to Boost Productivity and ...
 
An Introduction to Clinical Study Migrations
An Introduction to Clinical Study MigrationsAn Introduction to Clinical Study Migrations
An Introduction to Clinical Study Migrations
 
Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...
Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...
Using JReview to Analyze Clinical and Pharmacovigilance Data in Disparate Sys...
 
Santosh_Nayak_CV
Santosh_Nayak_CVSantosh_Nayak_CV
Santosh_Nayak_CV
 
Leveraging HPE ALM & QuerySurge to test HPE Vertica
Leveraging HPE ALM & QuerySurge to test HPE VerticaLeveraging HPE ALM & QuerySurge to test HPE Vertica
Leveraging HPE ALM & QuerySurge to test HPE Vertica
 
Data Warehouse Testing in the Pharmaceutical Industry
Data Warehouse Testing in the Pharmaceutical IndustryData Warehouse Testing in the Pharmaceutical Industry
Data Warehouse Testing in the Pharmaceutical Industry
 
IVYWorks
IVYWorksIVYWorks
IVYWorks
 
The ABCs of Clinical Trial Management Systems
The ABCs of Clinical Trial Management SystemsThe ABCs of Clinical Trial Management Systems
The ABCs of Clinical Trial Management Systems
 
An overview of clinical data repository
An overview of clinical data repositoryAn overview of clinical data repository
An overview of clinical data repository
 
Bijayalaxmi Behera_CV
Bijayalaxmi Behera_CVBijayalaxmi Behera_CV
Bijayalaxmi Behera_CV
 
10 Things to Consider When Building a CTMS Business Case
10 Things to Consider When Building a CTMS Business Case10 Things to Consider When Building a CTMS Business Case
10 Things to Consider When Building a CTMS Business Case
 
Getting optimal performance from oracle e business suite
Getting optimal performance from oracle e business suiteGetting optimal performance from oracle e business suite
Getting optimal performance from oracle e business suite
 
Getting optimal performance from oracle e business suite(aioug aug2015)
Getting optimal performance from oracle e business suite(aioug aug2015)Getting optimal performance from oracle e business suite(aioug aug2015)
Getting optimal performance from oracle e business suite(aioug aug2015)
 
Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...
Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...
Data Warehousing in Pharma: How to Find Bad Data while Meeting Regulatory Req...
 
BCS DMSG Healthcare Data Management : Transformation through Migration 26-1...
BCS DMSG Healthcare Data Management : Transformation through Migration   26-1...BCS DMSG Healthcare Data Management : Transformation through Migration   26-1...
BCS DMSG Healthcare Data Management : Transformation through Migration 26-1...
 
Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...
Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...
Chromatography Data System: Getting It “Right First Time” Seminar Series – Pa...
 
Testing in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf SoftwareTesting in the New World of Off-the-Shelf Software
Testing in the New World of Off-the-Shelf Software
 

Mehr von Perficient, Inc.

Driving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season ResultsDriving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season ResultsPerficient, Inc.
 
Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation Perficient, Inc.
 
The Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial ServicesThe Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial ServicesPerficient, Inc.
 
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.Perficient, Inc.
 
Content, Commerce, and... COVID
Content, Commerce, and... COVIDContent, Commerce, and... COVID
Content, Commerce, and... COVIDPerficient, Inc.
 
Centene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success StoryCentene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success StoryPerficient, Inc.
 
Automate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug KodaAutomate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug KodaPerficient, Inc.
 
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration ProjectPreparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration ProjectPerficient, Inc.
 
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19Perficient, Inc.
 
The Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand FishkinThe Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand FishkinPerficient, Inc.
 
Cardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM CloudCardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM CloudPerficient, Inc.
 
Teams Summit - What is New and Coming
Teams Summit -  What is New and ComingTeams Summit -  What is New and Coming
Teams Summit - What is New and ComingPerficient, Inc.
 
Empower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis ManagementEmpower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis ManagementPerficient, Inc.
 
Adoption & Change Management Overview
Adoption & Change Management OverviewAdoption & Change Management Overview
Adoption & Change Management OverviewPerficient, Inc.
 
Microsoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from HomeMicrosoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from HomePerficient, Inc.
 
Securing Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote WorkSecuring Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote WorkPerficient, Inc.
 
Infrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote WorkersInfrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote WorkersPerficient, Inc.
 
Accelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft TeamsAccelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft TeamsPerficient, Inc.
 
Preparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge ManagementPreparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge ManagementPerficient, Inc.
 
Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work Perficient, Inc.
 

Mehr von Perficient, Inc. (20)

Driving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season ResultsDriving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season Results
 
Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation
 
The Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial ServicesThe Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial Services
 
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
 
Content, Commerce, and... COVID
Content, Commerce, and... COVIDContent, Commerce, and... COVID
Content, Commerce, and... COVID
 
Centene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success StoryCentene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success Story
 
Automate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug KodaAutomate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug Koda
 
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration ProjectPreparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
 
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
 
The Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand FishkinThe Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
 
Cardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM CloudCardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM Cloud
 
Teams Summit - What is New and Coming
Teams Summit -  What is New and ComingTeams Summit -  What is New and Coming
Teams Summit - What is New and Coming
 
Empower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis ManagementEmpower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis Management
 
Adoption & Change Management Overview
Adoption & Change Management OverviewAdoption & Change Management Overview
Adoption & Change Management Overview
 
Microsoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from HomeMicrosoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from Home
 
Securing Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote WorkSecuring Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote Work
 
Infrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote WorkersInfrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote Workers
 
Accelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft TeamsAccelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft Teams
 
Preparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge ManagementPreparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge Management
 
Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work
 

Kürzlich hochgeladen

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 

Kürzlich hochgeladen (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Tips and Techniques for Improving the Performance of Validation Procedures in Oracle Clinical

  • 1. Tips and Techniques for Improving the Performance of Validation Procedures in Oracle Clinical Steve Rifkin, Lead Technical Analyst, Clinical Data Management & EDC Life Sciences Business Unit facebook.com/perficient twitter.com/perficient_LSlinkedin.com/company/perficient
  • 2. Welcome & Introduction Steve Rifkin Lead Technical Analyst Clinical Data Management & EDC Life Sciences, Perficient • Extensive Oracle Clinical/RDC experience – 18+ years of experience with Oracle Clinical/RDC – Member of the team that implements, supports, enhances and integrates Oracle Clinical/RDC solutions – 50+ implementations and integrations
  • 3. Perficient is a leading information technology consulting firm serving clients throughout North America and Europe. We help clients implement business-driven technology solutions that integrate business processes, improve worker productivity, increase customer loyalty and create a more agile enterprise to better respond to new business opportunities. About Perficient
  • 4. • Founded in 1997 • Public, NASDAQ: PRFT • 2013 revenue ~$373 million • Major market locations throughout North America • Atlanta, Boston, Charlotte, Chicago, Cincinnati, Cleveland, Columbus, Dallas, Denver, Detroit, Fairfax, Houston, Indianapolis, Los Angeles, Minneapolis, New Orleans, New York City, Northern California, Philadelphia, Southern California, St. Louis, Toronto and Washington, D.C. • Global delivery centers in China, Europe and India • >2,100 colleagues • Dedicated solution practices • ~85% repeat business rate • Alliance partnerships with major technology vendors • Multiple vendor/industry technology and growth awards Perficient Profile
  • 5. BUSINESS SOLUTIONS Business Intelligence Business Process Management Customer Experience and CRM Enterprise Performance Management Enterprise Resource Planning Experience Design (XD) Management Consulting TECHNOLOGY SOLUTIONS Business Integration/SOA Cloud Services Commerce Content Management Custom Application Development Education Information Management Mobile Platforms Platform Integration Portal & Social Our Solutions Expertise
  • 6. Life SciencesPractices/Solutions Implementation Migration Integration Validation Consulting Upgrades Managed Services Application Development Private Cloud Hosting Application Support Sub-licensing Study Setup Services Deep Clinical and Pharmacovigilance Applications Expertise Clinical Trial Management Clinical Trial Planning and Budgeting Oracle ClearTrial CTMS Oracle Siebel CTMS / ASCEND Mobile CRA Clinical Data Management & Electronic Data Capture CDMS Oracle Clinical Electronic Data Capture Oracle Remote Data Capture Oracle InForm Medical Coding Oracle Thesaurus Management System Safety & Pharmacovigilance Adverse Event Reporting Oracle Argus Safety Suite Oracle AERS / Empirica Trace Axway Synchrony Gateway Signal Management Oracle Empirica Signal/Topics Medical Coding Oracle Thesaurus Management System Clinical Data Warehousing & Analytics Clinical Data Warehousing Oracle Life Sciences Data Hub Clinical Data Analytics Oracle Clinical Development Analytics JReview Data Review and Cleansing Oracle Data Management Workbench Clients
  • 7. Agenda • What is an Oracle Clinical Procedure • Review of PL/SQL Concepts – Cursors and Package Structure • Oracle Clinical Cursors • Structure of Oracle Clinical MAIN Procedure • Retrieval Techniques – Correlations – Qualifying Expressions – WHERE clause extension – Visit Limitations • Performance Considerations
  • 8. What is an Oracle Clinical Procedure? Definition => Validation Procs => Procedures
  • 9. Definition => Validation Procs => Procedures It’s a program! What is an Oracle Clinical Procedure?
  • 10. • Procedure templates are completed • Procedure is “generated” and What is an Oracle Clinical Procedure? A PL/SQL Program is created! To get the most out of OC procedures, you need to understand the structure of the program you create.
  • 11. Review of PL/SQL Concepts • Detailed knowledge of PL/SQL syntax is not required for understanding the overall program structure. – However, knowledge of PL/SQL cursors and of the PL/SQL Package structure is required.
  • 12. PL/SQL Cursors In SQL*Plus, a “select statement” retrieves an entire set of records: SQL> select patient, patient_position_id from patient_positions; PATIENT PATIENT_POSITION_ID ---------- ------------------- 100 5001 101 5101 102 5201 103 5301 104 5401 105 5501 106 5601 107 5701 108 5801 109 5901 Cursors also retrieve of a set of records; but unlike SQL*Plus, cursors allow access to one record at a time for procedural operations on data within the record.
  • 13. • Cursors are objects in a PL/SQL program • To use, cursors must be 1. Declared (to define the set of results) 2. Opened (to initialize) 3. Fetched (to retrieve one row for operations) 4. Closed (to release) PL/SQL Cursors
  • 14. • Cursor declaration defines the set of records to be retrieved from the database: • Like a “file” a cursor must be opened before it can be used: CURSOR cHeight IS SELECT height, height_unit FROM height_table WHERE patient=‘100’ ORDER BY visit_number; OPEN cHeight; PL/SQL Cursors
  • 15. PL/SQL Cursors • A “fetch” on the cursor retrieves a single row from the set of selected records and places the result into program variables: FETCH cHeight INTO height_var, height_unit_var; CLOSE cHeight; • Cursors are closed to release memory and perform internal cleanup:
  • 16. PL/SQL Cursors • Cursors are often fetched in a “loop” which processes the record: LOOP FETCH cHeight INTO height_var, height_unit_var ; IF cHeight%NOTFOUND THEN EXIT LOOP; ELSE <process current height_var, height_unit_var> END IF; END LOOP;
  • 17. PAT_LOOP FETCH cPatient_data into patient_var; IF cPatient_data%FOUND THEN ELSE EXIT PAT_LOOP; END IF; END PAT_LOOP; HEIGHT_LOOP FETCH cHeight INTO height_var, height_unit_var ; IF cHeight%FOUND THEN <process patient_var, height_var, height_unit_var> ELSE EXIT HEIGHT_LOOP; END IF; END HEIGHT_LOOP Nesting PL/SQL Cursors
  • 18. Cursors used by Oracle Clinical • Patient Information Cursor – Retrieves a record with all the information recorded for a single patient • DCM Cursor(s) – A DCM cursor for each “alias” listed on the procedure question group form – Retrieves the DCM responses (for the questions on the procedure question screen) and DCM header information
  • 19. Fields Retrieved by the Patient Cursor • V_CLINICAL_STUDY_VERSION_ID • V_DATA_MODIFIED_FLAG • V_PROCEDURE_ID • V_PROCEDURE_VERSION_SN • V_PROCEDURE_TYPE_CODE • V_USERNAME • V_DEBUG • V_LAST_BATCH_TS • V_CURRENT_LOCATION • V_MODE • V_LAB_DEPENDENT_FLAG • REPORTED_SEX • REPORTED_BIRTH_DATE • PATIENT_POSITION_ID • CLINICAL_STUDY_ID • REPORTED_DEATH_DATE • PATIENT • INVESTIGATOR_ID • SITE_ID • EARLY_TERMINATION_FLAG • PATIENT_ENROLLMENT_DATE • CLINICAL_SUBJECT_ID • INCLUSION_EXCLUSION_DATE • REPORTED_PATIENT_REFERENCE • REPORTED_INITIALS • REPORTED_DATE_LAST_PREGNACY • FIRST_SCREENING_DATE • TERMINATION_DATE
  • 20. Fields Retrieved by a DCM Cursor • ACTUAL_EVENT_ID • CLIN_PLAN_EVE_ID • CLIN_PLAN_EVE_NAME • DCM_DATE • DCM_ID • DCM_SUBSET_SN • DCM_TIME • INVESTIGATOR_ID • LAB • LAB_ID • LAB_RANGE_SUBSET_NUM • QUALIFYING_VALUE • RECEIVED_DCM_ENTRY_TS • RECEIVED_DCM_ID • REPEAT_SN • SITE_ID • SUBEVENT_NUMBER • VISIT_NUMBER
  • 21. Using Patient Cursor Fields • To use a value for a “V_” field, prefix the field name with “rxcpdstd.” – e.g., rxcpdstd.v_data_modified_flag • To use all other variables, prefix the name with “rxcpdstd.patients_rec.” – e.g., rxcpdstd.patients_rec.reported_birth_date Fields retrieved in the patient information cursor can be used to perform tests or calculations in your procedures or can be used as arguments to custom functions you may write.
  • 22. Structure of PL/SQL Packages • Generation of an Oracle Clinical procedure results in a PL/SQL package • PL/SQL packages contain one or more functions and/or procedures and have two sections – Specification • Lists all procedures and functions in the package • Declares all cursors and variables to be available to all the functions and procedures (i.e. the “common” area) – Body • Contains all the procedural code for the procedures and functions listed in the specification
  • 23. Package Specification in Oracle Clinical CREATE PACKAGE rxcpd_xxx_xx as CURSOR 1 is . . . . CURSOR 2 is . . . . CURSOR n is . . . . PROCEDURE main (… … …); PROCEDURE insert_discrepancy(… … …); PROCEDURE exception_handling (… … …); END rxcpd_xxx_xx; . . . Package is named with internal id and version numbers Definition and number of cursors declared depends on the number of “aliases” on the procedure question group form Three PL/SQL procedures are part of each Oracle Clinical package
  • 24. Body for a Package in Oracle Clinical INSERT_DISCREPANCY and EXCEPTION_HANDLING procedures call Oracle Clinical built-in packages and cannot be readily changed CREATE PACKAGE BODY rxcpd_xxx_xx as PROCEDURE main (… … …); <Program Code > END main; PROCEDURE insert_discrepancy(… … …); < Program Code> END insert_discrepancy; PROCEDURE exception_handling (… … …); <Program Code> END exception_handling; END rxcpd_xxx_xx; Program code in the MAIN procedure depends on options chosen on the procedure definition forms
  • 25. • MAIN procedure is a series of nested loops • For a simple procedure, outermost loop fetches the patient information – Next loop fetches DCM information as defined by the first procedure question group definition • After fetching the innermost loop, the expression details are evaluated Simplified Structure of a MAIN Procedure
  • 26. LOOP<Patient> Fetch Patient cursor LOOP <DCM1> Fetch DCM1 Cursor Execute Details End <DCM1> Loop End <Patient> Loop Simplified Structure of a MAIN Procedure … One DCM Procedure Question Group
  • 27. LOOP<Patient> Fetch Patient cursor LOOP <DCM1> Fetch DCM1 Cursor Execute Details End <DCM1> Loop End <Patient> Loop LOOP <DCM2> Fetch DCM2 Cursor End <DCM2> Loop Two DCM Procedure Question Groups Simplified Structure of a MAIN Procedure
  • 28. Some Techniques to Limit Retrievals • Correlate inner loop with a more outer loop – On event – On qualifying question value – On question values • Qualifying expressions • WHERE clause extension • Limit visits retrieved by the cursor
  • 29. Correlations • Can correlate on events – Inner cursor retrieves only a visit retrieved by the outer correlated cursor • Can correlate on qualifying questions – Inner cursor only retrieves DCMs which have the same value for the DCM qualifying question • Can correlate on question values – Inner cursor fetches only if a question’s value is equal to a question’s value in the outer cursor Correlation limits the fetches for inner cursors based on data obtained by a fetch in a more outer cursor.
  • 30. Fetch data for Patient 100 Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100 Correlation on Event Retrieval with No Correlation Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100 Test Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100 Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100 Test Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100 Test Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100 Test
  • 31. Fetch data for Patient 100 Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100 Correlation on Event Retrieval with Correlation on Event Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100 Test Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100 Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100 Test Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 2, Pt 100 TestX Fetch HYPERTENSIVE_YN from HYPERTENSION DCM for Visit 1, Pt 100 TestX
  • 32. Correlation on Event Definition => Validation Procs => Procedures, Press [Q-Groups] Alias to correlate to Inner loops use the same event (including subevent) as retrieved for the outer (correlated) loop
  • 33. Correlation on Qualifying Question Value • Assume two qualified DCMs recorded at a visit – Vitals DCM: qualified at Pre-Dose, 1 Hr Post-dose – EKG DCM: qualified at Pre-Dose, 1 Hr Post-dose • Correlate on both visit and qualifying question
  • 34. Fetch data for Patient 100 Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100, Pre-Dose X Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose X X Fetch SYSTOLIC_BP from VITALS DCM for Visit 1, Pt 100, Post-Dose Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100, Pre-Dose Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose X X X Fetch SYSTOLIC_BP from VITALS DCM for Visit 2, Pt 100, Post-Dose X Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose X X X Fetch EKG from EKG DCM for Visit 1, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 1, Pt 100, Post-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Pre-dose Fetch EKG from EKG DCM for Visit 2, Pt 100, Post-dose X X Correlation on Qualifying Question Value
  • 35. Correlating Questions • Use responses to DCM questions to correlate between outer and inner fetch loops – May want to fetch AE records where AE description matches the indication given for ConMed Definition => Validation Procs => Procedures, Press [Q-Groups]
  • 36. Definition => Validation Procs => Procedures, Press [Q-Groups], [Correlating Questions] Inner loop will fetch records only if the values of the responses to the two pairs of questions are the same! Outer LoopOuter LoopInner Loop Correlating Questions
  • 37. Correlations • Can correlate on Events – Inner cursor retrieves only a visit retrieved by the outer correlated cursor • Can correlate on Qualifying Questions – Inner cursor only retrieves DCMs which have the same value for the DCM Qualifying Question • Can correlate on Questions – Inner cursor fetches only if a question’s value is equal to a question’s value in the outer cursor Correlation limits the fetches for inner cursors based on data obtained by a fetch in a more outer cursor
  • 38. Effect of Correlation on Event ACTUAL_EVENT_ID is retrieved as part of the standard cursor variables in the outer cursor ……. Outer Cursor Definition
  • 39. Cursor variable i_actual_event_id specified when cursor is opened used in the where clause ……. Inner Cursor Definition Effect of Correlation on Event
  • 40. Call to open inner (CM) cursor uses the actual_event_id retrieved by the outer_cursor Fetch on the outer (AE) cursor retrieves a value of actual_event_id ); Effect of Correlation on Event
  • 41. Effect of Qualifying Question Value and Question Value Correlation • Other types of correlation (on qualifying question value or question values) work in the same way – When procedure compiled using these techniques, the procedure question group cursors are restricted – Opening of cursors in the MAIN procedure use cursor variables
  • 42. Qualifying Expressions • Allow selection of records based on any information retrieved by the current or any more outer cursor – Can join values between cursors in the qualifying expression Continue only if medication on the AE form is not null
  • 43. Qualifying Expressions • Allow selection of records based on any information retrieved by the current or any more outer cursor – Can join values between cursors in the qualifying expression Continue only if Medication on the AE form is not null
  • 44. Patient Record Loop Details Fetch Qualify Loop Inner CM Cursor Loop Outer AE Cursor Loop Effect of Qualifying Expressions
  • 45. Fetch an AE record Exit AE Fetch Qualify loop if no more AEs Exit AE Fetch Qualify loop if fetch qualifies Process inner loops/details or exit the cursor loop Effect of Qualifying Expressions
  • 46. • Limit cursor fetch with SQL expression comprised of key DCM fields – An LOV is available for fields which can be used in the Extension – With caution, can use other variables in the RECEIVED_DCMS and RESPONSES tables, but only for the current cursor • One way to limit retrievals to specific visits WHERE Clause Extension
  • 47. Can join only fields from the current cursor WHERE Clause Extension
  • 48. • Limit cursor fetch with SQL expression comprised of key DCM fields – An LOV is available for fields which can be used in the Extension – With caution, can use other variables in the RECEIVED_DCMS and RESPONSES tables, but only for the current cursor • One way to limit retrievals to specific visits WHERE Clause Extension …
  • 49. Extension of “where visit_number=1” Added to the default cursor definition Effect of Where Clause Extensions
  • 50. • Can limit to a range of visits fetched by providing the names of the first and last visits on the procedure question group form By default, all patient visits will be retrieved by the DCM cursor Controlling Range of Visits
  • 51. Definition => Validation Procs => Procedures, Press [Q-Groups] Only DCMs recorded for visits starting at “Visit 1” and going through “Visit 3” will be retrieved Controlling Range of Visits
  • 52. • Can limit to a range of visits fetched by providing the names of the first and last visits on the Procedure Question Group form By default, all patient visits will be retrieved by the DCM cursor Controlling Range of Visits …
  • 53. Effect of Range of Visits Control These are passed as input when the DCM cursor is opened by the main procedure
  • 54. Performance • Generated PL/SQL code contains a multitude of loops – Cursors are opened, fetched and closed many times in the internal fetch loops • Use as much correlation as possible to improve performance – Some types of correlations affect performance more than others – Correlation may be necessary to make sure the procedure does what is expected
  • 55. Effecting Performance Event Range In DCM Cursors Large Correlation Event In DCM Cursor Large Qualifying Value In DCM Cursor Large Correlating Questions In DCM Cursor Large Where Clause Extension In DCM Cursor Large Qualifying Expression Test after DCM Fetch Smaller Where Effect on Parameter Implemented Performance Note: In many cases, parameters must be changed so procedure performs correctly
  • 56. Summary • Procedure generation produces a complex PL/SQL program • Program makes extensive use of cursors and looping structure • Program performance can be changed by correct use of many techniques available from the form templates
  • 57.
  • 58. www.facebook.com/perficient www.perficient.com www.twitter.com/perficient_LS Thank You! For more information, please contact: steve.rifkin@perficient.com LifeSciencesInfo@perficient.com (Sales) +44 (0) 1865 910200 (U.K. Sales) +1 877 654 0033 (U.S. Sales)