La i Phong Tran April 08

download La i Phong Tran April 08

of 44

Transcript of La i Phong Tran April 08

  • 7/31/2019 La i Phong Tran April 08

    1/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Laying a strong foundationfor SAS 9.2 platform

    Lai Phong TranSenior Solution Architect3rdApril 2008

  • 7/31/2019 La i Phong Tran April 08

    2/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph

    New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    3/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph

    New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    4/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 One ReleaseIncremental Software Availability

    MVA-based SAS Products

    SAS/BASE, SAS/STAT, SAS/Graph, etc.

    No products reliant on metadata

    NOT massshipped

  • 7/31/2019 La i Phong Tran April 08

    5/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 One ReleaseIncremental Software Availability

    Enterprise Intelligence Platform

    Business Intelligence

    Data Integration

    Come to SASForum Australiato find out more

  • 7/31/2019 La i Phong Tran April 08

    6/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 One ReleaseIncremental Software Availability

    Metadata Driven Analytics Clients

    Enterprise Miner

    Text Miner

    Model Manager

    Business & Industry Solutions

    Financial

    Retail

    Health and Life Sciences

    Other .

  • 7/31/2019 La i Phong Tran April 08

    7/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 Overview

    SAS 8.2 SAS 9.1.3 SAS 9.2

    SAS 9.2

    ?

  • 7/31/2019 La i Phong Tran April 08

    8/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 Overview

    SAS 9.2 is a major functionality release

    New functionality requested by existing customers

  • 7/31/2019 La i Phong Tran April 08

    9/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 Overview

  • 7/31/2019 La i Phong Tran April 08

    10/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS Key Changes & Enhancements for

    SAS/BaseODS

    SAS/Graph

    New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    11/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Highlights across MVA-based SAS

    SAS 9.2 (MVA-based SAS) delivers

    Support for latest platforms

    More manageability

    Greater performance

    Heightened security

    Simpler automatic graphics

  • 7/31/2019 La i Phong Tran April 08

    12/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 (MVA-based SAS) delivers

    Support for latest platforms More manageability

    Greater performance

    Heightened security

    Simpler automatic graphics

    Support for x86-64 architecture and O/S(Windows, Solaris, Linux)

    Increase minimum baselines (i.e. O/S versions)

    NEW

  • 7/31/2019 La i Phong Tran April 08

    13/44

  • 7/31/2019 La i Phong Tran April 08

    14/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 (MVA-based SAS) delivers Support for latest platforms

    More manageability

    Greater performance Heightened security

    Simpler automatic graphics

    Enhanced optimised paths in Implicit Passthrough

    Further avoid unnecessary sorting

    Choice of continuing/discontinuing execution on

    independent tasks

  • 7/31/2019 La i Phong Tran April 08

    15/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 (MVA-based SAS) delivers Support for latest platforms

    More manageability

    Greater performance

    Heightened security Simpler automatic graphics

    AES encryption algorithm (data across the wire)

    SAS/SECURE algorithm used for dataencryption (data at rest) RC4

    Support SFTP (data & commands encrypted)

    PWENCODE support sas003 (356-bit keyencryption - same new AES)

    Experimental

  • 7/31/2019 La i Phong Tran April 08

    16/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 (MVA-based SAS) delivers Support for latest platforms

    More manageability

    Greater performance

    Heightened security

    Simpler automatic graphics

    Graph production best practice

    SAS analytical procedures now automatically producerelevant graphs by simply setting:

    ods graphics on;

    Users can customise the automatic graphs from theprocedures by editing the pre-defined templates.

    Alternatively, users can customise ODS graphics outputusing the ODS Graphics Editor

  • 7/31/2019 La i Phong Tran April 08

    17/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SomeSamples

  • 7/31/2019 La i Phong Tran April 08

    18/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    The Graphics Template Language (GTL)

    proc template;

    define statgraph graph.myplot;begingraph;

    entrytitle "Model Weight by Height";

    layout overlay;

    scatterplot y=weight x=height;

    seriesplot y=predict x=height;

    endlayout;

    endgraph;

    end;

    run;

    proc sgrender data=sashelp.classfittemplate=graph.myplot;run;

  • 7/31/2019 La i Phong Tran April 08

    19/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    ODS Graphics Editor

  • 7/31/2019 La i Phong Tran April 08

    20/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Refreshment

  • 7/31/2019 La i Phong Tran April 08

    21/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    22/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Base New support for ISO 8601 Time Notations

    eg. 1997-07-16T19:20:30+01:00

    Formats (25+)

    Informats (15+)

    Functions and call routines (45+) System options(40+)

    Universal Printing and new TrueType fonts

    SAS/Base

  • 7/31/2019 La i Phong Tran April 08

    23/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Hash Object

    Support for duplicate key values

    Find() frequency statistic

    Data set name lists

    SET A1-A10;

    SET SALES.JAN:;

    User-Written Functions

    C, C++ register with Proc PROTO

    SAS language Proc FCMP

    WHERE expressions

    the LIKE operator accepts % and _ in the values

    SAS/Base: Data Step

    SAS/Base

  • 7/31/2019 La i Phong Tran April 08

    24/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    25/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    ODS - Better integration

    ODS

  • 7/31/2019 La i Phong Tran April 08

    26/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    ODS - Better integration

    ODS

  • 7/31/2019 La i Phong Tran April 08

    27/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    ODS Customisable Contents

    ODS

  • 7/31/2019 La i Phong Tran April 08

    28/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    ODS Customisable Appearance

    ODS

  • 7/31/2019 La i Phong Tran April 08

    29/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    30/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Graph: New Procedure SGPLOT

    SAS/Graph

  • 7/31/2019 La i Phong Tran April 08

    31/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Graph: New Procedure SGSCATTER

    SAS/Graph

  • 7/31/2019 La i Phong Tran April 08

    32/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Graph

    SAS/Graph: New Procedure SGSCATTER

  • 7/31/2019 La i Phong Tran April 08

    33/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Graph

    SAS/Graph: New Procedure SGPANEL

  • 7/31/2019 La i Phong Tran April 08

    34/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Network Diagrams

    Where can you use these?

    SAS/Graph

  • 7/31/2019 La i Phong Tran April 08

    35/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Graph: SVG

    SAS/Graph

  • 7/31/2019 La i Phong Tran April 08

    36/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS/Graph: SVG

    SAS/Graph

  • 7/31/2019 La i Phong Tran April 08

    37/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    38/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Stat Studio

  • 7/31/2019 La i Phong Tran April 08

    39/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Simulation Studio

  • 7/31/2019 La i Phong Tran April 08

    40/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    41/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    SAS 9.2 Key Highlights

    http://support.sas.com/software/index.html

    Resources

  • 7/31/2019 La i Phong Tran April 08

    42/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Agenda SAS 9.2 Overview

    Highlights across MVA-based SAS

    Key Changes & Enhancements forSAS/BaseODS

    SAS/Graph New products

    Resources

    Summary

  • 7/31/2019 La i Phong Tran April 08

    43/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only

    Summary

    SAS 9.2 (MVA-based SAS) delivers

    Support for latest platforms

    More manageability Greater performance

    Heightened security

    Simpler automatic graphics

  • 7/31/2019 La i Phong Tran April 08

    44/44

    Copyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use onlyCopyright 2007, SAS Institute Inc. All rights reserved. Company confidential - for internal use only