Clinically Significant Data Integration Studio

Size: px
Start display at page:

Download "Clinically Significant Data Integration Studio"

Transcription

1 Paper DM03 Clinically Significant Data Integration Studio Chris Decker, Life Sciences Director, d-wise Technologies Stephen Baker, Business Development Director, d-wise Technologies ABSTRACT SAS Data Integration Studio is a traditional ETL (Extract/Transform/Load) solution for accessing a variety of data sources, transforming those data sources in a structured process, and managing the metadata around that process. Within the clinical programming world using a traditional ETL product can be a challenge; however there are advantages to using structured ETL processes including the management of metadata, generation of code, and the reusability of processes. Over the last few years SAS has built a custom clinical plug-in to Data Integration Studio which supports the implementation of CDSIC SDTM. In addition, the SAS Open Metadata Architecture provides the ability to build additional components that are relevant to the clinical transformation process. This paper will provide an overview of best practice for using SAS Data Integration Studio in a clinical programming environment, advantages and limitations of using Clinical Data Integration, the capabilities of using the open API to extend Data Integration Studio, and an overview of future SAS solutions for clinical data integration. INTRODUCTION SAS Data Integration Studio is a traditional ETL (Extract/Transform/Load) solution for accessing a variety of data sources, transforming those data sources in a structured process, and managing the metadata around that process. One of the challenges of using a traditional ETL product to manage the clinical data transformation process is the need for a certain level of flexibility. The clinical data transformation process is sometimes its own art form, whereas an ETL product requires a very rigid process with unyielding inputs and outputs. These two goals often contradict each other and thus make the use of a traditional ETL product frustrating for clinical programmers. However, there are advantages to using a structured ETL process with the most important being the management of metadata and reusability of processes. Over the last few years SAS has built a clinical plug-in to Data Integration Studio which provides support for CData Integration StudioSC SDTM which includes the SDTM specifications, specific SDTM add-ons, and metadata reporting tools. These tools help facilitate the development of processes for transforming clinical data. In addition, the SAS Open Metadata Architecture provides the ability to build additional components that are relevant to the clinical transformation process. This paper will provide an overview of: Best practices for using Data Integration Studio in a clinical data transformation process Advantages and Limitations of the Clinical Data Integration Plug-In Capabilities to extend Data Integration Studio to be more clinically significant Future capabilities of SAS solutions for clinical data integration DATA INTEGRATION STUDIO CHALLENGES OF A TRADITIONAL ETL PROCESS A traditional ETL process extracts (E) the data from an external source, transforms (T) the data for operational needs, and loads (L) the data into a target table. In general, ETL products use a rigorous process that separates inputs from the transformation code and the target tables. In some industries this very rigid process works well because the 1

2 source structure, and more importantly, the target data are very standard and robust. For example, within the financial industry a dollar is a dollar and therefore applying repeatable processes to this industry makes sense and is fairly straightforward. However, within clinical data, both the underlying medical science and the analytical science are always changing, so defining rigid targets and repeatable processes can be difficult. The famous saying for a clinical programmer is This study is unique. Another challenge revolves around the individual programmer s need to get the work done. They just want to write SAS code and this new tool only makes their work more tedious and slows down their production. What they don t realize is that by supporting a write some SAS code approach to transforming data, they create a process that is fractured, not repeatable, and does not support the management and reuse of metadata which is critical to developing and maintaining standards. DATA INTEGRATION BEST PRACTICES In some cases, Data Integration Studio can be a challenging tool to use based on the processes clinical programmers are familiar with. Below are some typical stumbling blocks in using the tool and the best practices (i.e. work arounds) for working through those challenges. Due to space limitations these are only a sample of best practices, but you can contact the author for a complete set. Build Sequentially Traditionally, Data Integration Studio training teaches a user to start with the target and work backwards. While a clinical programmer might have a general idea of the target, they don t normally program backwards. Since users can run code without final target table, the best practice is to start with a blank process and build code sequentially. This means a user can test the code before they have completed the entire job. The best practice is to build from the source tables, adding and testing each step until the user is ready to add the target. Figure 1 shows an initial join of two tables which can be tested and reviewed. Figure 1. Building Sequentially Building a process sequentially 1) skirts the auto-mapping complexity defined in the next section and 2) allows a user to build from beginning to end rather than dropping nodes into the center which can cause complexity in the process and usually leads to issues in the process. Turn Off Auto-Mapping The concept of automapping within Data Integration Studio automatically maps columns when two data sources are linked by a process node. By default, mappings are added automatically when a source and target column have the same name, data type, and length. This sounds like a great idea on the surface, but in reality leads to undesirable results most of the time and can cause much frustration. For example, envision a job with 40 nodes each having mappings set up and custom expressions. If auto-map is turned on and a change is made to an early node in the process or a change is made to a source table, there is a risk that all of the mappings and custom expressions will be 2

3 overwritten when auto-map propagates the metadata through the nodes losing hours (perhaps days or weeks) of work. To ensure this undesirable consequence of auto-mapping is avoided, be sure to turn auto-map off as early in the design process as possible by right clicking on the node and de-selecting auto-map. It s much easier and avoids the pains of redoing the work if the user controls their own mappings. Limit Process Complexity One of the most common pitfalls of programming either in a traditional SAS code environment or in a Data Integration Studio process is to put too much stuff in a single section of code. The goal of an ETL process is to separate the sequential algorithms into small bits making the process easier to read and more traceable. This might sound more tedious but it makes the process more robust and readable for future users. Place a stock extract node after every source table in every job. This allows the user to remove the source table and avoid destroying the column-level mappings that follow. By introducing an extract node after the source table, the extract node preserves the metadata definition of the tables for the succeeding nodes and gives the flexibility to change source tables without affecting the remainder of the job. Add more complex tasks (SQL, Transform, etc.) as early in the process as possible. If the user builds numerous trivial steps and then adds complicated steps, the user runs a risk that the complicated step requires many changes in the previous trivial steps. The more changes made upstream, the more risk there is of breaking something downstream. By introducing the complicated tasks early in the process, it is easier to test and debug these more involved job nodes. Add SQL CASE statements (e.g. algorithms) and other expressions to transformations only after all required joins have been completed. This will minimize rework if tasks are added and interfere with existing mappings. To avoid this undesirable side effect, complete the mappings in the job prior to adding any expressions to column mappings. This is another example of not trying to do too much in one step. DATA INTEGRATION STUDIO CHALLENGES Besides the difficulty of changing a clinical SAS programmer from the traditional just write SAS code mentality to a ETL type process, Data Integration Studio also has some challenges that make the learning curve somewhat steep and might create headaches for users. This section contains two of more common difficulties find within Data Integration Studio. Scalability Data Integration Studio is based on the concept of a metadata repository. The metadata repository is a collection of all the metadata for a collection of jobs, tables, columns, transformations, and other various entities. Data Integration Studio has the ability to point at different repositories at login time, as well as what is known as a Project Repository. A project repository is a repository that inherits from a Custom or Foundation repository and can be tied to an individual user. Project repositories allow for change management and for the segregation of an individual s work from other individuals. For change management to work, you must create a new project repository for each user/custom combination that requires access. Typically, people use Custom repositories for special access constraints. Given the scenario described above, the implementation can create an explosion of repositories that must be created if a company decides to develop custom repositories to model each clinical study. If the company decides to create a repository for each study and then have multiple users creating Project Repository, these repositories can grow into the hundreds. 3

4 As the number of physical repositories increases, so does the processing time required to deal with them (not to mention the number of touch-points for management of the repositories). In general, a design that limits the number of repositories is a better overall approach when considering scalability. Point and Click Interface As stated already, clinical SAS programmers just want to write code. A point and click interface within an ETL tool can be quite a burden for traditional programmers. In the case of Data Integration Studio this is probably even more so. For example, to modify an extended attribute for a column, which might be needed for an SDTM column, the user has to first open the properties of the data set, navigate to the columns tab, and then open the extended attributes. This is one of many examples within the Data Integration Studio interface where a user can easily get frustrated by the amount of pointing, clicking, tabs, and menus they have to access to change a single event. Figure 2 shows an interface just to change an extended SDTM attribute on a column. CLINICAL DATA INTEGRATION PLUG-IN Figure 2. Interface Complexity In recent years the SAS Life Sciences Consulting organization developed a custom clinical data integration solution which uses the extensibility of Data Integration Studio to build a set of plug-ins focused on standards. This solution has the ability to implement a standard data model such as SDTM 3.1.1, provides tools to manage the model, and provides a level of reporting of the model. SDTM IMPLEMENTATION GUIDE Clinical Data Integration implements the SDTM model including the standard published domains, model classifications, and the relationship and trial design domains. Each domain contains the defined table structure including controlling required fields and keys, the SDTM table level metadata, and the SDTM column level metadata. It also provides the extended metadata required by SDTM for both the domains and the variables, Within the Data 4

5 Integration Studio framework the SDTM model is managed within a central standards repository that can be managed and extended. RELEVANT ADD-ONS Figure 3. SDTM Implementation In addition to the implementation of the SDTM model, other plug-ins were added to support the use of the model. A Study Manager was developed to register repositories as studies which provides specific study metadata, links a specific version of SDTM with a study, and supports the use of the other plug-ins. A Register Domains plug-in lets the user select the domains of interest, automatically register them to the study, and create a library reference. The Custom Domain Designer provides a wizard for creating a custom domain based on the SDTM specific rules within a class (e.g. Findings). The SUPPQUAL Generator provides the ability to create a SUPPQUAL domain from a existing SDTM domain and automatically generates the associated library reference. These are all examples of using the extensibility of Data Integration Studio to provide tools supporting the management of the SDTM model. METADATA REPORTING Another key component of the solution is the ability to provide metadata and validation reports. Metadata tools are provided to report on the standard SDTM metadata. Figure 4 provides an example of this report. 5

6 Figure 4. Metadata Report In addition, tools were built to validate the model and provide analysis to indentify issues and gaps in both the metadata and data. LIMITATIONS While the Clinical Data Integration custom solution provides a first step in support of standards it also has some limitations, most of which are due to the underlying limitations of Data Integration Studio described above. The solution does not easily support the extension of domains beyond the standard variables, as it does not provide a good method for supporting the extended attributes needed by SDTM when creating new variables. Probably the biggest limitation is the actual modification of the SDTM metadata. Due to the challenges of the Data Integration Studio interface described above, modifying the metadata across the broader scope of the study is a very tedious and almost unusable process. In addition, the ability to access the metadata within Data Integration Studio requires knowledge of the underlying metadata server API, an API which has its own steep learning curve. EXTENDING DATA INTEGRATION STUDIO During the implementation of the Clinical Data Integration solution, d-wise used the extensibility of Data Integration Studio to build a number of plug-ins to support the gaps identified by clinical programmers. CDISC EDITOR Problem Data Integration Studio provides support for managing SDTM metadata at the table and column levels. This metadata enables users to automate a number of tasks that might otherwise be tedious to implement by hand, such as the generation of transport files for individual domains and the creation of the column specific attributes within define.xml. While the out-of-the-box features provide the foundation for capturing this metadata, editing this metadata is unwieldy. For a table with numerous columns, the interface forces a user through a tedious workflow of clicking on each column individually to manage metadata. Ideally, users would have a single interface to manage all SDTM related metadata for a table, including table level metadata and column level metadata. The business need was to provide a single interface to manage table and column level metadata, greatly streamlining the user experience by reducing the number of clicks required to view and edit this information. Solution d-wise developed the CDISC Editor plug-in as an extension to Data Integration Studio to meet this need. The editor provides a user with a single interface to manage SDTM metadata at the table and column level and is only applied to tables that have been identified as SDTM domains. This plug-in opens the CDISC Editor at the domain level and displays a dialog with two tabs, one to manage the table metadata (Figure 5) and one to manage the column metadata (Figure 6). 6

7 Figure 5. CDISC Editor Table Information Figure 6. CDISC Editor Column Information Let s examine a use case briefly to understand the value of this plug-in. Assume a user is managing the SDTM AE domain and wants to view all columns that originate in the CRF rather than those that are derived. Without the CDISC Editor plug-in, the user would need to click on each column individually to view and edit the metadata associated with the column. Using the CDISC editor, all of this information is viewable and editable in a single interface. JOB TEMPLATING Problem Data Integration Studio provides a centralized location for managing clinical data processing code. In many cases, an organization will define a data standard (e.g. STDM) for storing clinical data. To transform the source data to this target representation, a developer might create a number of jobs that vastly manipulate the source data to achieve the target data structure. Many of these jobs have a high potential for reuse across the enterprise, such as in cases where vendors send data for multiple studies in a similar format allowing the same transformation jobs to be applied. Further, subcomponents of these transformations such as lookups, coding, and date formatting, likewise are opportunities for code re-use. By building a library of transformations and jobs, developers can gain efficiencies and organizations can gain standardization through re-use of existing code. Unfortunately, Data Integration Studio tightly couples the source and target tables to the job metadata. Especially in cases where auto-map is enabled, making changes to the source and target tables can drastically impact the validity of the job activities in some cases rendering the job useless. The business need was to provide a way to create templates of clinical transformation jobs that would allow for code re-use. The plug-in needed to provide 7

8 management tools allowing the maintenance of template libraries and also a means to visually differentiate a template from a generic job. Solution d-wise developed the Job Templating plug-in as an extension to Data Integration Studio to meet this need. The templating process allowed a user to take a completed job and store it as a template that decoupled it from the source and target tables, preserving only the interfaces to those data structures. This plug-in included the following features: a wizard for creating a template from an existing job and for creating a job from a template a search feature for easily navigating the available templates when creating a job to help users identify the templates that apply to the source and target tables they will use a new folder presented in the custom tab of Data Integration Studio to group the job templates The figure below shows the template features. Note the custom folder showing the unique icon for the job templates and the menu option Create Job from Process Template ". Figure 7. Templating Features The first step of the template creation process involved qualifying the job selected for templating. The job had to specify one target table but supported multiple source tables. The target table had to be populated by a Table Loader node, and each source table required an Extract node to preserve the interface to the source table. If the job met the template qualifications, the tool guides the user through a series of wizard steps and creates a template. 8

9 Figure 8. Example Template Data Integration Studio includes a Java plug-in API for custom integrations which was used to build the Templating plug-in. This API is extremely powerful and exposes nearly all of the underlying features of the core product, but documentation is sorely lacking. While even a novice programmer could probably build a basic plug-in using the API, an exceptional command of Java programming, swing development, wizard design patterns, the SAS metadata model, and ability to wield a decompiler should all be considered pre-requisites for developing advanced custom plug-ins. SUPPQUAL SPLITTER Problem During the implementation of the Clinical Data Integration solution, the customer wanted to implement an SDTM+ standard. This includes the standard SDTM domains and variables as well as additional variables required for their operational needs. During this process they identified the need to define extended column metadata to allow the SDTM+ domains to be split into standard SDTM domains and SUPPQUAL domains Solution The Transformation Generator within Data Integration Studio, in combination with the metadata server API, was used to create a custom transform. The first step was to add an extended attribute to each of the SDTM variables. This attribute would identify whether the column should be included in the supplemental qualifier for the specific domain. The next step was to create a custom transform that used the API to read the metadata for the domain, pull out the variables flagged with this attribute, and transpose the data to match the requirements of the SUPPQUAL domain. The SUPPQUAL Splitter transform shown in Figure 9 only needs the name of the attribute, the value of the attribute, and the keys for the SDTM+ domain. The node is then executed and creates both the pure SDTM domain and the associated SUPPQUAL. 9

10 Figure 9. SUPPQUAL Transform Options This custom transformation used a combination of SAS code, calls to the metadata API and the standard structure of a SUPPQUAL domain to generate the necessary code to read the metadata, split the tables, and load the appropriate SDTM standard domains. The xml generated above was used as an xml map and the SAS xml libname engine to extract the necessary metadata. This solution provided the customer an automated process for maintaining their SDTM+ domains but also allowed them the ability to generate both the pure submission ready SDTM domains and the associated SUPPQUAL domains. FUTURE OF CLINICAL DATA INTEGRATION AT SAS After the initial interest in the custom Clinical Integration Solution described above, SAS built a development team to focus on delivering supported solutions for clinical data integration. This new solution is based on the two components described below. CLINICAL TOOLKIT After years of attempting to support clinical data standards, SAS has finally delivered what appears to be a robust framework within Base SAS to support the definition of standards. This toolkit includes the management of standards in a framework of SAS macros and a SAS metadata representation all based on Base SAS. The initial version of the Toolkit implements the standard JANUS and websdm validation checks and provides the ability to generate the define.xml based on the SAS representation of the metadata. The framework has been built to support the implementation of multiple standards by separating the flow of information from the metadata. The metadata for a specific version of a standard and the associated validation checks can be registered and implemented for a specific study. Figure 10 shows the SAS representation of the metadata for a study. The table information is stored within a single data source and contains all the SDTM table metadata. The column information is stored in a similar fashion in a separate data set and contains all the SDTM column metadata. 10

11 Figure 10. Study Metadata By providing the Toolkit with a set of tools that are familiar to SAS programmers (e.g. macros and SAS data sets), SAS has finally delivered a viable solution for managing clinical standards. More information about the Clinical Toolkit can be found by accessing the paper by Villiers (SAS Global Forum, 2009) referenced below. CLINICAL DATA INTEGRATION STUDIO After some initial success with the Clinical Data Integration solution, SAS is building on the lessons learned from the development and implementation of this solution to build a more robust formalized product. In addition, the significant improvements in Data Integration Studio provide a much more dynamic tool. Data Integration Studio has a number of significant improvements that are relevant to the clinical programming process. Interactive Processing Unlike the previous version of Data Integration Studio where a user had to run the entire process to debug one piece of code, within Data Integration Studio 4.2, the user can select sections of the process and debug those isolated bits. The user can run to a node, from a node forward, and actually step through the nodes similar to a more traditional coding language such as Java. These added capabilities make debugging the code much easier and significantly improves efficiency. Improved Debugging In previous versions of Data Integration Studio, one of most painful user interactions was debugging the code, especially in large and complex processes. The wonderful world of CTRL-F to search for error messages was very painful. In Data Integration Studio 4.2 those pains are gone. The new version has built an integrated debugger which provides a debugging panel which lists the errors and warnings in a single location. This panel is dynamic allowing the user to jump directly to the location of the error or warning and greatly improves the debugging process. 11

12 In addition, visual cues tell exactly which node has errors or warnings and allows the user to view the subset of logs specific to those nodes. Clinical Plug-Ins In addition to the underlying improvements in Data Integration Studio, the SAS clinical development team has added a number of clinical plug-ins similar to the initial version of the Clinical Data Integration solution to optimize the capabilities of the product for clinical data transformations. These capabilities are described in the paper by Kilhullen (SAS Global Forum, 2009) referenced below By building this solution on SAS 9.2, the Clinical Toolkit, and the much improved Data Integration Studio 4.2, SAS is building a solution that will be viable and for clinical standards management and transformation.. SUMMARY The concept of a graphical ETL process is a difficult change for most traditional clinical programmers. At the end of the day the successful implementation of an ETL solution might not make an individual programmer s job easier or more efficient. However, in the long run, the ability to manage the metadata across an organization and provide an easy to understand set of reusable processes can only make a company more efficient. It can be debated as to whether the current Data Integration Studio solution is capable of providing this benefit. However, with the improvements in usability with SAS 9.2 and Data Integration Studio 4.2 and a dedicated SAS team building clinical solutions for managing standards, the capabilities within the SAS solutions will only provide more benefit to the clinical transformation process. REFERENCES Peter Villiers, SAS Institute, Inc. Supporting CDISC Standards in Base SAS Using the SAS Clinical Standards SAS Global Forum, March Michael Kilhullen, SAS Institute Inc. Using SAS Clinical Data Integration Server to Implement and Manage CDISC Standards. SAS Global Forum, March CONTACT INFORMATION Chris Decker, Life Sciences Director d-wise Technologies Work Phone: (919) cdecker@d-wise.com Web: 12

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

Practical application of SAS Clinical Data Integration Server for conversion to SDTM data

Practical application of SAS Clinical Data Integration Server for conversion to SDTM data Paper DM03 Practical application of SAS Clinical Data Integration Server for conversion to SDTM data Peter Van Reusel, Business & Decision Life Sciences, Brussels, Belgium Mark Lambrecht, SAS, Tervuren,

More information

I Didn t Know SAS Enterprise Guide Could Do That!

I Didn t Know SAS Enterprise Guide Could Do That! Paper SAS016-2014 I Didn t Know SAS Enterprise Guide Could Do That! Mark Allemang, SAS Institute Inc., Cary, NC ABSTRACT This presentation is for users who are familiar with SAS Enterprise Guide but might

More information

Managing Custom Data Standards in SAS Clinical Data Integration

Managing Custom Data Standards in SAS Clinical Data Integration PharmaSUG 2015 - Paper DS19-SAS Managing Custom Data Standards in SAS Clinical Data Integration ABSTRACT Melissa R. Martinez, SAS Institute, Inc., Round Rock, Texas, United States SAS Clinical Data Integration

More information

Enterprise Application Development in SharePoint 2010

Enterprise Application Development in SharePoint 2010 Artifacts, Components and Resources that Comprise the Employee Absence Tracking Application 11 Enterprise Application Development in SharePoint 2010 Development Note below, a version of this Employee Absence

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

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Empowering the Masses with Analytics

Empowering the Masses with Analytics Empowering the Masses with Analytics THE GAP FOR BUSINESS USERS For a discussion of bridging the gap from the perspective of a business user, read Three Ways to Use Data Science. Ask the average business

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

USE CDISC SDTM AS A DATA MIDDLE-TIER TO STREAMLINE YOUR SAS INFRASTRUCTURE

USE CDISC SDTM AS A DATA MIDDLE-TIER TO STREAMLINE YOUR SAS INFRASTRUCTURE USE CDISC SDTM AS A DATA MIDDLE-TIER TO STREAMLINE YOUR SAS INFRASTRUCTURE Kalyani Chilukuri, Clinovo, Sunnyvale CA WUSS 2011 Annual Conference October 2011 TABLE OF CONTENTS 1. ABSTRACT... 3 2. INTRODUCTION...

More information

PharmaSUG 2015 Paper SS10-SAS

PharmaSUG 2015 Paper SS10-SAS ABSTRACT PharmaSUG 2015 Paper SS10-SAS Using SAS Clinical Data Integration to Roundtrip a Complete Study Study Metadata (Define-XML) and Study Data (Dataset-XML) Ken Ellis, SAS Institute Inc., Cary, NC,

More information

Terms and Definitions for CMS Administrators, Architects, and Developers

Terms and Definitions for CMS Administrators, Architects, and Developers Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page

More information

Microsoft Office Project Standard 2007 Project Professional 2007. April 2006. February 2006

Microsoft Office Project Standard 2007 Project Professional 2007. April 2006. February 2006 Microsoft Office Project Standard 2007 Project Professional 2007 April 2006 February 2006 February 2006 Table of Contents Overview of Microsoft Office Project Standard 2007 and Office Project Professional

More information

Subversion Integration for Visual Studio

Subversion Integration for Visual Studio Subversion Integration for Visual Studio VisualSVN Team VisualSVN: Subversion Integration for Visual Studio VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft

More information

SDTM, ADaM and define.xml with OpenCDISC Matt Becker, PharmaNet/i3, Cary, NC

SDTM, ADaM and define.xml with OpenCDISC Matt Becker, PharmaNet/i3, Cary, NC PharmaSUG 2012 - Paper HW07 SDTM, ADaM and define.xml with OpenCDISC Matt Becker, PharmaNet/i3, Cary, NC ABSTRACT Standards are an ongoing focus of the health care and life science industry. Common terms

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager

Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager Rational Reporting Module 3: IBM Rational Insight and IBM Cognos Data Manager 1 Copyright IBM Corporation 2012 What s next? Module 1: RRDI and IBM Rational Insight Introduction Module 2: IBM Rational Insight

More information

Challenges of What, Why, and How of Clinical Metadata Beginner s Guide to Metadata

Challenges of What, Why, and How of Clinical Metadata Beginner s Guide to Metadata Challenges of What, Why, and How of Clinical Metadata Beginner s Guide to Metadata d-wise Technologies Chris Decker Life Sciences Director Overview What is metadata? Why do we need metadata? How do we

More information

SAS IT Resource Management 3.2

SAS IT Resource Management 3.2 SAS IT Resource Management 3.2 Reporting Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. SAS IT Resource Management 3.2:

More information

Data processing goes big

Data processing goes big Test report: Integration Big Data Edition Data processing goes big Dr. Götz Güttich Integration is a powerful set of tools to access, transform, move and synchronize data. With more than 450 connectors,

More information

Stored Documents and the FileCabinet

Stored Documents and the FileCabinet Stored Documents and the FileCabinet Introduction The stored document features have been greatly enhanced to allow easier storage and retrieval of a clinic s electronic documents. Individual or multiple

More information

Meta-programming in SAS Clinical Data Integration

Meta-programming in SAS Clinical Data Integration Meta-programming in SAS Clinical Data Integration : a programmer s perspective Mark Lambrecht, PhD Phuse Single Day Event Brussels, February 23 rd 2010. Contents SAS Clinical Data Integration : an introduction

More information

SDTM-ETL TM. The user-friendly ODM SDTM Mapping software package. Transforming operational clinical data into SDTM datasets is not an easy process.

SDTM-ETL TM. The user-friendly ODM SDTM Mapping software package. Transforming operational clinical data into SDTM datasets is not an easy process. SDTM-ETL TM The user-friendly ODM SDTM Mapping software package Transforming operational clinical data into SDTM datasets is not an easy process. Therefore, XML4Pharma has developed a visual, easy-to-use

More information

Managing Third Party Databases and Building Your Data Warehouse

Managing Third Party Databases and Building Your Data Warehouse Managing Third Party Databases and Building Your Data Warehouse By Gary Smith Software Consultant Embarcadero Technologies Tech Note INTRODUCTION It s a recurring theme. Companies are continually faced

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

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

Choosing a Development Tool

Choosing a Development Tool Microsoft Dynamics GP 2013 R2 Choosing a Development Tool White Paper This paper provides guidance when choosing which development tool to use to create an integration for Microsoft Dynamics GP. Date:

More information

Important Database Concepts

Important Database Concepts Important Database Concepts In This Chapter Using a database to get past Excel limitations Getting familiar with database terminology Understanding relational databases How databases are designed 1 Although

More information

SAS/Data Integration Studio Creating and Using A Generated Transformation Jeff Dyson, Financial Risk Group, Cary, NC

SAS/Data Integration Studio Creating and Using A Generated Transformation Jeff Dyson, Financial Risk Group, Cary, NC Paper BB-05 SAS/Data Integration Studio Creating and Using A Generated Transformation Jeff Dyson, Financial Risk Group, Cary, NC ABSTRACT SAS/Data Integration Studio (DI Studio) transformations are packaged

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

IF The customer should receive priority service THEN Call within 4 hours PCAI 16.4

IF The customer should receive priority service THEN Call within 4 hours PCAI 16.4 Back to Basics Backward Chaining: Expert System Fundamentals By Dustin Huntington Introduction Backward chaining is an incredibly powerful yet widely misunderstood concept, yet it is key to building many

More information

Creating and Using Master Documents

Creating and Using Master Documents Creating and Using Master Documents Title: Creating and Using Master Documents Version: 0.3 First edition: 09/04 Contents Overview...2 Acknowledgments...2 Modifications and updates... 2 Why use a master

More information

Define ODBC Database Library using Management Console

Define ODBC Database Library using Management Console Define ODBC Database Library using Management Console Introduction: Open database connectivity (ODBC) standards provide a common interface to a variety of databases, including AS/400, dbase, Microsoft

More information

Migrating Lotus Notes Applications to Google Apps

Migrating Lotus Notes Applications to Google Apps Migrating Lotus Notes Applications to Google Apps Introduction.................................................... 3 Assessment..................................................... 3 Usage.........................................................

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

COURSE SYLLABUS COURSE TITLE:

COURSE SYLLABUS COURSE TITLE: 1 COURSE SYLLABUS COURSE TITLE: FORMAT: CERTIFICATION EXAMS: 55043AC Microsoft End to End Business Intelligence Boot Camp Instructor-led None This course syllabus should be used to determine whether the

More information

Bitrix Site Manager 4.1. User Guide

Bitrix Site Manager 4.1. User Guide Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing

More information

Installing OneStop Reporting Products

Installing OneStop Reporting Products Installing OneStop Reporting Products Contents 1 Introduction 2 Product Overview 3 System Requirements 4 Deployment 5 Installation 6 Appendix 2010 OneStop Reporting http://www.onestopreporting.com support@onestopreporting.com

More information

CATIA V5 Surface Design

CATIA V5 Surface Design CATIA V5 Training Foils CATIA V5 Surface Design Version 5 Release 19 August 2008 EDU_CAT_EN_V5S_FI_V5R19 1 Lesson 1: Introduction to Generative Shape Design About this Course Introduction CATIA is a robust

More information

Unleashing Hidden Powers of Inventor with the API Part 1. Getting Started with Inventor VBA Hello Inventor!

Unleashing Hidden Powers of Inventor with the API Part 1. Getting Started with Inventor VBA Hello Inventor! Unleashing Hidden Powers of Inventor with the API Part 1. Getting Started with Inventor VBA Hello Inventor! Brian Ekins Autodesk, Inc. This article provides an introduction to Inventor's VBA programming

More information

Auditing UML Models. This booklet explains the Auditing feature of Enterprise Architect. Copyright 1998-2010 Sparx Systems Pty Ltd

Auditing UML Models. This booklet explains the Auditing feature of Enterprise Architect. Copyright 1998-2010 Sparx Systems Pty Ltd Auditing UML Models Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains the Auditing feature of

More information

Oracle Data Integrator for Big Data. Alex Kotopoulis Senior Principal Product Manager

Oracle Data Integrator for Big Data. Alex Kotopoulis Senior Principal Product Manager Oracle Data Integrator for Big Data Alex Kotopoulis Senior Principal Product Manager Hands on Lab - Oracle Data Integrator for Big Data Abstract: This lab will highlight to Developers, DBAs and Architects

More information

Creating a Web Service using IBM Rational HATS. For IBM System i (5250) Creating a Web Service using HATS 1

Creating a Web Service using IBM Rational HATS. For IBM System i (5250) Creating a Web Service using HATS 1 Creating a Web Service using IBM Rational HATS For IBM System i (5250) Creating a Web Service using HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web service that

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

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

Automated Data Ingestion. Bernhard Disselhoff Enterprise Sales Engineer

Automated Data Ingestion. Bernhard Disselhoff Enterprise Sales Engineer Automated Data Ingestion Bernhard Disselhoff Enterprise Sales Engineer Agenda Pentaho Overview Templated dynamic ETL workflows Pentaho Data Integration (PDI) Use Cases Pentaho Overview Overview What we

More information

Using SAS Data Integration Studio to Convert Clinical Trials Data to the CDISC SDTM Standard Barry R. Cohen, Octagon Research Solutions, Wayne, PA

Using SAS Data Integration Studio to Convert Clinical Trials Data to the CDISC SDTM Standard Barry R. Cohen, Octagon Research Solutions, Wayne, PA Using SAS Data Integration Studio to Convert Clinical Trials Data to the CDISC SDTM Standard Barry R. Cohen, Octagon Research Solutions, Wayne, PA ABSTRACT A new industry standard for clinical trials data,

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Keep it Simple... 7 Transformation-based Development (2013 and Beyond)...7 Less Customization and More Innovation...8 Time to Market...

Keep it Simple... 7 Transformation-based Development (2013 and Beyond)...7 Less Customization and More Innovation...8 Time to Market... 1 CONtENTS Advances in Technology have Profoundly Changed Publishing...3 Document Management: As It Used to be Done (prior to 2005)...4 The Advent of XML and Native XML Databases (2005 2012)...5 Putting

More information

Course: SAS BI(business intelligence) and DI(Data integration)training - Training Duration: 30 + Days. Take Away:

Course: SAS BI(business intelligence) and DI(Data integration)training - Training Duration: 30 + Days. Take Away: Course: SAS BI(business intelligence) and DI(Data integration)training - Training Duration: 30 + Days Take Away: Class notes and Books, Data warehousing concept Assignments for practice Interview questions,

More information

Xcode Project Management Guide. (Legacy)

Xcode Project Management Guide. (Legacy) Xcode Project Management Guide (Legacy) Contents Introduction 10 Organization of This Document 10 See Also 11 Part I: Project Organization 12 Overview of an Xcode Project 13 Components of an Xcode Project

More information

No-Code SharePoint 2013 Workflows with SharePoint Designer 2013 and Visio 55048A; 3 Days, Instructor-led

No-Code SharePoint 2013 Workflows with SharePoint Designer 2013 and Visio 55048A; 3 Days, Instructor-led Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc No-Code SharePoint 2013 Workflows with SharePoint Designer 2013 and Visio

More information

Scheduling in SAS 9.3

Scheduling in SAS 9.3 Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3

More information

8 Creating a Workflow

8 Creating a Workflow Whether you are building a new workflow from scratch or using an SAP supplied workflow, it is important that you understand the Workflow Builder tool. This chapter gets you started by enabling you to create

More information

A standards-based approach to application integration

A standards-based approach to application integration A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist Macnair@us.ibm.com Copyright IBM Corporation 2005. All rights

More information

AliOffice 2.0 Installation Guide

AliOffice 2.0 Installation Guide January 25, 2012 AliOffice 2.0 Installation Guide Overview This document contains instructions for installing AliOffice and readying the application for the completion and submission of compliance evaluations.

More information

CDISC SDTM & Standard Reporting. One System

CDISC SDTM & Standard Reporting. One System CDISC SDTM & Standard Reporting One System 1 Authors/Contributors Merck & Co., Inc. Ram Radhakrishnan, Manager, Statistical Information Systems Thomas W. Dobbins, Ph.D., Executive Director, Biostatistics

More information

Johannes Sametinger. C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria

Johannes Sametinger. C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria OBJECT-ORIENTED DOCUMENTATION C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria Abstract Object-oriented programming improves the reusability of software

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

What's New In DITA CMS 4.0

What's New In DITA CMS 4.0 What's New In DITA CMS 4.0 WWW.IXIASOFT.COM / DITACMS v. 4.0 / Copyright 2014 IXIASOFT Technologies. All rights reserved. Last revised: December 11, 2014 Table of contents 3 Table of contents Chapter

More information

Special Edition for FastTrack Software

Special Edition for FastTrack Software 08/14 The magazine for professional system and networkadministration Special Edition for FastTrack Software Tested: FastTrack Automation Studio www.it-administrator.com TESTS I FastTrack Automation Studio

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Performance Testing Web 2.0

Performance Testing Web 2.0 Performance Testing Web 2.0 David Chadwick Rational Testing Evangelist dchadwick@us.ibm.com Dawn Peters Systems Engineer, IBM Rational petersda@us.ibm.com 2009 IBM Corporation WEB 2.0 What is it? 2 Web

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting

More information

Microsoft Dynamics NAV

Microsoft Dynamics NAV Microsoft Dynamics NAV Maximizing value through business insight Business Intelligence White Paper November 2011 The information contained in this document represents the current view of Microsoft Corporation

More information

1. Create a study in the UM Velos training database. Use your Unique Name as study number.

1. Create a study in the UM Velos training database. Use your Unique Name as study number. Reference guide for New Users Hands-on Training for Velos Study-Setup Procedures Name: Unique Name: Phone: Prerequisite: Velos 100: Introduction to Velos eresearch for UM New Users. Learning Objective:

More information

TU04. Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI

TU04. Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI TU04 Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI ABSTRACT Implementing a Business Intelligence strategy can be a daunting and challenging task.

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

Filtered Views for Microsoft Dynamics CRM

Filtered Views for Microsoft Dynamics CRM Filtered Views for Microsoft Dynamics CRM Version 4.2.13, March 5, 2010 Copyright 2009-2010 Stunnware GmbH - 1 of 32 - Contents Overview... 3 How it works... 4 Setup... 5 Contents of the download package...

More information

Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and

Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and later User Guide Rev: 2013-02-01 Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and later User Guide A practical guide to creating and managing web

More information

Working With Templates in Web Publisher. Contributed by Paul O Mahony Developer Program

Working With Templates in Web Publisher. Contributed by Paul O Mahony Developer Program Working With Templates in Web Publisher Contributed by Paul O Mahony Developer Program Overview... 3 Template Options... 3 Web Publisher Editor Templates... 3 Advanced Content Editor... 3 ewebeditpro +

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

U.S. FDA Title 21 CFR Part 11 Compliance Assessment of SAP Records Management

U.S. FDA Title 21 CFR Part 11 Compliance Assessment of SAP Records Management U.S. FDA Title 21 CFR Part 11 Compliance Assessment of SAP Records Management Disclaimer These materials are subject to change without notice. SAP AG s compliance analysis with respect to SAP software

More information

Microsoft SQL Server versus IBM DB2 Comparison Document (ver 1) A detailed Technical Comparison between Microsoft SQL Server and IBM DB2

Microsoft SQL Server versus IBM DB2 Comparison Document (ver 1) A detailed Technical Comparison between Microsoft SQL Server and IBM DB2 Microsoft SQL Server versus IBM DB2 Comparison Document (ver 1) A detailed Technical Comparison between Microsoft SQL Server and IBM DB2 Technical Overview about both the product offerings and their features.

More information

PharmaSUG2010 - Paper CD13

PharmaSUG2010 - Paper CD13 PharmaSUG2010 - Paper CD13 In-Depth Review of Validation Tools to Check Compliance of CDISC SDTM-Ready Clinical Datasets Bhavin Busa, Cubist Pharmaceuticals, Inc., Lexington, MA Kim Lindfield, Cubist Pharmaceuticals,

More information

The MDS Desktop User Interface: Build or Buy?

The MDS Desktop User Interface: Build or Buy? Profisee Group, Inc. The MDS Desktop User Interface: Build or Buy? Finding the best route to MDS value and productivity Microsoft Master Data Services (MDS) is a powerful master data management platform,

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

SIEMENS. Teamcenter 11.2. Change Manager PLM00140 11.2

SIEMENS. Teamcenter 11.2. Change Manager PLM00140 11.2 SIEMENS Teamcenter 11.2 Change Manager PLM00140 11.2 Contents What is Change Manager?.............................................. 1-1 Related topics........................................................

More information

Is ETL Becoming Obsolete?

Is ETL Becoming Obsolete? Is ETL Becoming Obsolete? Why a Business-Rules-Driven E-LT Architecture is Better Sunopsis. All rights reserved. The information contained in this document does not constitute a contractual agreement with

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

National Frozen Foods Case Study

National Frozen Foods Case Study National Frozen Foods Case Study Leading global frozen food company uses Altova MapForce to bring their EDI implementation in-house, reducing costs and turn-around time, while increasing overall efficiency

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

Scheduling in SAS 9.4 Second Edition

Scheduling in SAS 9.4 Second Edition Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

Microsoft End to End Business Intelligence Boot Camp

Microsoft End to End Business Intelligence Boot Camp Microsoft End to End Business Intelligence Boot Camp Längd: 5 Days Kurskod: M55045 Sammanfattning: This five-day instructor-led course is a complete high-level tour of the Microsoft Business Intelligence

More information

Dynamic Decision-Making Web Services Using SAS Stored Processes and SAS Business Rules Manager

Dynamic Decision-Making Web Services Using SAS Stored Processes and SAS Business Rules Manager Paper SAS1787-2015 Dynamic Decision-Making Web Services Using SAS Stored Processes and SAS Business Rules Manager Chris Upton and Lori Small, SAS Institute Inc. ABSTRACT With the latest release of SAS

More information

DocumentsCorePack for MS CRM 2011 Implementation Guide

DocumentsCorePack for MS CRM 2011 Implementation Guide DocumentsCorePack for MS CRM 2011 Implementation Guide Version 5.0 Implementation Guide (How to install/uninstall) The content of this document is subject to change without notice. Microsoft and Microsoft

More information

KEYWORDS InteractX, database, SQL Server, SQL Server Express, backup, maintenance.

KEYWORDS InteractX, database, SQL Server, SQL Server Express, backup, maintenance. Document Number: File Name: Date: 10/16/2008 Product: InteractX, SQL Server, SQL Server Application Note Associated Project: Related Documents: BackupScript.sql KEYWORDS InteractX, database, SQL Server,

More information

The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform

The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform The Recipe for Sarbanes-Oxley Compliance using Microsoft s SharePoint 2010 platform Technical Discussion David Churchill CEO DraftPoint Inc. The information contained in this document represents the current

More information

Managing Documents with SharePoint 2010 and Office 2010

Managing Documents with SharePoint 2010 and Office 2010 DMF Adds Value in 10 Ways With its wide-ranging improvements in scalability, functionality and managability, Microsoft SharePoint 2010 provides a much stronger platform for document management solutions.

More information

SAS Customer Intelligence 360: Creating a Consistent Customer Experience in an Omni-channel Environment

SAS Customer Intelligence 360: Creating a Consistent Customer Experience in an Omni-channel Environment Paper SAS 6435-2016 SAS Customer Intelligence 360: Creating a Consistent Customer Experience in an Omni-channel Environment Mark Brown and Brian Chick, SAS Institute Inc., Cary, NC ABSTRACT SAS Customer

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

Lecture 2 Mathcad Basics

Lecture 2 Mathcad Basics Operators Lecture 2 Mathcad Basics + Addition, - Subtraction, * Multiplication, / Division, ^ Power ( ) Specify evaluation order Order of Operations ( ) ^ highest level, first priority * / next priority

More information

Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program

Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program Training/Internship Brochure Advanced Clinical SAS Programming Full Time 6 months Program Domain Clinical Data Sciences Private Limited 8-2-611/1/2, Road No 11, Banjara Hills, Hyderabad Andhra Pradesh

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

2 SQL in iseries Navigator

2 SQL in iseries Navigator 2 SQL in iseries Navigator In V4R4, IBM added an SQL scripting tool to the standard features included within iseries Navigator and has continued enhancing it in subsequent releases. Because standard features

More information