13.07.2015 Views

SAS/ACCESS 9.2 for Relational Databases: Reference, Fourth Edition

SAS/ACCESS 9.2 for Relational Databases: Reference, Fourth Edition

SAS/ACCESS 9.2 for Relational Databases: Reference, Fourth Edition

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

848 Creating <strong>SAS</strong> Data Sets from DBMS Data 4 Chapter 29the Sample Data” on page 875 <strong>for</strong> in<strong>for</strong>mation about the tables that are used in thesample code.Note: Be<strong>for</strong>e you rerun an example that updates DBMS data, resubmit theACCDATA.sas program to re-create the DBMS tables. 4Creating <strong>SAS</strong> Data Sets from DBMS DataOverviewAfter you associate a <strong>SAS</strong>/<strong>ACCESS</strong> libref with your DBMS data, you can use thelibref just as you would use any <strong>SAS</strong> libref. The following examples illustrate basic usesof the DATA step with librefs that reference DBMS data.Using the PRINT Procedure with DBMS DataIn the following example, the interface to DB2 creates the libref MyDbLib andassociates the libref with tables and views that reside on DB2. The DATA= optionspecifies a libref that references DB2 data. The PRINT procedure prints a New Jerseystaff phone list from the DB2 table Staff. In<strong>for</strong>mation <strong>for</strong> staff from states other thanNew Jersey is not printed. The DB2 table Staff is not modified.libname mydblib db2 ssid=db2;proc print data=mydblib.staff(keep=lname fname state hphone);where state = ’NJ’;title ’New Jersey Phone List’;run;Output 29.1Using the PRINT Procedure with DBMS DataNew Jersey Phone List 1Obs LNAME FNAME STATE HPHONE1 ALVAREZ CARLOS NJ 201/732-87872 BAREFOOT JOSEPH NJ 201/812-56653 DACKO JASON NJ 201/732-23234 FUJIHARA KYOKO NJ 201/812-09025 HENDERSON WILLIAM NJ 201/812-47896 JOHNSON JACKSON NJ 201/732-36787 LAWRENCE KATHY NJ 201/812-33378 MURPHEY JOHN NJ 201/812-44149 NEWKIRK SANDRA NJ 201/812-333110 NEWKIRK WILLIAM NJ 201/732-661111 PETERS RANDALL NJ 201/812-247812 RHODES JEREMY NJ 201/812-183713 ROUSE JEREMY NJ 201/732-983414 VICK THERESA NJ 201/812-242415 YANCEY ROBIN NJ 201/812-1874

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!