REx: An Automated System for Extracting Clinical Trial Data from Oracle to SAS

Size: px
Start display at page:

Download "REx: An Automated System for Extracting Clinical Trial Data from Oracle to SAS"

Transcription

1 REx: An Automated System for Extracting Clinical Trial Data from Oracle to SAS Edward McCaney, Centocor Inc., Malvern, PA Gail Stoner, Centocor Inc., Malvern, PA Anthony Malinowski, Centocor Inc., Malvern, PA Robert Karvois, Centocor Inc., Malvern, PA ABSTRACT A primary need in the reporting of clinical trial data is the ability to periodically extract clean data from a clinical database management system. This paper presents the methodology currently in use by Centocor. REx (Reporting Effort Extraction) is a Microsoft Access 97 based application that extracts clinical trial data from an Oracle database using SAS/ACCESS and creates permanent SAS data sets. REx uses SAS macros to perform additional processing based on modifications (actions) requested by users. REx provides an interface to define actions, create and run extract code, archive extractions, and run reports. Additionally, the system has the ability to obtain metadata, update it with user-defined actions, and pass it to downstream processes. lists and dictionaries from the CDMS. It also allows the user to define straightforward additions, modifications and deletions to the extracted data sets. The goal of these modifications or actions is to enable consistent creation of standard reporting variables, to perform dictionary merges, and to perform other processing to facilitate analysis and review. All actions are reflected in an updated data model that serves as the foundation for an electronic submission. The clinical data, format catalog, dictionary, and data model are then passed to another system for analysis data set definition. INTRODUCTION When Centocor switched its clinical data management system (CDMS), the need arose to design a new process to extract clinical data from an Oracle database into SAS data sets for analysis and reporting. The new extraction system, REx, is a component of a redesigned analysis and reporting infrastructure. Previously, SAS data sets and format catalogs were pushed by data management as straight dumps of the database, including standard fields that did not pertain to the trial to be analyzed. Data set documentation was provided separately in paper format and could easily become outdated. From the snapshots of the clinical data, programmers created SAS analysis data sets for reporting and submission. Analysis data set definitions were stored in Word documents, a method that made it difficult to maintain standards across studies. Data definition documentation was generated from SAS PROC CONTENTS and required a substantial manual effort to comply with FDA electronic submission guidelines. All systems were VAX-based legacy hardware and software that received limited support from the company s IT department. The new system (Figure 1) runs on a Windows NT platform and enables users (programmers) to pull and snapshot the data model (metadata), clinical data, code Figure 1 REx Process Overview

2 ACCESS DATABASE The information used by REx is accessed through MS Access tables. REx consists of both internal and external tables. The external tables are part of a larger Access database that is referred to as the Data Model, a metadata table which describes the clinical data. An example of a metadata table is a list of data sets that are included in a particular study. For instance, the metadata (data set list) is used to populate the list boxes used for screen entry. The Data Model is used throughout the REx process. A second table, probably the more pivotal, is an internal table - the Action table. The Action table records all user input to REx and is used to create the extract code that ultimately creates the SAS data sets. When the extract code is created, the action variables are assembled to call the SAS macros. REx acts as a code generator using the Action table data as the information source. Once REx applies the actions to the database, the Data Model must be updated to reflect the changes. For instance, if REx drops a variable from a SAS data set, the variable would also have to be dropped from the Data Model. REx performs this step automatically after the programmer has extracted the clinical data. The user is able to produce a post-rex Data Model reflecting the applied actions. This is systematically accomplished through the merging of the pre-rex Data Model and the Action table. ORACLE DATABASE As mentioned in the last section, the Data Model and the support tables for REx are stored in MS Access. However, the tables do not contain any clinical data. The clinical data that is used to create permanent data sets is stored in an Oracle database. While REx s primary goal is to extract clinical data, REx never actually accesses the Oracle database. Instead, it produces extract programs that are run in batch mode on a server. The extract programs contain code that reference the SAS views (discussed in the next section) which access the Oracle database. The data accessed through these SAS views is then manipulated and saved permanently as SAS data sets. SAS VIEWS REx accesses the clinical data, dictionaries, and code lists (formats) contained in Oracle via permanent SAS views stored in a production view directory. These views are defined in SAS/ACCESS scripts (automatically generated by the CDMS) which contain PROC SQL modules for each data set. When the view scripts are run (external to REx) the PROC SQL code connects to the Oracle database and creates the views by selecting the data model defined columns. Variable labeling and formatting are also defined by the view according to the data model. A sample PROC SQL script is shown below for a demographics (DEMOG) data set (Figure 2). View Creation Script /* Module: DEMOG */ PROC SQL; CONNECT TO ORACLE(USER=XXXXXXXX PASSWORD=XXXXXXXX PATH='XXXXX'); CREATE VIEW EXAMPLE.DEMOG as SELECT REC_ID label = 'Record Identifier', PNO label = 'Protocol Number', CNO label = 'Center ID', PATNO label = 'Patient Number', EVENT_ID label = 'Event Identifier', DOB_DT label = 'Date of birth' Format=DATE9., SEX label = 'Sex' Format=SEX., RACE label = 'Race' Format=RACE. FROM CONNECTION TO ORACLE (SELECT to_char(rec_id), PNO, CNO, PATNO, EVENT_ID, trunc(c_dob_dt)- to_date(' ', 'DD-MM-YYYY'), c_sex, c_race FROM TESTPROT.TEST_DEMOG ORDER BY CNO, PATNO, EVENT_ID, REC_ID ) AS S(REC_ID, PNO, CNO, PATNO, EVENT_ID, DOB_DT, SEX,RACE); DISCONNECT FROM ORACLE; ACTION ENTRY Figure 2 View Creation Script Actions are user-specified, parameter-driven, SAS macro modules invoked by the system to create SAS code that is applied to a selected variable. The actions are used to prep the data so that it becomes more user friendly. REx actions can be applied either on a single variable contained within a data set or on a single variable contained in multiple data sets. SAS macro parameters are specified through the action entry screens and stored in the Action table (Figure 3).

3 of an additional prompt where the user specifies the format used to decode the variable. The actions are implemented via SAS macros. Figure 5 shows the SAS macro code for the RESET action. %RESET Action Macro %RESET(DEMOG, SEX, $SEX). %MACRO RESET(DATASET,VARIABLE,FORMAT); /*Upcase the parameter VARIABLE */ %let VARIABLE = %upcase(&variable); Figure 3 Action Entry Variable Level Screen Variable level actions are applied to a single variable within a data set. A data set, variable, and action are selected from the entry screen. If additional information is required to complete the action, an action-specific prompt (example Figure 4 below) will be displayed requesting the user to enter the necessary required parameter information. The standard parameters created are: parameter 1 - the data set on which the action will be performed parameter 2 - the variable parameter 3 - the information specific to the action. /* Obtain the label from the original variable. */ Proc contents data = &DATASET out= _TLABEL (keep = NAME LABEL) noprint; /* Create a macro variable containing the original variable label. */ Data _TLABEL; Set _TLABEL (where = (NAME = "&VARIABLE")); Call symput("m_label",label); /* Use the format to create the new value for the varible. Attach the label from the original variable. */ Data &DATASET (drop = TEMPVAR) ; Set &DATASET (rename= (&VARIABLE =TEMPVAR)); &VARIABLE = put(tempvar,&format); label &VARIABLE = &M_LABEL; If left(&variable) = '.' then &VARIABLE=' '; /* Get rid of the work data set. */ Proc Datasets nolist; delete _TLABEL; quit; %MEND RESET; Figure 5 %RESET Action Macro Figure 4 - Action Entry Variable Level Screen Showing Action Specific Prompt An example of a variable level action is changing a coded value to a decoded value. In REx, this is known as a RESET action. The RESET action, requires: parameter 1- DEMOG (data set name) parameter 2 - SEX (variable to be processed) parameter 3 - $SEX. (the SAS format). The user selects the data set, variable, and action from the entry screen. The RESET action triggers the display Data set level action entry is very similar to variable level entry, the differentiation being the number of data sets to which the action is going to be applied. This screen allows the user to efficiently specify the same action on many data sets. The user first selects multiple data sets from the data set column, the variable, and then the action to be applied. Again, if additional information is needed to complete the actions, an action-specific screen will appear. An individual action is created in the action table for each data set. For example, to RESET a variable contained in multiple data sets, the user selects all of the data sets, the variable, and the action RESET. A prompt will request the user to enter the format. Variables that are not selected for action processing are passed through without an action being added to the action table.

4 CREATING EXTRACT CODE REx creates a single program for each data set. The code that is created by REx includes all the appropriate libname statements necessary to execute the program. The programs will include any actions that the user has specified in the Action Entry screens (Figures 3 and 4). When creating the extract code, the actions and the parameters are assembled so they can call an existing SAS macro module. The following example (Figure 6) displays the DEMOG extract program that was created by REx using the information stored in the Action table. Extract Code (REx_DEMOG) %macro REx_DEMOG(Raw_Data=,Rex_Data=); * Allocate libraries; Libname DS 'data library' ; Libname DEMOG 'SAS view library'; Libname Raw_Data "&Raw_Data"; Libname Rex_Data "&Rex_Data"; Libname Library 'SAS format library'; * Perform REx actions; Data DEMOG; set DEMOG.DEMOG; %DROP_VAR(DEMOG,REC_ID); %PATID(DEMOG); %RENAME(DEMOG,EVENT_ID,VISIT); %RESET(DEMOG,SEX,SEX.); %RESET(DEMOG,RACE,RACE.); %UNIQUE_P(DEMOG); * Create archived copy of the pre-rex data; Data Raw_Data.DEMOG; set DEMOG.DEMOG; * Create permanent copy of post-rex data for analysis; Data DS.DEMOG; set DEMOG; * Create archived date/time stamped copy of post-rex data for audit purposes; Data Rex_Data.DEMOG; set DEMOG; %mend REx_DEMOG; Figure 6 Extract Code (REx_DEMOG) Figure 7 Reporting Effort Extraction Screen The user then clicks the Run Program button and REx creates a macro call to the extract code as seen below in figure 8. Extract Code Macro Call %REx_demog (raw_data= C:\prod\archive\01oct \data, rex_data= C:\prod\archive\01oct \rex); Figure 8 Extract Code Macro Call This program contains the extract code macro call that passes the values of the archive parameters to the extract code macro (i.e. REX_DEMOG, see Figure 6). These parameters are the names of the archive directories that have been created by REx. A new directory and call are created every time REx is run. Once this file has been created, it is sent to the server to be executed. Notice that this SAS macro accepts two parameters. These parameters pass the archive directory names (which contain the date/time of the REx extraction) to the macro. Every time REx extracts data from the Oracle database a new archive directory is created thus giving the user an audit trail of REx activities. RUNNING EXTRACT CODE Once created, the REx system can use the extract code to create the SAS data sets. The user can select the data sets to be extracted from the Create Data Sets screen (Figure 7).

5 OUTPUT After running the REx extraction code, SAS data sets containing clinical and dictionary data, and a SAS format catalog are produced. These data sets reflect a snapshot of the raw clinical data contained in the CDMS with the REx actions applied. The clinical data is written to a production data directory. The dictionaries and formats are written to a production formats directory. These data sets are now available for use in creation of analysis data sets. REx also creates archived copies of the extracted data. Copies of both the pre-rex (raw clinical data prior to application of REx actions) and post-rex data sets are archived in a date/time stamped folder in a production archive directory. These archived snapshots provide an audit trail of REx activities. In addition to generating the SAS data sets, the clinical data model is updated to reflect the effects of the REx actions. This updated data model is used by a downstream application in generating analysis data set definitions. REx also provides a reporting function. These reports reflect the contents of the action table for a particular reporting effort. Users can generate reports of REx actions by data set or by action type. These reports are used to ensure that the desired actions and parameters have been defined for a data extraction. CONCLUSION The new system has been successfully designed and implemented to run on Windows NT. It has grown from a single-user, single-project prototype to a production system that supports multiple users across multiple projects. It has fulfilled requirements for pulling data and performing user-defined actions as well as updating the data model to reflect those actions. The REx process of specifying actions and the use of the macros to execute those requests has increased the consistency of variable definition across projects and brought uniformity to the code used to create these variables. The ready availability of the data model reduces the documentation burden and allows programmers and statisticians to focus on the definition, coding and quality control of more critical analysis variables. ACKNOWLEDGEMENTS SAS and all other SAS Institute, Inc. product or service names are registered trademarks or trademarks of SAS Institute, Inc. in the United States and other countries. indicates USA registration. Other brand and product names are registered trademarks or trademarks of their respective company. CONTACT INFORMATION Edward McCaney mccaneye@centocor.com Gail Stoner stoner@centocor.com Anthony Malinowski malinowskia@centocor.com Robert Karvois karvoisr@centocor.com In summary, the implementation of the REx system has significantly enhanced the programming group s ability to efficiently perform downstream processing. This includes generation of analysis data sets, maintenance of standard variable definitions and automatic generation of data definition documentation for electronic submission to the FDA.

How To Use Sas With A Computer System Knowledge Management (Sas)

How To Use Sas With A Computer System Knowledge Management (Sas) Paper AD13 Medical Coding System for Clinical Trials 21 CFR Part 11 Compliant SAS/AF Application Annie Guo, ICON Clinical Research, Redwood City, CA ABSTRACT Medical coding in clinical trials is to classify

More information

Get in Control! Configuration Management for SAS Projects John Quarantillo, Westat, Rockville, MD

Get in Control! Configuration Management for SAS Projects John Quarantillo, Westat, Rockville, MD AD004 Get in Control! Configuration Management for SAS Projects John Quarantillo, Westat, Rockville, MD Abstract SAS applications development can benefit greatly from the use of Configuration Management/Source

More information

Preparing Real World Data in Excel Sheets for Statistical Analysis

Preparing Real World Data in Excel Sheets for Statistical Analysis Paper DM03 Preparing Real World Data in Excel Sheets for Statistical Analysis Volker Harm, Bayer Schering Pharma AG, Berlin, Germany ABSTRACT This paper collects a set of techniques of importing Excel

More information

SAS, Excel, and the Intranet

SAS, Excel, and the Intranet SAS, Excel, and the Intranet Peter N. Prause, The Hartford, Hartford CT Charles Patridge, The Hartford, Hartford CT Introduction: The Hartford s Corporate Profit Model (CPM) is a SAS based multi-platform

More information

ABSTRACT TECHNICAL DESIGN INTRODUCTION FUNCTIONAL DESIGN

ABSTRACT TECHNICAL DESIGN INTRODUCTION FUNCTIONAL DESIGN Overview of a Browser-Based Clinical Report Generation Tool Paul Gilbert, DataCeutics, Pottstown PA Greg Weber, DataCeutics Teofil Boata, Purdue Pharma ABSTRACT In an effort to increase reporting quality

More information

A Method for Cleaning Clinical Trial Analysis Data Sets

A Method for Cleaning Clinical Trial Analysis Data Sets A Method for Cleaning Clinical Trial Analysis Data Sets Carol R. Vaughn, Bridgewater Crossings, NJ ABSTRACT This paper presents a method for using SAS software to search SAS programs in selected directories

More information

From Database to your Desktop: How to almost completely automate reports in SAS, with the power of Proc SQL

From Database to your Desktop: How to almost completely automate reports in SAS, with the power of Proc SQL From Database to your Desktop: How to almost completely automate reports in SAS, with the power of Proc SQL Kirtiraj Mohanty, Department of Mathematics and Statistics, San Diego State University, San Diego,

More information

Interfacing SAS Software, Excel, and the Intranet without SAS/Intrnet TM Software or SAS Software for the Personal Computer

Interfacing SAS Software, Excel, and the Intranet without SAS/Intrnet TM Software or SAS Software for the Personal Computer Interfacing SAS Software, Excel, and the Intranet without SAS/Intrnet TM Software or SAS Software for the Personal Computer Peter N. Prause, The Hartford, Hartford CT Charles Patridge, The Hartford, Hartford

More information

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication

Technical Paper. Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Technical Paper Defining an ODBC Library in SAS 9.2 Management Console Using Microsoft Windows NT Authentication Release Information Content Version: 1.0 October 2015. Trademarks and Patents SAS Institute

More information

Paper PO03. A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet. Sijian Zhang University of Alabama at Birmingham

Paper PO03. A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet. Sijian Zhang University of Alabama at Birmingham Paper PO03 A Case of Online Data Processing and Statistical Analysis via SAS/IntrNet Sijian Zhang University of Alabama at Birmingham BACKGROUND It is common to see that statisticians at the statistical

More information

SAS System and SAS Program Validation Techniques Sy Truong, Meta-Xceed, Inc., San Jose, CA

SAS System and SAS Program Validation Techniques Sy Truong, Meta-Xceed, Inc., San Jose, CA SAS System and SAS Program Validation Techniques Sy Truong, Meta-Xceed, Inc., San Jose, CA ABSTRACT This course will teach methodologies of performing SAS system and SAS program validation including new

More information

ABSTRACT THE ISSUE AT HAND THE RECIPE FOR BUILDING THE SYSTEM THE TEAM REQUIREMENTS. Paper DM09-2012

ABSTRACT THE ISSUE AT HAND THE RECIPE FOR BUILDING THE SYSTEM THE TEAM REQUIREMENTS. Paper DM09-2012 Paper DM09-2012 A Basic Recipe for Building a Campaign Management System from Scratch: How Base SAS, SQL Server and Access can Blend Together Tera Olson, Aimia Proprietary Loyalty U.S. Inc., Minneapolis,

More information

Using Proc SQL and ODBC to Manage Data outside of SAS Jeff Magouirk, National Jewish Medical and Research Center, Denver, Colorado

Using Proc SQL and ODBC to Manage Data outside of SAS Jeff Magouirk, National Jewish Medical and Research Center, Denver, Colorado Using Proc SQL and ODBC to Manage Data outside of SAS Jeff Magouirk, National Jewish Medical and Research Center, Denver, Colorado ABSTRACT The ability to use Proc SQL and ODBC to manage data outside of

More information

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide SAS/ACCESS 9.1 Interface to SAP BW User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to SAP BW: User s Guide. Cary, NC: SAS

More information

Managing Tables in Microsoft SQL Server using SAS

Managing Tables in Microsoft SQL Server using SAS Managing Tables in Microsoft SQL Server using SAS Jason Chen, Kaiser Permanente, San Diego, CA Jon Javines, Kaiser Permanente, San Diego, CA Alan L Schepps, M.S., Kaiser Permanente, San Diego, CA Yuexin

More information

We begin by defining a few user-supplied parameters, to make the code transferable between various projects.

We begin by defining a few user-supplied parameters, to make the code transferable between various projects. PharmaSUG 2013 Paper CC31 A Quick Patient Profile: Combining External Data with EDC-generated Subject CRF Titania Dumas-Roberson, Grifols Therapeutics, Inc., Durham, NC Yang Han, Grifols Therapeutics,

More information

Effective Use of SQL in SAS Programming

Effective Use of SQL in SAS Programming INTRODUCTION Effective Use of SQL in SAS Programming Yi Zhao Merck & Co. Inc., Upper Gwynedd, Pennsylvania Structured Query Language (SQL) is a data manipulation tool of which many SAS programmers are

More information

Clinical Data Management (Process and practical guide) Dr Nguyen Thi My Huong WHO/RHR/RCP/SIS

Clinical Data Management (Process and practical guide) Dr Nguyen Thi My Huong WHO/RHR/RCP/SIS Clinical Data Management (Process and practical guide) Dr Nguyen Thi My Huong WHO/RHR/RCP/SIS Training Course in Sexual and Reproductive Health Research Geneva 2012 OUTLINE Clinical Data Management CDM

More information

Carl R. Haske, Ph.D., STATPROBE, Inc., Ann Arbor, MI

Carl R. Haske, Ph.D., STATPROBE, Inc., Ann Arbor, MI Using SAS/AF for Managing Clinical Data Carl R. Haske, Ph.D., STATPROBE, Inc., Ann Arbor, MI ABSTRACT Using SAS/AF as a software development platform permits rapid applications development. SAS supplies

More information

Importing Excel File using Microsoft Access in SAS Ajay Gupta, PPD Inc, Morrisville, NC

Importing Excel File using Microsoft Access in SAS Ajay Gupta, PPD Inc, Morrisville, NC ABSTRACT PharmaSUG 2012 - Paper CC07 Importing Excel File using Microsoft Access in SAS Ajay Gupta, PPD Inc, Morrisville, NC In Pharmaceuticals/CRO industries, Excel files are widely use for data storage.

More information

Using Pharmacovigilance Reporting System to Generate Ad-hoc Reports

Using Pharmacovigilance Reporting System to Generate Ad-hoc Reports Using Pharmacovigilance Reporting System to Generate Ad-hoc Reports Jeff Cai, Amylin Pharmaceuticals, Inc., San Diego, CA Jay Zhou, Amylin Pharmaceuticals, Inc., San Diego, CA ABSTRACT To supplement Oracle

More information

Automation of Large SAS Processes with Email and Text Message Notification Seva Kumar, JPMorgan Chase, Seattle, WA

Automation of Large SAS Processes with Email and Text Message Notification Seva Kumar, JPMorgan Chase, Seattle, WA Automation of Large SAS Processes with Email and Text Message Notification Seva Kumar, JPMorgan Chase, Seattle, WA ABSTRACT SAS includes powerful features in the Linux SAS server environment. While creating

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Clinical Data Warehouse Functionality Peter Villiers, SAS Institute Inc., Cary, NC

Clinical Data Warehouse Functionality Peter Villiers, SAS Institute Inc., Cary, NC Clinical Warehouse Functionality Peter Villiers, SAS Institute Inc., Cary, NC ABSTRACT Warehousing is a buzz-phrase that has taken the information systems world by storm. It seems that in every industry

More information

Analyzing the Server Log

Analyzing the Server Log 87 CHAPTER 7 Analyzing the Server Log Audience 87 Introduction 87 Starting the Server Log 88 Using the Server Log Analysis Tools 88 Customizing the Programs 89 Executing the Driver Program 89 About the

More information

A Macro to Create Data Definition Documents

A Macro to Create Data Definition Documents A Macro to Create Data Definition Documents Aileen L. Yam, sanofi-aventis Inc., Bridgewater, NJ ABSTRACT Data Definition documents are one of the requirements for NDA submissions. This paper contains a

More information

How To Write A Clinical Trial In Sas

How To Write A Clinical Trial In Sas PharmaSUG2013 Paper AD11 Let SAS Set Up and Track Your Project Tom Santopoli, Octagon, now part of Accenture Wayne Zhong, Octagon, now part of Accenture ABSTRACT When managing the programming activities

More information

Emailing Automated Notification of Errors in a Batch SAS Program Julie Kilburn, City of Hope, Duarte, CA Rebecca Ottesen, City of Hope, Duarte, CA

Emailing Automated Notification of Errors in a Batch SAS Program Julie Kilburn, City of Hope, Duarte, CA Rebecca Ottesen, City of Hope, Duarte, CA Emailing Automated Notification of Errors in a Batch SAS Program Julie Kilburn, City of Hope, Duarte, CA Rebecca Ottesen, City of Hope, Duarte, CA ABSTRACT With multiple programmers contributing to a batch

More information

SPI Backup via Remote Terminal

SPI Backup via Remote Terminal FLUOR SPI Backup via Remote Terminal SmartPlant Implementation Team By Mitch Fortey Copyright 2014 Fluor Corporation all rights reserved SPI Back Up via Remote Terminal Data Backup 101 Why do we backup

More information

Building and Customizing a CDISC Compliance and Data Quality Application Wayne Zhong, Accretion Softworks, Chester Springs, PA

Building and Customizing a CDISC Compliance and Data Quality Application Wayne Zhong, Accretion Softworks, Chester Springs, PA WUSS2015 Paper 84 Building and Customizing a CDISC Compliance and Data Quality Application Wayne Zhong, Accretion Softworks, Chester Springs, PA ABSTRACT Creating your own SAS application to perform CDISC

More information

How To Create An Audit Trail In Sas

How To Create An Audit Trail In Sas Audit Trails for SAS Data Sets Minh Duong Texas Institute for Measurement, Evaluation, and Statistics University of Houston, Houston, TX ABSTRACT SAS data sets are now more accessible than ever. They are

More information

Top Ten SAS DBMS Performance Boosters for 2009 Howard Plemmons, SAS Institute Inc., Cary, NC

Top Ten SAS DBMS Performance Boosters for 2009 Howard Plemmons, SAS Institute Inc., Cary, NC Paper 309-2009 Top Ten SAS DBMS Performance Boosters for 2009 Howard Plemmons, SAS Institute Inc, Cary, NC ABSTRACT Gleaned from internal development efforts and SAS technical support, this paper tracks

More information

ETL-03 Using SAS Enterprise ETL Server to Build a Data Warehouse: Focus on Student Enrollment Data ABSTRACT WHO WE ARE MISSION PURPOSE BACKGROUND

ETL-03 Using SAS Enterprise ETL Server to Build a Data Warehouse: Focus on Student Enrollment Data ABSTRACT WHO WE ARE MISSION PURPOSE BACKGROUND ETL-03 Using SAS Enterprise ETL Server to Build a Data Warehouse: Focus on Student Enrollment Data Evangeline Collado, University of Central Florida, Orlando, FL M. Paige Borden, University of Central

More information

KEY FEATURES OF SOURCE CONTROL UTILITIES

KEY FEATURES OF SOURCE CONTROL UTILITIES Source Code Revision Control Systems and Auto-Documenting Headers for SAS Programs on a UNIX or PC Multiuser Environment Terek Peterson, Alliance Consulting Group, Philadelphia, PA Max Cherny, Alliance

More information

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report

Dream Report vs MS SQL Reporting. 10 Key Advantages for Dream Report Dream Report vs MS SQL Reporting 10 Key Advantages for Dream Report Page 2 of 15 Table of Contents INTRODUCTION 3 PROFESSIONAL SOFTWARE FOR NON-PROGRAMMING USERS 4 CONSIDERABLE DIFFERENCE IN ENGINEERING

More information

How to easily convert clinical data to CDISC SDTM

How to easily convert clinical data to CDISC SDTM How to easily convert clinical data to CDISC SDTM Ale Gicqueau, Clinovo, Sunnyvale, CA Miki Huang, Clinovo, Sunnyvale, CA Stephen Chan, Clinovo, Sunnyvale, CA INTRODUCTION Sponsors are receiving clinical

More information

You have got SASMAIL!

You have got SASMAIL! You have got SASMAIL! Rajbir Chadha, Cognizant Technology Solutions, Wilmington, DE ABSTRACT As SAS software programs become complex, processing times increase. Sitting in front of the computer, waiting

More information

PrivateWire Gateway Load Balancing and High Availability using Microsoft SQL Server Replication

PrivateWire Gateway Load Balancing and High Availability using Microsoft SQL Server Replication PrivateWire Gateway Load Balancing and High Availability using Microsoft SQL Server Replication Introduction The following document describes how to install PrivateWire in high availability mode using

More information

Data Presentation. Paper 126-27. Using SAS Macros to Create Automated Excel Reports Containing Tables, Charts and Graphs

Data Presentation. Paper 126-27. Using SAS Macros to Create Automated Excel Reports Containing Tables, Charts and Graphs Paper 126-27 Using SAS Macros to Create Automated Excel Reports Containing Tables, Charts and Graphs Tugluke Abdurazak Abt Associates Inc. 1110 Vermont Avenue N.W. Suite 610 Washington D.C. 20005-3522

More information

Migration of SAS Software From VMS to Windows NT : A Real Life Story

Migration of SAS Software From VMS to Windows NT : A Real Life Story Migration of Software From VMS to Windows NT : A Real Life Story Paul Gilbert & Steve Light at DataCeutics, Inc., John Scott Grainger at ClinTrials Research Introduction At ClinTrials Research, Inc. clinical

More information

Effective Use of SAS/CONNECT ~ Cheryl Garner SAS Institute Inc., Cary, NC

Effective Use of SAS/CONNECT ~ Cheryl Garner SAS Institute Inc., Cary, NC Effective Use of SAS/CONNECT ~ Cheryl Garner SAS Institute Inc., Cary, NC Abstract SAS/CONNECT affords users connectivity between numerous operating systems and hardware configurations to allow remote

More information

What's New in SAS Data Management

What's New in SAS Data Management Paper SAS034-2014 What's New in SAS Data Management Nancy Rausch, SAS Institute Inc., Cary, NC; Mike Frost, SAS Institute Inc., Cary, NC, Mike Ames, SAS Institute Inc., Cary ABSTRACT The latest releases

More information

Automate Data Integration Processes for Pharmaceutical Data Warehouse

Automate Data Integration Processes for Pharmaceutical Data Warehouse Paper AD01 Automate Data Integration Processes for Pharmaceutical Data Warehouse Sandy Lei, Johnson & Johnson Pharmaceutical Research and Development, L.L.C, Titusville, NJ Kwang-Shi Shu, Johnson & Johnson

More information

# or ## - how to reference SQL server temporary tables? Xiaoqiang Wang, CHERP, Pittsburgh, PA

# or ## - how to reference SQL server temporary tables? Xiaoqiang Wang, CHERP, Pittsburgh, PA # or ## - how to reference SQL server temporary tables? Xiaoqiang Wang, CHERP, Pittsburgh, PA ABSTRACT This paper introduces the ways of creating temporary tables in SQL Server, also uses some examples

More information

Installation and Operating Instructions Audit Trail Software for 6126/6127/6128/6129 Series

Installation and Operating Instructions Audit Trail Software for 6126/6127/6128/6129 Series Installation and Operating Instructions Audit Trail Software for 6126/6127/6128/6129 Series General Notes These instructions are for installing S&G Audit Software (and all associated software components)

More information

Using SAS Enterprise Business Intelligence to Automate a Manual Process: A Case Study Erik S. Larsen, Independent Consultant, Charleston, SC

Using SAS Enterprise Business Intelligence to Automate a Manual Process: A Case Study Erik S. Larsen, Independent Consultant, Charleston, SC Using SAS Enterprise Business Intelligence to Automate a Manual Process: A Case Study Erik S. Larsen, Independent Consultant, Charleston, SC Abstract: Often times while on a client site as a SAS consultant,

More information

Feith Rules Engine Version 8.1 Install Guide

Feith Rules Engine Version 8.1 Install Guide Feith Rules Engine Version 8.1 Install Guide Feith Rules Engine Version 8.1 Install Guide Copyright 2011 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced,

More information

Overview. NT Event Log. CHAPTER 8 Enhancements for SAS Users under Windows NT

Overview. NT Event Log. CHAPTER 8 Enhancements for SAS Users under Windows NT 177 CHAPTER 8 Enhancements for SAS Users under Windows NT Overview 177 NT Event Log 177 Sending Messages to the NT Event Log Using a User-Written Function 178 Examples of Using the User-Written Function

More information

An Overview of REDCap, a secure web-based application for Electronic Data Capture

An Overview of REDCap, a secure web-based application for Electronic Data Capture PharmaSUG 2014 - Paper PO19 An Overview of REDCap, a secure web-based application for Electronic Data Capture Kevin Viel; inventiv Health Clinical and Histonis, Incorporated; Atlanta, GA ABSTRACT REDCap

More information

A SAS Based Correspondence Management System Bernd E. Imken, Patented Medicine Prices Review Board, Ottawa, Canada

A SAS Based Correspondence Management System Bernd E. Imken, Patented Medicine Prices Review Board, Ottawa, Canada Paper 41-26 A SAS Based Correspondence Management System Bernd E. Imken, Patented Medicine Prices Review Board, Ottawa, Canada Figure 1 - The Original Version 6 DataForm Application - BEFORE MODIFICATIONS

More information

ABSTRACT INTRODUCTION THE MAPPING FILE GENERAL INFORMATION

ABSTRACT INTRODUCTION THE MAPPING FILE GENERAL INFORMATION An Excel Framework to Convert Clinical Data to CDISC SDTM Leveraging SAS Technology Ale Gicqueau, Clinovo, Sunnyvale, CA Marc Desgrousilliers, Clinovo, Sunnyvale, CA ABSTRACT CDISC SDTM data is the standard

More information

Project management integrated into Outlook

Project management integrated into Outlook Project management integrated into Outlook InLoox PM 7.x off-line operation An InLoox Whitepaper Published: October 2011 Copyright: 2011 InLoox GmbH. You can find up-to-date information at http://www.inloox.com

More information

It s not the Yellow Brick Road but the SAS PC FILES SERVER will take you Down the LIBNAME PATH= to Using the 64-Bit Excel Workbooks.

It s not the Yellow Brick Road but the SAS PC FILES SERVER will take you Down the LIBNAME PATH= to Using the 64-Bit Excel Workbooks. Pharmasug 2014 - paper CC-47 It s not the Yellow Brick Road but the SAS PC FILES SERVER will take you Down the LIBNAME PATH= to Using the 64-Bit Excel Workbooks. ABSTRACT William E Benjamin Jr, Owl Computer

More information

THE INTRICATE ORGANIZATION AND MANAGEMENT OF CLINICAL RESEARCH LABORATORY SAMPLES USING SAS/AF"

THE INTRICATE ORGANIZATION AND MANAGEMENT OF CLINICAL RESEARCH LABORATORY SAMPLES USING SAS/AF THE INTRICATE ORGANIZATION AND MANAGEMENT OF CLINICAL RESEARCH LABORATORY SAMPLES USING SAS/AF" Jacqueline A. Wendel, M.S., University of Rochester Daniel A. Nosek, University of Rochester ABSTRACT: The

More information

Improving Your Relationship with SAS Enterprise Guide

Improving Your Relationship with SAS Enterprise Guide Paper BI06-2013 Improving Your Relationship with SAS Enterprise Guide Jennifer Bjurstrom, SAS Institute Inc. ABSTRACT SAS Enterprise Guide has proven to be a very beneficial tool for both novice and experienced

More information

Date/Time Stamped Files and Audit Trails: What Part 11 Compliant SAS Systems are Made of. Carolyn Dougherty, ViroPharma Incorporated, Exton, PA

Date/Time Stamped Files and Audit Trails: What Part 11 Compliant SAS Systems are Made of. Carolyn Dougherty, ViroPharma Incorporated, Exton, PA PH003 /Time Stamped Files and Audit Trails: What Part 11 Compliant SAS Systems are Made of. Carolyn Dougherty, ViroPharma Incorporated, Exton, PA ABSTRACT Clinical data reporting systems are considered

More information

Building an Integrated Clinical Trial Data Management System With SAS Using OLE Automation and ODBC Technology

Building an Integrated Clinical Trial Data Management System With SAS Using OLE Automation and ODBC Technology Building an Integrated Clinical Trial Data Management System With SAS Using OLE Automation and ODBC Technology Alexandre Peregoudov Reproductive Health and Research, World Health Organization Geneva, Switzerland

More information

IBM Sterling Control Center

IBM Sterling Control Center IBM Sterling Control Center System Administration Guide Version 5.3 This edition applies to the 5.3 Version of IBM Sterling Control Center and to all subsequent releases and modifications until otherwise

More information

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Karin LaPann ViroPharma Incorporated ABSTRACT Much functionality has been added to the SAS to Excel procedures in SAS version 9.

More information

Statistical Operations: The Other Half of Good Statistical Practice

Statistical Operations: The Other Half of Good Statistical Practice Integrating science, technology and experienced implementation Statistical Operations: The Other Half of Good Statistical Practice Alan Hopkins, Ph.D. Theravance, Inc. Presented at FDA/Industry Statistics

More information

PharmaSUG 2014 Paper CC23. Need to Review or Deliver Outputs on a Rolling Basis? Just Apply the Filter! Tom Santopoli, Accenture, Berwyn, PA

PharmaSUG 2014 Paper CC23. Need to Review or Deliver Outputs on a Rolling Basis? Just Apply the Filter! Tom Santopoli, Accenture, Berwyn, PA PharmaSUG 2014 Paper CC23 Need to Review or Deliver Outputs on a Rolling Basis? Just Apply the Filter! Tom Santopoli, Accenture, Berwyn, PA ABSTRACT Wouldn t it be nice if all of the outputs in a deliverable

More information

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Donna Torrence, SAS Institute Inc., Cary, North Carolina Juli Staub Perry, SAS Institute Inc., Cary, North Carolina

More information

An Approach to Creating Archives That Minimizes Storage Requirements

An Approach to Creating Archives That Minimizes Storage Requirements Paper SC-008 An Approach to Creating Archives That Minimizes Storage Requirements Ruben Chiflikyan, RTI International, Research Triangle Park, NC Mila Chiflikyan, RTI International, Research Triangle Park,

More information

Implementing an Audit Trail within a Clinical Reporting Tool Paul Gilbert, Troy A. Ruth, Gregory T. Weber DataCeutics, Inc.

Implementing an Audit Trail within a Clinical Reporting Tool Paul Gilbert, Troy A. Ruth, Gregory T. Weber DataCeutics, Inc. Paper AD12 Implementing an Audit Trail within a Clinical Reporting Tool Paul Gilbert, Troy A. Ruth, Gregory T. Weber DataCeutics, Inc., Pottstown, PA ABSTRACT This paper is a follow-up to Overview of a

More information

Paper FF-014. Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL

Paper FF-014. Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL Paper FF-014 Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL ABSTRACT Many companies are moving to SAS Enterprise Guide, often with just a Unix server. A surprising

More information

Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software

Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software Eileen Ching, SmithKline Beecham Pharmaceuticals, Collegeville, PA Rosemary Oakes, SmithKline Beecham Pharmaceuticals,

More information

SAS Drug Development Release Notes 35DRG07

SAS Drug Development Release Notes 35DRG07 SAS Drug Development Release Notes 35DRG07 SAS Drug Development (SDD) 3.5 is validated to work with/on the following technologies: MS Windows: Windows 7 and Windows XP Mac OS X: Snow Leopard (10.6) Internet

More information

Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc

Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc Paper 039-29 Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc ABSTRACT This paper highlights the programmable aspects of SAS results distribution using electronic

More information

USING SAS WITH ORACLE PRODUCTS FOR DATABASE MANAGEMENT AND REPORTING

USING SAS WITH ORACLE PRODUCTS FOR DATABASE MANAGEMENT AND REPORTING USING SAS WITH ORACLE PRODUCTS FOR DATABASE MANAGEMENT AND REPORTING Henry W. Buffum, R. O. W. ScIences, Inc. Darryl J. Keith, U.S. Environmental Protection Agency Abstract: Data for a large environmental

More information

Managing very large EXCEL files using the XLS engine John H. Adams, Boehringer Ingelheim Pharmaceutical, Inc., Ridgefield, CT

Managing very large EXCEL files using the XLS engine John H. Adams, Boehringer Ingelheim Pharmaceutical, Inc., Ridgefield, CT Paper AD01 Managing very large EXCEL files using the XLS engine John H. Adams, Boehringer Ingelheim Pharmaceutical, Inc., Ridgefield, CT ABSTRACT The use of EXCEL spreadsheets is very common in SAS applications,

More information

Division of IT Security Best Practices for Database Management Systems

Division of IT Security Best Practices for Database Management Systems Division of IT Security Best Practices for Database Management Systems 1. Protect Sensitive Data 1.1. Label objects containing or having dedicated access to sensitive data. 1.1.1. All new SCHEMA/DATABASES

More information

Paper 70-27 An Introduction to SAS PROC SQL Timothy J Harrington, Venturi Partners Consulting, Waukegan, Illinois

Paper 70-27 An Introduction to SAS PROC SQL Timothy J Harrington, Venturi Partners Consulting, Waukegan, Illinois Paper 70-27 An Introduction to SAS PROC SQL Timothy J Harrington, Venturi Partners Consulting, Waukegan, Illinois Abstract This paper introduces SAS users with at least a basic understanding of SAS data

More information

Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX

Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX Paper 126-29 Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX ABSTRACT This hands-on workshop shows how to use the SAS Macro Facility

More information

An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc.

An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc. SESUG 2012 Paper CT-02 An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc., Raleigh, NC ABSTRACT Enterprise Guide (EG) provides useful

More information

JD Edwards World. Database Audit Manager Release A9.3 E21957-02

JD Edwards World. Database Audit Manager Release A9.3 E21957-02 JD Edwards World Database Audit Manager Release A9.3 E21957-02 April 2013 JD Edwards World Database Audit Manager, Release A9.3 E21957-02 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

ER/Studio 8.0 New Features Guide

ER/Studio 8.0 New Features Guide ER/Studio 8.0 New Features Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Access Control and Audit Trail Software

Access Control and Audit Trail Software Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Access Control and Audit Trail Software Operation Manual Varian, Inc. 2002 03-914941-00:3 Table of Contents Introduction... 1 Access Control

More information

CHAPTER 1 Overview of SAS/ACCESS Interface to Relational Databases

CHAPTER 1 Overview of SAS/ACCESS Interface to Relational Databases 3 CHAPTER 1 Overview of SAS/ACCESS Interface to Relational Databases About This Document 3 Methods for Accessing Relational Database Data 4 Selecting a SAS/ACCESS Method 4 Methods for Accessing DBMS Tables

More information

Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Dynamic Web Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT The SAS Business Intelligence platform provides a wide variety of reporting interfaces and capabilities

More information

MOVING THE CLINICAL ANALYTICAL ENVIRONMENT INTO THE CLOUD

MOVING THE CLINICAL ANALYTICAL ENVIRONMENT INTO THE CLOUD MOVING THE CLINICAL ANALYTICAL ENVIRONMENT INTO THE CLOUD STIJN ROGIERS, SENIOR INDUSTRY CONSULTANT, LIFE SCIENCES/HEALTH CARE (EMEA/AP) SANDEEP JUNEJA CONSULTING MANAGER (SSOD) AGENDA Move towards cloud

More information

Exporting Client Information

Exporting Client Information Contents About Exporting Client Information Selecting Layouts Creating/Changing Layouts Removing Layouts Exporting Client Information Exporting Client Information About Exporting Client Information Selected

More information

To take advantage of new functionality and product enhancements What s New In Dynamics GP 2013

To take advantage of new functionality and product enhancements What s New In Dynamics GP 2013 Brian Murphy To take advantage of new functionality and product enhancements What s New In Dynamics GP 2013 Supportability Microsoft Mainstream support Ended for Dynamics GP 9.0 on 1/11/2011 Ended for

More information

Technical Paper. Migrating a SAS Deployment to Microsoft Windows x64

Technical Paper. Migrating a SAS Deployment to Microsoft Windows x64 Technical Paper Migrating a SAS Deployment to Microsoft Windows x64 Table of Contents Abstract... 1 Introduction... 1 Why Upgrade to 64-Bit SAS?... 1 Standard Upgrade and Migration Tasks... 2 Special

More information

Supporting a Global SAS Programming Envronment? Real World Applications in an Outsourcing Model

Supporting a Global SAS Programming Envronment? Real World Applications in an Outsourcing Model Supporting a Global SAS Programming Envronment? Real World Applications in an Outsourcing Model Karen Curran and Mark Penniston, Omnicare Clinical Research, King of Prussia, PA ABSTRACT Talented individuals

More information

Applications Development

Applications Development Paper 21-25 Using SAS Software and Visual Basic for Applications to Automate Tasks in Microsoft Word: An Alternative to Dynamic Data Exchange Mark Stetz, Amgen, Inc., Thousand Oaks, CA ABSTRACT Using Dynamic

More information

SUGI 29 Posters. Mazen Abdellatif, M.S., Hines VA CSPCC, Hines IL, 60141, USA

SUGI 29 Posters. Mazen Abdellatif, M.S., Hines VA CSPCC, Hines IL, 60141, USA A SAS Macro for Generating Randomization Lists in Clinical Trials Using Permuted Blocks Randomization Mazen Abdellatif, M.S., Hines VA CSPCC, Hines IL, 60141, USA ABSTRACT We developed a SAS [1] macro

More information

PharmaSUG2011 - Paper AD11

PharmaSUG2011 - Paper AD11 PharmaSUG2011 - Paper AD11 Let the system do the work! Automate your SAS code execution on UNIX and Windows platforms Niraj J. Pandya, Element Technologies Inc., NJ Vinodh Paida, Impressive Systems Inc.,

More information

StARScope: A Web-based SAS Prototype for Clinical Data Visualization

StARScope: A Web-based SAS Prototype for Clinical Data Visualization Paper 42-28 StARScope: A Web-based SAS Prototype for Clinical Data Visualization Fang Dong, Pfizer Global Research and Development, Ann Arbor Laboratories Subra Pilli, Pfizer Global Research and Development,

More information

Virto Pivot View for Microsoft SharePoint Release 4.2.1. User and Installation Guide

Virto Pivot View for Microsoft SharePoint Release 4.2.1. User and Installation Guide Virto Pivot View for Microsoft SharePoint Release 4.2.1 User and Installation Guide 2 Table of Contents SYSTEM/DEVELOPER REQUIREMENTS... 4 OPERATING SYSTEM... 4 SERVER... 4 BROWSER... 4 INSTALLATION AND

More information

CDW DATA QUALITY INITIATIVE

CDW DATA QUALITY INITIATIVE Loading Metadata to the IRS Compliance Data Warehouse (CDW) Website: From Spreadsheet to Database Using SAS Macros and PROC SQL Robin Rappaport, IRS Office of Research, Washington, DC Jeff Butler, IRS

More information

IT Service Level Management 2.1 User s Guide SAS

IT Service Level Management 2.1 User s Guide SAS IT Service Level Management 2.1 User s Guide SAS The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS IT Service Level Management 2.1: User s Guide. Cary, NC:

More information

Guidance for Industry

Guidance for Industry #197 Guidance for Industry Documenting Statistical Analysis Programs and Data Files This version of the guidance replaces the version made available in May 2010. This document has been revised to update

More information

Accessing a Microsoft SQL Server Database from SAS on Microsoft Windows

Accessing a Microsoft SQL Server Database from SAS on Microsoft Windows Accessing a Microsoft SQL Server Database from SAS on Microsoft Windows On Microsoft Windows, you have two options to access a Microsoft SQL Server database from SAS. You can use either SAS/Access Interface

More information

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN Seamless Web Data Entry for SAS Applications D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT For organizations that need to implement a robust data entry solution, options are somewhat limited

More information

A Dose of SAS to Brighten Your Healthcare Blues

A Dose of SAS to Brighten Your Healthcare Blues A Dose of SAS to Brighten Your Healthcare Blues Gabriela Cantu 1, Christopher Klekar 1 1 Center for Clinical Effectiveness, Baylor Scott & White Health, Dallas, Texas ABSTRACT The development and adoption

More information

Developing an On-Demand Web Report Platform Using Stored Processes and SAS Web Application Server

Developing an On-Demand Web Report Platform Using Stored Processes and SAS Web Application Server Paper 10740-2016 Developing an On-Demand Web Report Platform Using Stored Processes and SAS Web Application Server ABSTRACT Romain Miralles, Genomic Health. As SAS programmers, we often develop listings,

More information

William E Benjamin Jr, Owl Computer Consultancy, LLC

William E Benjamin Jr, Owl Computer Consultancy, LLC So, You ve Got Data Enterprise Wide (SAS, ACCESS, EXCEL, MySQL, Oracle, and Others); Well, Let SAS Enterprise Guide Software Point-n-Click Your Way to Using It. William E Benjamin Jr, Owl Computer Consultancy,

More information

ImageNow Report Library Catalog

ImageNow Report Library Catalog ImageNow Report Library Catalog Business Insight Version: 6.6.x Written by: Product Documentation, R&D Date: February 2012 ImageNow and CaptureNow are registered trademarks of Perceptive Software, Inc.

More information

How are tags and messages archived in WinCC flexible? WinCC flexible. FAQ May 2011. Service & Support. Answers for industry.

How are tags and messages archived in WinCC flexible? WinCC flexible. FAQ May 2011. Service & Support. Answers for industry. How are tags and messages archived in WinCC flexible? WinCC flexible FAQ May 2011 Service & Support Answers for industry. Question This entry is from the Service&Support portal of Siemens AG, Sector Industry,

More information