Authors: Haidong Tang (Don) Xiao Ji (Samuel) Presenter: Haidong Tang (Don) June 2002

Size: px
Start display at page:

Download "Authors: Haidong Tang (Don) Xiao Ji (Samuel) Presenter: Haidong Tang (Don) June 2002"

Transcription

1 Tracking your data warehouse using SAS Authors: Haidong Tang (Don) Xiao Ji (Samuel) Presenter: Haidong Tang (Don) June 2002

2 Agenda! Introduction of Shanghai Baosight Software Co., Ltd.! Why track your data warehouse! What to track! How to track using SAS! A tracking system using SAS! Conclusions

3 Introduction of Shanghai Baosight Software Co., Ltd.

4 Facts of the company Facts Date of establishment: Registered capital: Staff member: Character: Location: Business: April 2000 RMB 260 million 835 (39 PhDs, 136 masters) a listed company in Shanghai Zhangjiang Hi-tech Park, Shanghai Sales income over RMB320 million in 2001

5 Evolution of the company Shanghai Baosight Software Co., Ltd. (2001) Shanghai Baosight Information Technology Co. (2000) Shanghai Baosteel Software Co., Ltd. (1996) Shanghai Baoni Computer Integration Technology Co., Ltd. (1994) Shanghai Baosteel Computer System Engineering Co., Ltd.(1997) Automation Department, Shanghai Baoshan Iron & Steel Co., Ltd. (1979)

6 Relationship with Shanghai Baosteel Shanghai Baosteel Group Corporation Shanghai Baoshan iron & steel Co., Ltd. (Shanghai Baosteel) Shanghai Baosight Software Co., Ltd. (Shanghai Baosight) Other 30 companies

7 Qualified certificates Holdings of qualified certificates ISO 9001 Quality Assurance System Computer Integrator (the only company in Shanghai) High-tech enterprise Science and technology operation Information services Software import and export allowance Certificates applying CMM Level 3 (In progress) Assessing consultants from PIA (

8 Partnership, alliance & cooperation

9 Data Strategies Dept. Data Strategies Department business intelligence technology data warehouse consulting service data mining arithmetic Expertise data warehouse design and implementation data warehouse modeling technique

10 Data Strategies Dept. Successful cases in Shanghai Baosteel Technical quality data mart Production management data mart Production control information management system Contract placing and delivery cycle analysis system Bar & rod products quality statistics and analysis system Production ability and resources analytical system Enterprise comprehensive statistics system Quasi-on-line analysis system for balanced operation of weekly production plan Quality inspection statistics analysis system for hot and cold rolling IPC system for CAL unit of 1550 cold rolling mill

11 Why track your data warehouse

12 Data warehouse has been deployed, but how can I know whether ETL programs ran properly? how the disk space is expanding? the application servers running steadily? any error messages in Web server log? invalid user intruded? other concerned system-wide statistics available? can all information be organized together? can I get information by ? or can I get information easily from a Web?...?

13 Typical ways to solve the problems by scanning error messages in ETL log files carefully every day typing system command to check disk space, server status,... introducing Web logs analytical tools checking system information by system tools etc.

14 What we really need is A data warehouse tracking system to organize all information together, and integrate with and Web server, is an important part of the data warehouse system

15 Responsibilities of a data warehouse tracking system finding out whether ETL programs ran properly showing ETL statistics, such as speed, time consumed, etc telling status of application servers tracking DW disk volume expanding checking status of operational systems auditing user access and authentication providing integrated tracking reports by extracting others concerned statistics

16 What to track

17 Should at first decide the tracking points, such as: " data storage " ETL log files " server status " server logs " user access " many others

18 Deciding tracking points Data warehouse system Web Server Data Source (DB2,Oracle) ETL Operational Data Store Subject Data DW reports Mail Server IntrNet Server Share Server Telnet Ftp Clients Source system status ETL logs ETL statistics Data storage Subject logs Report logs Server status Server logs User access

19 What we really need Tracking reports Data Warehouse Tracking System Source System status ETL logs ETL statistics Data storage Report logs Server Status Server logs User access

20 How to track using SAS

21 Read and analyze the log files Execute system commands Present brief tracking report by Present tracking report by Web server Schedule the tracking program

22 Read and analyze the log files Execute system commands Present brief tracking report by Present tracking report by Web server Schedule the tracking program

23 Read and analyze log files A variety of log files in data warehouse system, ETL log files subject or reports log files server log files some others

24 Read and analyze log files Two types of log files " SAS log files such as SAS batch ETL programs, SAS batch reports programs " non-sas log files, such as Web log, other server logs

25 Read and analyze log files Example, read a SAS log file filename logs "/home2/a.log"; Pay more attention to data tmp(keep=error);! because of errors retain error 0;! was stopped infile logs lrecl=200 pad end=end; input s $ 200.; if index(s,'because of errors')>0 then error=error+1; if index(s,'was stopped')>0 then error=error+1; if end then output; run;

26 Read and analyze the log files Execute system commands Present brief tracking report by Present tracking report by Web server Schedule the tracking program

27 Execute system commands Approaches to execute system commands, %execute system x filename... pipe others

28 Execute system commands Ways to execute commands depend on OS purpose Example, to list a directory in Unix, x ls lart ; in Windows, options nosync noxwait; x dir>dir.txt ;

29 Execute system commands Get feedbacks from execution for further processing filename... pipe...

30 Execute system commands Example, checking disk volume filename msg pipe df k ; data diskvol; infile msg lrecl=200 pad end=end; input s $ 200.; if index(s,'/dev/sas_prod_lv')>0 or index(s,'/dev/home2lv') then do; filesystem=scan(s,1,''); volume=scan(s,2,''); free=scan(s,3,''); used=scan(s,4,''); output; end; keep filesystem volume free used; run;

31 Read and analyze the log files Execute system commands Present brief tracking report by Present tracking report by Web server Schedule the tracking program

32 Present brief tracking report by Advantages of delivering an tracking report flexible reliable easy to keep the reports personally can be deliver to pager or mobile if necessary

33 Present brief tracking report by The SAS System supported interfaces: " MAPI (such as Microsoft Exchange) " Vendor Independent Mail (VIM--such as Lotus, cc:mail) " SMTP

34 Present brief tracking report by Two approaches to send SMTP using SAS, " filename... socket complicated but direct and efficient " filename... easy but should configure system options first

35 Present brief tracking report by filename... socket example, send a text file filename outlog /home2/baodw/dwtracker.dat filename smtp socket ' :25'; filename log '/home2/baodw/ .log'; data _null_; infile smtp; input; file log; put 'INIT>' _infile_; file smtp; put 'HELO noic.bstl'; input; file log; put 'HELO>' _infile_; file smtp; put 'MAIL FROM: don<don@noic.bstl>'; input; file log; put 'FROM>' _infile_; file smtp; put 'RCPT TO: <don@baosteel.net>'; input; file log; put 'RCPT>' _infile_; file smtp; put 'DATA'; input; file log; put 'DATA>' _infile_; d='(' put(date(),date9.) ')'; file smtp; put 'SUBJECT: Data Warehouse Tracking Report ' d; put; do until(end); infile outlog end=end; input; put _infile_; end; put '.'; input; put 'QUIT'; input; run;

36 Present brief tracking report by filename... example, send a data set filename smtp 'don@baosteel.net' subject="tracking report"; data _null_; Should configure first file smtp;! HOST set dwtracker;! PORT put error; run;

37 Present brief tracking report by The result

38 Read and analyze the log files Execute system commands Present brief tracking report by Present tracking report by Web server Schedule the tracking program

39 Present tracking report by Web server Advantages of presenting tracking report by Web server easy to access easy to keep all reports centrally only one copy is necessary easy to introduce graph and many other Web features

40 Present tracking report by Web server Example, generate html report and backup log files %let yyyymmdd=%sysfunc(compress(%sysfunc(putn(%sysfunc(date()),yymmdd10.)),-)); %let pathbk=/home2/web; /* backup log files to Web directory */ %let cmd=cp -p job1.log &pathbk&yyyymmdd-job1.log%str(.txt); %put &cmd; %sysexec &cmd; /* generate html formatted tracking */ /* report to Web server */ filename_webout "&pathbk&yyyymmdd-dwtracker.htm"; data null_; file webout; datetime=symget('datetime'); put "<center>"; put '<font face="arial" size=5 color=red><strong>data WAREHOUSE TRACKING REPORT</strong></font>'; put '<table><tr><td><font face= "Arial" size=3 color=blue> <strong>time: ' datetime '</strong></font></td></tr></table>'; put "</center>"; run;

41 Present tracking report by Web server Example (cont.) ods listing close; filename _webout "&_pathbk&yyyymmdd-dwtracker.htm" mod; ods html file=_webout(no_top_matter no_bottom_matter); title '<center>server Status </center>'; proc print data=tmp_svr1 label; var svrname1 status; run; title '<center>log File</center>'; proc print data=tmp_log1 label; var logname1 flen dt error; run; title '<center>disk Volume </center>'; proc print data=diskvol label; var filesystem volume free used path; run; ods html close; ods listing;

42 Present tracking report by Web server The result

43 Read and analyze the log files Execute system commands Present brief tracking report by Present tracking report by Web server Schedule the tracking program

44 Schedule the tracking program Unix system at crontab Windows system windows job scheduler tools

45 Schedule the tracking program Example, Unix system crontab -l #dwtracker.sas * * * /sasv8/sas -autoexec /sasv8/auto.sas -config /sasv8/config.batch -sysin /home2/dwtracker/dwtracker.sas -dmsbatch -log /home2/dwtracker/dwtracker.log

46 A tracking system using SAS

47 Shanghai Baosteel enterprise data warehouse project starting from June 1999; depending on SAS total solutions; Web-based; on IBM S85 machine; >500G data now; using SAS/IntrNet, SAS/Share, Web servers...; fully benefited from the accomplished data marts

48 The tracking system for Baosteel DW tracks server status; ETL log files; large data sets; disk expanding; Web log files; others

49 Shanghai Baosteel DW tracking system provides integrated information; or Web access; feasibility for faraway DW system monitoring; easiness to add new tracking features; high efficiency high productivity high reliability

50 Conclusions

51 A tracking system is not just a tracking system, it is an important part of your data warehouse it is actually an information mart it provides functions of monitoring it is productive it is an efficient way to administrate the system

52 SAS provides strong & flexible functions SAS is a qualified tool to track your data warehouse SAS can be used to analyze what you track as well

53 Thanks

54 Contact information Haidong Tang (Don) Xiao Ji (Samuel)

55 Questions?

Taking advantage of the SAS System on OS/390

Taking advantage of the SAS System on OS/390 Taking advantage of the SAS System on OS/390 Dave Crow Where I m from ---> Final: DUKE 77 UNC 75 The SAS System for OS/390! Getting started with Web Access! What s new in V8 and 8.1 of SAS! What s coming:

More information

Operating Systems: MS DOS, WINDOWS 3.1, 95, 98, WINDOWS 2000, WINDOWS NT & XP, UNIX various server platforms.

Operating Systems: MS DOS, WINDOWS 3.1, 95, 98, WINDOWS 2000, WINDOWS NT & XP, UNIX various server platforms. IBRAHIM ABE GARBA 5993 Brookmont Dr, Columbus, Ohio 43026 Web Site: www.abeitconsulting.com Cell: 614 562 8471 E Mail: iagarba@gmail.com EDUCATION Master of Science in Information Resource Management,

More information

Approaches for Upgrading to SAS 9.2. CHAPTER 1 Overview of Migrating Content to SAS 9.2

Approaches for Upgrading to SAS 9.2. CHAPTER 1 Overview of Migrating Content to SAS 9.2 1 CHAPTER 1 Overview of Migrating Content to SAS 9.2 Approaches for Upgrading to SAS 9.2 1 What is Promotion? 2 Promotion Tools 2 What Can Be Promoted? 2 Special Considerations for Promoting Metadata From

More information

CITY OF MONTEBELLO SYSTEMS MANAGER

CITY OF MONTEBELLO SYSTEMS MANAGER CITY OF MONTEBELLO 109A DEFINITION Under general administrative direction of the City Administrator, provides advanced professional support to departments with very complex computer systems, programs and

More information

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 1 2 1 Selecting the Best Alternative Major Activities in the Analysis Phase Gather information Define system requirements Prototype for feasibility

More information

Notes From SUGI 24. Jack Hamilton. First Health West Sacramento, California. SUGI24OV.DOC 2:45 PM 29 April, 1999 Page 1 of 18

Notes From SUGI 24. Jack Hamilton. First Health West Sacramento, California. SUGI24OV.DOC 2:45 PM 29 April, 1999 Page 1 of 18 Notes From SUGI 24 Jack Hamilton First Health West Sacramento, California SUGI24OV.DOC 2:45 PM 29 April, 1999 Page 1 of 18 No News: Good News? The main news is that there s not much new of general interest

More information

SAS IT Resource Management 3.3

SAS IT Resource Management 3.3 SAS IT Resource Management 3.3 Migration Documentation SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS IT Resource Management 3.3: Migration

More information

Sparta Systems TrackWise Digital Solution

Sparta Systems TrackWise Digital Solution Systems TrackWise Digital Solution 21 CFR Part 11 and Annex 11 Assessment February 2018 Systems TrackWise Digital Solution Introduction The purpose of this document is to outline the roles and responsibilities

More information

Use SAS/AF, SCL and MACRO to Build User-friendly Applications on UNIX

Use SAS/AF, SCL and MACRO to Build User-friendly Applications on UNIX Use SAS/AF, SCL and MACRO to Build User-friendly Applications on UNIX Minghui Yang, Ph.D, Boeing Logistics Market Research O. Introduction In the business application environment, many business analysts

More information

SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc.

SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc. SAS Solutions for the Web: Static and Dynamic Alternatives Matthew Grover, S-Street Consulting, Inc. Abstract This paper provides a detailed analysis of creating static and dynamic web content using the

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

More information

SeUGI 19 - Florence WEB Enabling SAS output. Author : Darryl Lawrence

SeUGI 19 - Florence WEB Enabling SAS output. Author : Darryl Lawrence SeUGI 19 - Florence WEB Enabling SAS output Author : Darryl Lawrence Agenda Company Profile Overview of Change of Address Process Old Change of Address Process Automated HTML Delivery Demo Summary The

More information

SAS Intelligence Platform to 9.2 Migration Guide

SAS Intelligence Platform to 9.2 Migration Guide SAS Intelligence Platform 9.1.3 to 9.2 Migration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Intelligence Platform: 9.1.3 to 9.2 Migration Guide,

More information

SAS. Installation Guide Fifth Edition Intelligence Platform

SAS. Installation Guide Fifth Edition Intelligence Platform SAS Installation Guide Fifth Edition 9.1.3 Intelligence Platform The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS 9.1.3 Intelligence Platform: Installation

More information

Information Technology

Information Technology Information Technology Company Profile 2 About Training Solutions Enterprise Solutions Infocan Infocan was established in 1989 with the mission of providing quality, professional, effective and practical

More information

Principles of Automation

Principles of Automation Principles of Automation The Problem Over 200 reports to be run either daily, weekly, or monthly Reports take between 30 minutes and 4 hours of analyst time to run Changes to existing reports and new reports

More information

Data Warehousing. New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC. Paper

Data Warehousing. New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC. Paper Paper 114-25 New Features in SAS/Warehouse Administrator Ken Wright, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator 2.0 introduces several powerful new features to assist in your data

More information

Copyright 2016 Datalynx Pty Ltd. All rights reserved. Datalynx Enterprise Data Management Solution Catalogue

Copyright 2016 Datalynx Pty Ltd. All rights reserved. Datalynx Enterprise Data Management Solution Catalogue Datalynx Enterprise Data Management Solution Catalogue About Datalynx Vendor of the world s most versatile Enterprise Data Management software Licence our software to clients & partners Partner-based sales

More information

The Research on the Method of Process-Based Knowledge Catalog and Storage and Its Application in Steel Product R&D

The Research on the Method of Process-Based Knowledge Catalog and Storage and Its Application in Steel Product R&D The Research on the Method of Process-Based Knowledge Catalog and Storage and Its Application in Steel Product R&D Xiaodong Gao 1,2 and Zhiping Fan 1 1 School of Business Administration, Northeastern University,

More information

SAS Inventory Optimization 5.1

SAS Inventory Optimization 5.1 SAS Inventory Optimization 5.1 System Administration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Insitute Inc. 2011. SAS Inventory Optimization 5.1: System

More information

Plasmon Diamond Library Manager

Plasmon Diamond Library Manager Plasmon Diamond Library Manager Release Details Product Release Notes Release Name: Diamond Library Manager Release Note Number: Note091 Release Version: 2.09.31 Release Date: 1 st July 2005 Release Type:

More information

What Is SAS? CHAPTER 1 Essential Concepts of Base SAS Software

What Is SAS? CHAPTER 1 Essential Concepts of Base SAS Software 3 CHAPTER 1 Essential Concepts of Base SAS Software What Is SAS? 3 Overview of Base SAS Software 4 Components of the SAS Language 4 SAS Files 4 SAS Data Sets 5 External Files 5 Database Management System

More information

INTRODUCTION THE FILENAME STATEMENT CAPTURING THE PROGRAM CODE

INTRODUCTION THE FILENAME STATEMENT CAPTURING THE PROGRAM CODE Sharing Your Tips and Tricks with Others. Give Your Toolbox a Web Presence John Charles Gober Bureau of the Census, Demographic Surveys Methodology Division INTRODUCTION The purpose of this paper is to

More information

Abstract. Background. Summary of method. Using SAS to determine file and space usage in UNIX. Title: Mike Montgomery [MIS Manager, MTN (South Africa)]

Abstract. Background. Summary of method. Using SAS to determine file and space usage in UNIX. Title: Mike Montgomery [MIS Manager, MTN (South Africa)] Title: Author: Using SAS to determine file and space usage in UNIX Mike Montgomery [MIS Manager, MTN (South Africa)] Abstract The paper will show tools developed to manage a proliferation of SAS files

More information

VMware View Upgrade Guide

VMware View Upgrade Guide View 4.0 View Manager 4.0 View Composer 2.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for

More information

OS/390 SAS/MXG Computer Performance Reports in HTML Format

OS/390 SAS/MXG Computer Performance Reports in HTML Format Paper 153-29 E-Mail OS/390 SAS/MXG Computer Performance Reports in HTML Format ABSTRACT Neal Musitano Jr. Department of Veterans Affairs Information Technology Center Philadelphia, Pennsylvania This paper

More information

Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users

Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users Russell Denslow and Yan Li Sodexho Marriott Services, Orlando, FL ABSTRACT A process is demonstrated in this paper to automatically

More information

MARK CARPENTER, Ph.D.

MARK CARPENTER, Ph.D. MARK CARPENTER, Ph.D. Module 1 : THE DATA STEP (1, 2, 3) Keywords : DATA, INFILE, INPUT, FILENAME, DATALINES Procedures : PRINT Pre-Lecture Preparation: create directory on your local hard drive called

More information

Sleepless in Wherever Resolving Issues in Scheduled Jobs Faron Kincheloe, Baylor University, Waco, TX

Sleepless in Wherever Resolving Issues in Scheduled Jobs Faron Kincheloe, Baylor University, Waco, TX SC06 Sleepless in Wherever Resolving Issues in Scheduled Jobs Faron Kincheloe, Baylor University, Waco, TX ABSTRACT Even with the capability of Windows scheduler or other utilities to schedule your SAS

More information

External Files. Definition CHAPTER 38

External Files. Definition CHAPTER 38 525 CHAPTER 38 External Files Definition 525 Referencing External Files Directly 526 Referencing External Files Indirectly 526 Referencing Many Files Efficiently 527 Referencing External Files with Other

More information

SAS IT Resource Management Forecasting. Setup Specification Document. A SAS White Paper

SAS IT Resource Management Forecasting. Setup Specification Document. A SAS White Paper SAS IT Resource Management Forecasting Setup Specification Document A SAS White Paper Table of Contents Introduction to SAS IT Resource Management Forecasting... 1 Getting Started with the SAS Enterprise

More information

RFP #19-01 Vendor Questions. RFP # of 2 Copier/MFD Hardware and Service and RFP # of 2 Printer/MFP Service & Supplies

RFP #19-01 Vendor Questions. RFP # of 2 Copier/MFD Hardware and Service and RFP # of 2 Printer/MFP Service & Supplies RFP #19-01 Vendor Questions REQUEST FOR PROPOSAL: RFP #19-01 1 of 2 Copier/MFD Hardware and Service and RFP #19-01 2 of 2 Printer/MFP Service & Supplies Question #1: I spoke with you just prior to the

More information

Tender Schedule No. Figure: Active-Active Cluster with RAC

Tender Schedule No. Figure: Active-Active Cluster with RAC Tender Schedule No SIBL-IT-2014-01- ORACLE_RAC_ADG Social Islami Bank Ltd is running Core Islami Banking Solution since 2009. Total no of Branches/Users is increasing per year. Now, Database Server Load

More information

Installing SQL Server Developer Last updated 8/28/2010

Installing SQL Server Developer Last updated 8/28/2010 Installing SQL Server Developer Last updated 8/28/2010 1. Run Setup.Exe to start the setup of SQL Server 2008 Developer 2. On some OS installations (i.e. Windows 7) you will be prompted a reminder to install

More information

PDF Multi-Level Bookmarks via SAS

PDF Multi-Level Bookmarks via SAS Paper TS04 PDF Multi-Level Bookmarks via SAS Steve Griffiths, GlaxoSmithKline, Stockley Park, UK ABSTRACT Within the GlaxoSmithKline Oncology team we recently experienced an issue within our patient profile

More information

Vendor: Microsoft. Exam Code: Exam Name: Implementing a Data Warehouse with Microsoft SQL Server Version: Demo

Vendor: Microsoft. Exam Code: Exam Name: Implementing a Data Warehouse with Microsoft SQL Server Version: Demo Vendor: Microsoft Exam Code: 70-463 Exam Name: Implementing a Data Warehouse with Microsoft SQL Server 2012 Version: Demo DEMO QUESTION 1 You are developing a SQL Server Integration Services (SSIS) package

More information

HPE Storage Optimizer Software Version: 5.4. Best Practices Guide

HPE Storage Optimizer Software Version: 5.4. Best Practices Guide HPE Storage Optimizer Software Version: 5.4 Best Practices Guide Document Release Date: November 2016 Software Release Date: November 2016 Legal Notices Warranty The only warranties for Hewlett Packard

More information

SAS 9.3 Intelligence Platform

SAS 9.3 Intelligence Platform SAS 9.3 Intelligence Platform Migration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. SAS 9.3 Intelligence Platform: Migration Guide.

More information

7.16 INFORMATION TECHNOLOGY SECURITY

7.16 INFORMATION TECHNOLOGY SECURITY 7.16 INFORMATION TECHNOLOGY SECURITY The superintendent shall be responsible for ensuring the district has the necessary components in place to meet the district s needs and the state s requirements for

More information

Sparta Systems Stratas Solution

Sparta Systems Stratas Solution Systems Solution 21 CFR Part 11 and Annex 11 Assessment October 2017 Systems Solution Introduction The purpose of this document is to outline the roles and responsibilities for compliance with the FDA

More information

SAS Environment Manager A SAS Viya Administrator s Swiss Army Knife

SAS Environment Manager A SAS Viya Administrator s Swiss Army Knife Paper SAS2260-2018 SAS Environment Manager A SAS Viya Administrator s Swiss Army Knife Michelle Ryals, Trevor Nightingale, SAS Institute Inc. ABSTRACT The latest version of SAS Viya brings with it a wealth

More information

Integrated Stack for SUSE Linux Enterprise (ISSLE)

Integrated Stack for SUSE Linux Enterprise (ISSLE) IBM United States Announcement 207-070, dated April 10, 2007 Integrated Stack for SUSE Linux Enterprise (ISSLE) Key prerequisites...2 Description...2 Offering Information...3 Publications... 3 Technical

More information

Centralized Monitoring Console. User Guide

Centralized Monitoring Console. User Guide User Guide Contents 1. Overview... 2 Considerations... 2 Licensing... 2 Documentation... 2 2. Configuring the... 3 3. Using the Centralized Monitoring console... 4 Opening the console... 4 Reports menu...

More information

Paper Best Practices for Managing and Monitoring SAS Data Management Solutions. Gregory S. Nelson

Paper Best Practices for Managing and Monitoring SAS Data Management Solutions. Gregory S. Nelson Paper 113-2012 Best Practices for Managing and Monitoring SAS Data Management Solutions Gregory S. Nelson President and CEO ThotWave Technologies, Chapel Hill, North Carolina Abstract SAS and DataFlux

More information

QFCP BLT

QFCP BLT What is the UL QFCP? FCIA Webinar 10-17-17 Presenters: Pamela Blanchette Operations Manager UL QFCP Matt Schumann - Technical Engineering Leader - BLT 2011 Underwriters Laboratories Inc. Agenda What is

More information

SAS Intelligence Platform to 9.2 Migration Guide

SAS Intelligence Platform to 9.2 Migration Guide SAS Intelligence Platform 9.1.3 to 9.2 Migration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Intelligence Platform: 9.1.3 to 9.2 Migration Guide.

More information

SAS Online Training: Course contents: Agenda:

SAS Online Training: Course contents: Agenda: SAS Online Training: Course contents: Agenda: (1) Base SAS (6) Clinical SAS Online Training with Real time Projects (2) Advance SAS (7) Financial SAS Training Real time Projects (3) SQL (8) CV preparation

More information

Installing Acronis Backup Advanced Edition

Installing Acronis Backup Advanced Edition 2015 Installing Acronis Backup Advanced Edition BEST PRACTISE Table of Contents Acronis Backup Advanced components... 4 Management Server... 4 Acronis Storage Node... 4 Agents / Appliance... 4 Bootable

More information

Welcome to the. Migrating SQL Server Databases to Azure

Welcome to the. Migrating SQL Server Databases to Azure Welcome to the 1 Migrating SQL Server Databases to Azure Migrating SQL Server Databases to Azure Agenda Overview of SQL Server in Microsoft Azure Getting started with SQL Server in an Azure virtual machine

More information

Internet/Intranet, the Web & SAS

Internet/Intranet, the Web & SAS Dynamic Behavior from Static Web Applications Ted Durie, SAS, Overland Park, KS ABSTRACT Many Web applications, because of the infinite query combinations possible, require dynamic Web solutions. This

More information

Unicode and the Implications of Its Implementation

Unicode and the Implications of Its Implementation STORAGE SOLUTIONS WHITE PAPER Unicode and the Implications of Its Implementation Contents 1. Introduction...1 2. What is Unicode?...1 3. Converting to Unicode...1 3.1 Create a disaster recovery image of

More information

Lotus Learning Management System R1

Lotus Learning Management System R1 Lotus Learning Management System R1 Version 1.0.4 March 2004 Administrator's Guide G210-1785-00 Contents Chapter 1 Introduction to the Learning Management System and Administration...1 Understanding the

More information

Alan Davies. Scorpio Software Services Pty Ltd

Alan Davies. Scorpio Software Services Pty Ltd Alan Davies Scorpio Software Services Pty Ltd The migration of SAS/IntrNet TM V6-V8 TM V6 This presentation covers the migration of SAS/IntrNet TM V6, running on an NT server, to SAS/IntrNet TM V8 under

More information

IBM SmartCloud Notes Security

IBM SmartCloud Notes Security IBM Software White Paper September 2014 IBM SmartCloud Notes Security 2 IBM SmartCloud Notes Security Contents 3 Introduction 3 Service Access 4 People, Processes, and Compliance 5 Service Security IBM

More information

Oracle #1 RDBMS Vendor

Oracle #1 RDBMS Vendor Oracle #1 RDBMS Vendor IBM 20.7% Microsoft 18.1% Other 12.6% Oracle 48.6% Source: Gartner DataQuest July 2008, based on Total Software Revenue Oracle 2 Continuous Innovation Oracle 11g Exadata Storage

More information

PharmaSUG Paper PO12

PharmaSUG Paper PO12 PharmaSUG 2015 - Paper PO12 ABSTRACT Utilizing SAS for Cross-Report Verification in a Clinical Trials Setting Daniel Szydlo, Fred Hutchinson Cancer Research Center, Seattle, WA Iraj Mohebalian, Fred Hutchinson

More information

vfire Prerequisites Guide Version 1.1

vfire Prerequisites Guide Version 1.1 vfire 9.4.0 Prerequisites Guide Table of Contents Version Details Copyright About this Guide Intended Audience Standards and Conventions iv iv v v v Introduction 6 Web Server Deployment 7 Hardware Requirements

More information

TIPS AND TRICKS: IMPROVE EFFICIENCY TO YOUR SAS PROGRAMMING

TIPS AND TRICKS: IMPROVE EFFICIENCY TO YOUR SAS PROGRAMMING TIPS AND TRICKS: IMPROVE EFFICIENCY TO YOUR SAS PROGRAMMING Guillaume Colley, Lead Data Analyst, BCCFE Page 1 Contents Customized SAS Session Run system options as SAS starts Labels management Shortcut

More information

Risk Electrabel : exploiting SAP BW data for pricing and exposure reporting in Energy Trading

Risk Electrabel : exploiting SAP BW data for pricing and exposure reporting in Energy Trading Risk Management @ Electrabel : exploiting SAP BW data for pricing and exposure reporting in Energy Trading!Walter Waterschoot,!Risk System Expert, Electrabel!Paul Bruynseels,!Cross Application Project

More information

The GANNO Procedure. Overview CHAPTER 12

The GANNO Procedure. Overview CHAPTER 12 503 CHAPTER 12 The GANNO Procedure Overview 503 Procedure Syntax 504 PROC GANNO Statement 504 Examples 507 Example 1: Scaling Data-Dependent Output 507 Example 2: Storing Annotate Graphics 509 Example

More information

6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI.

6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI. SUMMARY OF EXPERIENCE 6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI. 1.6 Years of experience in Self-Service BI using

More information

The Evolution of SAP HANA and 10 Considerations for Projects with SAP HANA

The Evolution of SAP HANA and 10 Considerations for Projects with SAP HANA The Evolution of SAP HANA and 10 Considerations for Projects with SAP HANA Alison Bessho Director, HANA Solutions June, 2014 Copyright 2012 NTT DATA, Inc. Agenda NTT Data at a Glance The Evolution of SAP

More information

SAS Fair Banking 8.1 Installation Instructions

SAS Fair Banking 8.1 Installation Instructions SAS Fair Banking 8.1 Installation Instructions Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., SAS Fair Banking 8.1 Installation Instructions, Cary,

More information

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for UNIX Environments. Last Updated: May 23, 2012

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for UNIX Environments. Last Updated: May 23, 2012 SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for UNIX Environments Last Updated: May 23, 2012 Copyright Notice The correct bibliographic citation for this manual is as follows:

More information

Fig 1.2: Relationship between DW, ODS and OLTP Systems

Fig 1.2: Relationship between DW, ODS and OLTP Systems 1.4 DATA WAREHOUSES Data warehousing is a process for assembling and managing data from various sources for the purpose of gaining a single detailed view of an enterprise. Although there are several definitions

More information

Data integration made easy with Talend Open Studio for Data Integration. Dimitar Zahariev BI / DI Consultant

Data integration made easy with Talend Open Studio for Data Integration. Dimitar Zahariev BI / DI Consultant Data integration made easy with Talend Open Studio for Data Integration Dimitar Zahariev BI / DI Consultant dimitar@zahariev.pro @shekeriev Disclaimer Please keep in mind that: 2 I m not related in any

More information

Smart Access Control System Software. User Manual. Version 1.0

Smart Access Control System Software. User Manual. Version 1.0 Smart Access Control System Software User Manual Version 1.0 Copyright MaCaPS International Ltd. 2002 This manual was produced by MaCaPS International Ltd. MaCaPS International Ltd. http://www.macaps.com.hk

More information

Sun Solaris support now available from IBM for select IBM System x and BladeCenter servers

Sun Solaris support now available from IBM for select IBM System x and BladeCenter servers IBM United States Announcement 208-031, dated February 19, 2008 Sun Solaris support now available from IBM for select IBM System x and BladeCenter servers Description...3 Reference information... 3 Offering

More information

under attack Listing Deleted Files A SECURITY BREACH CAN INSPIRE

under attack Listing Deleted Files A SECURITY BREACH CAN INSPIRE BORIS LOZA A SECURITY BREACH CAN INSPIRE panic in administrators. This quick application note explains some techniques to be used to recover the names and contents of files during an attack or shortly

More information

Oracle Exadata: The World s Fastest Database Machine

Oracle Exadata: The World s Fastest Database Machine 10 th of November Sheraton Hotel, Sofia Oracle Exadata: The World s Fastest Database Machine Daniela Milanova Oracle Sales Consultant Oracle Exadata Database Machine One architecture for Data Warehousing

More information

Last updated: July 7th, 2008 Microsoft Security Software Advisor Fee Initiative Guide ("SSA Program Guide")

Last updated: July 7th, 2008 Microsoft Security Software Advisor Fee Initiative Guide (SSA Program Guide) Last updated: July 7th, 2008 Microsoft Security Software Advisor Fee Initiative Guide ("SSA Program Guide") The Microsoft Security Software Advisor Fee Initiative is a benefit of the Microsoft Partner

More information

Data Mining & Data Warehouse

Data Mining & Data Warehouse Data Mining & Data Warehouse Asso. Profe. Dr. Raed Ibraheem Hamed University of Human Development, College of Science and Technology Department of Information Technology 2016 2017 (1) Points to Cover Problem:

More information

our values Specialised maintenance and project delivery services to the mining, heavy industry, manufacturing and utilities sectors.

our values Specialised maintenance and project delivery services to the mining, heavy industry, manufacturing and utilities sectors. Specialised maintenance and project delivery services to the mining, heavy industry, manufacturing and utilities sectors. our values ZERO HARM INTEGRITY CONTINUOUS IMPROVEMENT INDIVIDUAL ACCOUNTABILITY

More information

SAS System Powers Web Measurement Solution at U S WEST

SAS System Powers Web Measurement Solution at U S WEST SAS System Powers Web Measurement Solution at U S WEST Bob Romero, U S WEST Communications, Technical Expert - SAS and Data Analysis Dale Hamilton, U S WEST Communications, Capacity Provisioning Process

More information

Data Warehouse. T rusted Application. P roject. Trusted System. T echnology. System. Trusted Network. Physical Security

Data Warehouse. T rusted Application. P roject. Trusted System. T echnology. System. Trusted Network. Physical Security T rusted Application Trusted System Trusted Network Physical Security System T echnology Data Warehouse P roject Filetransfer Access right just on the data transfer directories Mailbox L oadprocess Data

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

BrainPad Accelerates Multiple Web Analytics Systems with Fusion iomemory Solutions

BrainPad Accelerates Multiple Web Analytics Systems with Fusion iomemory Solutions CASE STUDY BrainPad Accelerates Multiple Web Analytics Systems with Fusion iomemory Solutions Web analytics provider dramatically cuts pay-per-click (PPC) and product recommendation analysis times while

More information

Data Virtualization at. Nationwide. Nationwide. DAMA October 13, 2011

Data Virtualization at. Nationwide. Nationwide. DAMA October 13, 2011 Data Virtualization at Nationwide Nationwide DAMA October 13, 2011 Agenda Background What is Virtual Data Isn t all data real? Virtual Data and the Architectural Fit Example Use Cases Must Do s Before

More information

Certkiller.A QA

Certkiller.A QA Certkiller.A00-260.70.QA Number: A00-260 Passing Score: 800 Time Limit: 120 min File Version: 3.3 It is evident that study guide material is a victorious and is on the top in the exam tools market and

More information

Give m Their Way They ll Love it! Sarita Prasad Bedge, Family Care Inc., Portland, Oregon

Give m Their Way They ll Love it! Sarita Prasad Bedge, Family Care Inc., Portland, Oregon Give m Their Way They ll Love it! Sarita Prasad Bedge, Family Care Inc., Portland, Oregon ABSTRACT As many of us know, many users prefer their SAS data in MS Excel spreadsheet. And many of us also may

More information

Visualizing Results when GaussView and Gaussian are Installed on Different Machines

Visualizing Results when GaussView and Gaussian are Installed on Different Machines Visualizing Results when GaussView and Gaussian are Installed on Different Machines Joseph W. Ochterski, Ph.D. help@gaussian.com copyright c 2000, Gaussian, Inc. June 21, 2000 Abstract The purpose of this

More information

The Application Layer: & SMTP

The Application Layer:  & SMTP The Application Layer: email & SMTP Smith College, CSC 249 Feb 1, 2018 4-1 Chapter 2: Application layer q 2.1 Principles of network applications q 2.2 Web and HTTP q 2.3 FTP q 2.4 Electronic Mail v SMTP,

More information

Managed Security Services. I.T. Security Specialists. Managed Security Services 1

Managed Security Services. I.T. Security Specialists. Managed Security Services 1 Managed Security Services I.T. Security Specialists Managed Security Services 1 Caretower s Service Elements 24x7 Management The Managed Security Services are delivered through our Security Operations

More information

<Insert Picture Here> MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure

<Insert Picture Here> MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure MySQL Web Reference Architectures Building Massively Scalable Web Infrastructure Mario Beck (mario.beck@oracle.com) Principal Sales Consultant MySQL Session Agenda Requirements for

More information

SAS. IT Resource Management 2.7: Glossary

SAS. IT Resource Management 2.7: Glossary SAS IT Resource Management 2.7: Glossary The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS IT Resource Management 2.7: Glossary. Cary, NC: SAS Institute Inc.

More information

vfire 9.9 Prerequisites Guide Version 1.1

vfire 9.9 Prerequisites Guide Version 1.1 vfire 9.9 Prerequisites Guide Table of Contents Version Details 4 Copyright 4 About this Guide 5 Intended Audience 5 Standards and Conventions 5 Introduction 6 Web Server Requirements 7 Hardware Requirements

More information

HP Automation Insight

HP Automation Insight HP Automation Insight For the Red Hat Enterprise Linux and SUSE Enterprise Linux operating systems AI SA Compliance User Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal Notices

More information

WWW: the http protocol

WWW: the http protocol Internet apps: their protocols and transport protocols Application e-mail remote terminal access Web file transfer streaming multimedia remote file Internet telephony Application layer protocol smtp [RFC

More information

SMART Guidance for Notes Migrations

SMART Guidance for Notes Migrations SMART Guidance for Notes Migrations Binary Tree Overview The Developer of SMART Migration Methodology SUPERIOR MESSAGING ANALYSIS RATIONALIZATION TRANSFORMATION Binary Tree Overview The Developer of SMART

More information

A Macro that can Search and Replace String in your SAS Programs

A Macro that can Search and Replace String in your SAS Programs ABSTRACT MWSUG 2016 - Paper BB27 A Macro that can Search and Replace String in your SAS Programs Ting Sa, Cincinnati Children s Hospital Medical Center, Cincinnati, OH In this paper, a SAS macro is introduced

More information

Installation and Maintenance Instructions for SAS 9.2 Installation Kit for Basic DVD Installations on z/os

Installation and Maintenance Instructions for SAS 9.2 Installation Kit for Basic DVD Installations on z/os Installation and Maintenance Instructions for SAS 9.2 Installation Kit for Basic DVD Installations on z/os Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute

More information

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for Windows Environments. Last Updated: May 23, 2012

SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for Windows Environments. Last Updated: May 23, 2012 SAS 9.2 Enterprise Business Intelligence Audit and Performance Measurement for Windows Environments Last Updated: May 23, 2012 Copyright Notice The correct bibliographic citation for this manual is as

More information

The Six Principles of BW Data Validation

The Six Principles of BW Data Validation The Problem The Six Principles of BW Data Validation Users do not trust the data in your BW system. The Cause By their nature, data warehouses store large volumes of data. For analytical purposes, the

More information

Upgrading R/Evolution Storage Systems

Upgrading R/Evolution Storage Systems Upgrading R/Evolution Storage Systems This guide describes considerations and procedures for upgrading the following R/Evolution storage systems: 2000 Series to 2002 Series storage systems 2000 Series

More information

itexamdump 최고이자최신인 IT 인증시험덤프 일년무료업데이트서비스제공

itexamdump 최고이자최신인 IT 인증시험덤프  일년무료업데이트서비스제공 itexamdump 최고이자최신인 IT 인증시험덤프 http://www.itexamdump.com 일년무료업데이트서비스제공 Exam : CISA Title : Certified Information Systems Auditor Vendor : ISACA Version : DEMO Get Latest & Valid CISA Exam's Question and

More information

Qual I.T. Services Pty Ltd

Qual I.T. Services Pty Ltd SAS/CONNECT Qual I.T. Services Pty Ltd proc qevent log= Security computer= zolmall out=work.loginfo; proc print data=work.loginfo; var eventid timegen account; where eventid in (528,538);

More information

Some of the new features in the upcoming

Some of the new features in the upcoming 02/08/06 System Some of the new features in the upcoming 7.5.11 Expanded report numbers Each CounterPoint report and journal is identified by a 4-digit report number, (from 0001 to 9999) to help you track

More information

1/12/2018. APPA Institute Dallas, TX Feb DATA INTEGRATION PURPOSE OF TODAY S PRESENTATION

1/12/2018. APPA Institute Dallas, TX Feb DATA INTEGRATION PURPOSE OF TODAY S PRESENTATION DATA INTEGRATION APPA Institute for Facilities Management January 23, 2018 Portland, OR PURPOSE OF TODAY S PRESENTATION To provide a broad understanding of: Data as a utility How various units of Facilities

More information

Skybot Scheduler Release Notes

Skybot Scheduler Release Notes Skybot Scheduler Release Notes Following is a list of the new features and enhancements included in each release of Skybot Scheduler. Skybot Scheduler 3.5 Skybot Scheduler 3.5 (May 19, 2014 update) Informatica

More information

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions:

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions: This course prepares students to take the 101 exam of the LPI level 1 certification. The Linux Professional Institute (LPI) is the go to certification body for vendor independent Linux certifications.

More information